/* ========================================
   Course Detail Page Styles
   ======================================== */

/* ========================================
   Hero Section
   ======================================== */
.course-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 50%, #f0f7ff 100%);
    overflow: hidden;
    min-height: 600px;
}

/* Background Pattern - SVG Lines */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-lines {
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Gradient Overlay on Left */
.hero-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, rgba(21, 93, 252, 0.08) 0%, transparent 100%);
    z-index: 1;
}

/* Hero Container */
.course-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ========================================
   Hero Content (Left Side)
   ======================================== */
.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(21, 93, 252, 0.1);
    border: 1px solid rgba(21, 93, 252, 0.2);
    border-radius: 50px;
    color: #155dfc;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

/* Main Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title span {
    color: #155dfc;
    display: block;
}

/* Subtitle */
.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-subtitle .highlight {
    color: #155dfc;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(21, 93, 252, 0.3);
    text-underline-offset: 3px;
}

/* Stats Cards */
.hero-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

/* Features List */
.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.hero-features li:hover {
    transform: translateX(5px);
}

.hero-features li svg {
    flex-shrink: 0;
}

/* Hired By Section */
.hired-by {
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hired-by-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hired-by-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.hired-by-logos img {
    height: 24px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    vertical-align: middle;
}

.hired-by-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================================
   Hero Form (Right Side)
   ======================================== */
.hero-form-wrapper {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Floating Icon */
.form-floating-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(21, 93, 252, 0.2);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Form Card */
.hero-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    padding: 28px 30px;
    color: #fff;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.form-header p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Form Body */
.hero-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    color: #333;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #155dfc;
}

/* Phone Group */
.phone-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.phone-group input {
    border-bottom: none !important;
    flex: 1;
    padding-left: 10px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 0 16px 20px;
    color: #333;
    font-size: 15px;
    border-right: 1px solid #e5e5e5;
    padding-right: 10px;
}

.country-code .flag {
    font-size: 18px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #155dfc;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.checkbox-group label a {
    color: #155dfc;
    text-decoration: underline;
}

.checkbox-group label a:hover {
    text-decoration: none;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 93, 252, 0.35);
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(5px);
}

/* WhatsApp Link */
.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 30px;
    color: #25D366;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.05);
}

.whatsapp-link svg {
    flex-shrink: 0;
}

/* ========================================
   Placement Record Section
   ======================================== */
.placement-record {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.placement-record-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.placement-header {
    text-align: center;
    margin-bottom: 50px;
}

.placement-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.placement-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.placement-title span {
    color: #155dfc;
}

.placement-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Bar */
.placement-stats-bar {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.placement-stat {
    flex: 1;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.placement-stat:hover {
    transform: translateY(-5px);
}

.stat-purple {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.stat-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.placement-stat .stat-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.placement-stat .stat-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Dotted Pattern */
.placement-dots-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

/* ========================================
   Designed for Employment Section
   ======================================== */
.employment-section {
    padding: 80px 0 100px;
    background: #fff;
}

.employment-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.employment-header {
    text-align: center;
    margin-bottom: 50px;
}

.employment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.employment-badge svg {
    color: #f59e0b;
}

.employment-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.employment-title span {
    color: #155dfc;
    text-decoration: underline;
    text-decoration-color: #155dfc;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.employment-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* P.L.A.C.E. Cards */
.place-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.place-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.place-card:hover {
    border-color: #155dfc;
    box-shadow: 0 8px 30px rgba(21, 93, 252, 0.1);
    transform: translateY(-5px);
}

.place-letter {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #155dfc;
    margin-bottom: 8px;
}

.place-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.place-desc {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Table Header */
.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    background: #f8fafc;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-header .comparison-col {
    padding: 20px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a2e;
}

.comparison-header .col-iim {
    color: #155dfc;
    border-left: 1px solid #e5e5e5;
}

.comparison-header .col-others {
    color: #888;
    border-left: 1px solid #e5e5e5;
}

/* Table Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.comparison-row:last-of-type {
    border-bottom: none;
}

.comparison-row:hover {
    background: #fafbfc;
}

.comparison-col {
    padding: 24px 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.comparison-col.col-iim {
    border-left: 1px solid #f0f0f0;
    color: #1a1a2e;
}

.comparison-col.col-others {
    border-left: 1px solid #f0f0f0;
    color: #666;
}

.col-feature {
    font-weight: 500;
    color: #1a1a2e;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(21, 93, 252, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon,
.cross-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Banner */
.comparison-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    border-radius: 0 0 16px 16px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cta-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #155dfc;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* ========================================
   Curriculum Section
   ======================================== */
.curriculum-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.curriculum-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.curriculum-header {
    text-align: center;
    margin-bottom: 50px;
}

.curriculum-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.curriculum-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.curriculum-title span {
    color: #155dfc;
    text-decoration: underline;
    text-decoration-color: #155dfc;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.curriculum-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.curriculum-subtitle strong {
    color: #1a1a2e;
}

/* Action Buttons */
.curriculum-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-expand,
.btn-collapse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-expand {
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    color: #fff;
    border: none;
}

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

.btn-collapse {
    background: #fff;
    color: #1a1a2e;
    border: 1px solid #e5e5e5;
}

.btn-collapse:hover {
    border-color: #155dfc;
    color: #155dfc;
}

/* Main Content Layout */
.curriculum-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Modules Section (Left) */
.curriculum-modules {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.modules-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 2px solid #155dfc;
    margin-bottom: 24px;
}

.modules-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modules-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.modules-count {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
}

.essential-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fef3c7;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
}

/* Accordion Modules */
.modules-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-item:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 15px rgba(21, 93, 252, 0.08);
}

.module-item.active {
    border-color: #155dfc;
    box-shadow: 0 4px 20px rgba(21, 93, 252, 0.12);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.module-header:hover {
    background: #f8fafc;
}

.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-info {
    flex: 1;
}

.module-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.module-meta {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.module-toggle {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.module-toggle:hover {
    background: #155dfc;
    color: #fff;
}

.module-item.active .module-toggle {
    background: #155dfc;
    color: #fff;
}

.module-item.active .module-toggle svg {
    transform: rotate(180deg);
}

/* Module Content */
.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.module-item.active .module-content {
    max-height: 500px;
}

.content-block {
    display: flex;
    gap: 16px;
    padding: 0 20px 24px 84px;
}

.content-dot {
    width: 8px;
    height: 8px;
    background: #155dfc;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.content-details h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.content-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tech Stack */
.tech-stack {
    margin-bottom: 16px;
}

.stack-label,
.outcomes-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tag {
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
}

/* Key Outcomes */
.outcomes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.outcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.outcome-tag.blue {
    background: rgba(21, 93, 252, 0.1);
    color: #155dfc;
}

.outcome-tag.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* Sidebar (Right - Sticky) */
.curriculum-sidebar {
    position: relative;
    align-self: start;
}

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Syllabus Button */
.syllabus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.syllabus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Sidebar Cards */
.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sidebar-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sidebar-card .card-header span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Highlights Card */
.highlights-card {
    border-top: 4px solid #f97316;
}

.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

/* Counseling Card */
.counseling-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 100%);
    color: #fff;
}

.counseling-card .card-header span {
    color: #fff;
}

.counseling-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.callback-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
}

.callback-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Certification Card */
.certification-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
}

.certification-card .card-header span {
    color: #fff;
}

.certification-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.certification-card strong {
    color: #60a5fa;
}

.cert-logos {
    display: flex;
    gap: 12px;
}

.cert-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Skills You Will Master Section
   ======================================== */
.skills-master-section {
    padding: 80px 0 100px;
    background: #fff;
}

.skills-master-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.skills-header {
    text-align: center;
    margin-bottom: 40px;
}

.skills-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.skills-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.skills-title span {
    color: #155dfc;
}

.skills-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Rainbow Gradient Line */
.rainbow-line {
    height: 6px;
    background: linear-gradient(90deg,
        #3b82f6 0%,
        #6366f1 20%,
        #8b5cf6 40%,
        #ec4899 60%,
        #f97316 80%,
        #eab308 100%
    );
    border-radius: 3px;
    margin-bottom: 50px;
}

/* Core Modules */
.core-modules {
    margin-bottom: 50px;
}

.core-modules-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Skill Card Base */
.skill-card {
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.skill-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.skill-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.skill-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Card Color Variants */
.card-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
}
.card-purple .skill-icon {
    color: #8b5cf6;
}

.card-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
}
.card-yellow .skill-icon {
    color: #ca8a04;
}

.card-mint {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.card-mint .skill-icon {
    color: #059669;
}

.card-green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}
.card-green .skill-icon {
    color: #16a34a;
}

.card-lavender {
    background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%);
}
.card-lavender .skill-icon {
    color: #9333ea;
}

.card-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.card-pink .skill-icon {
    color: #db2777;
}

.card-cyan {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}
.card-cyan .skill-icon {
    color: #0891b2;
}

.card-peach {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}
.card-peach .skill-icon {
    color: #ea580c;
}

.card-gray {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.card-gray .skill-icon {
    color: #4b5563;
}

.card-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}
.card-blue .skill-icon {
    color: #2563eb;
}

/* CTA Banner */
.skills-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    border-radius: 20px;
    gap: 40px;
}

.cta-banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 550px;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #ea580c;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Alumni Testimonials Section
   ======================================== */
.alumni-testimonials-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.alumni-testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.alumni-header {
    text-align: center;
    margin-bottom: 50px;
}

.alumni-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.alumni-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.alumni-title span {
    color: #1a1a2e;
    text-decoration: underline;
    text-decoration-color: #fbbf24;
    text-underline-offset: 6px;
    text-decoration-thickness: 4px;
}

/* Main Content Layout */
.alumni-content {
    display: grid;
    grid-template-columns: 320px 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Alumni List (Left) */
.alumni-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alumni-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.alumni-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.alumni-card.active {
    border-color: #f97316;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.alumni-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.alumni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-info {
    flex: 1;
    min-width: 0;
}

.alumni-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.alumni-name-row h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.linkedin-icon {
    flex-shrink: 0;
}

.alumni-company {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.alumni-quote {
    font-size: 13px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

/* Video Container (Center) */
.alumni-video-wrapper {
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.6);
}

.play-btn svg {
    margin-left: 4px;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.video-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.video-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.video-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.video-brand {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 6px;
}

.video-brand img {
    height: 20px;
    width: auto;
}

/* Alumni Details (Right) */
.alumni-details {
    padding: 10px 0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    margin-bottom: 20px;
}

.verified-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #059669;
}

.detail-name {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.detail-company {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 24px;
}

.detail-quote {
    margin-bottom: 24px;
}

.quote-icon {
    margin-bottom: 12px;
}

.detail-quote p {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    font-style: italic;
}

.detail-testimonial {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.journey-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.journey-btn svg {
    transition: transform 0.3s ease;
}

.journey-btn:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Live Projects Slider Section
   ======================================== */
.live-projects-section {
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* Background SVG Decorations */
.live-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23155dfc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Gradient Circles */
.live-projects-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.live-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Background Decorations */
.projects-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle-1 {
    position: absolute;
    bottom: -50px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.decoration-dots {
    position: absolute;
    top: 80px;
    right: 50px;
    animation: float 6s ease-in-out infinite reverse;
}

.decoration-lines {
    position: absolute;
    bottom: 100px;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Header */
.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.projects-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.projects-title span {
    background: linear-gradient(135deg, #155dfc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider Wrapper */
.projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
}

.slider-arrow:hover {
    background: #155dfc;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(21, 93, 252, 0.3);
}

.slider-prev {
    left: -28px;
}

.slider-next {
    right: -28px;
}

/* Slider Container */
.projects-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

/* Project Card */
.project-card {
    display: none;
}

.project-card.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-card-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Project Left Side */
.project-left {
    padding: 40px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #155dfc;
    width: fit-content;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.project-badge svg {
    color: #10b981;
}

.project-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.project-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-company {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.project-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-category.green {
    color: #10b981;
}

.project-category.orange {
    color: #f97316;
}

.project-category.purple {
    color: #8b5cf6;
}

.project-category.cyan {
    color: #06b6d4;
}

.project-category.pink {
    color: #ec4899;
}

/* Project Right Side */
.project-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.objectives-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #155dfc;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
}

.objectives-list li:last-child {
    margin-bottom: 0;
}

.objectives-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Project Footer */
.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.standards-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.project-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-pdf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #bbb;
}

.slider-dot.active {
    background: linear-gradient(135deg, #155dfc 0%, #6366f1 100%);
    transform: scale(1.2);
}

/* Progress Bar */
.slider-progress {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #155dfc 0%, #6366f1 100%);
    width: 20%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Card Background Variants */
.project-card[data-project="2"] .project-left {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.project-card[data-project="3"] .project-left {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.project-card[data-project="4"] .project-left {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}

.project-card[data-project="5"] .project-left {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio-section {
    padding: 80px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.linkedin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #0077b5;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.portfolio-title span {
    background: linear-gradient(135deg, #155dfc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.portfolio-subtitle strong {
    color: #1a1a2e;
}

/* Content Grid */
.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Left Column */
.portfolio-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Course Info Card */
.course-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #155dfc;
    background: rgba(21, 93, 252, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.course-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 8px;
}

.course-card-title span {
    color: #155dfc;
}

.course-card-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

/* Course Features */
.course-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.course-feature {
    display: flex;
    gap: 16px;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.feature-icon-box.blue {
    background: rgba(21, 93, 252, 0.1);
    color: #155dfc;
}

.feature-icon-box.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.feature-text strong {
    color: #155dfc;
}

/* Certification Button */
.certification-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #155dfc 0%, #1249d6 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 93, 252, 0.3);
}

/* Alumni Impact Card */
.alumni-impact-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.impact-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 12px;
}

.bolt-icon {
    opacity: 0.15;
}

.bolt-icon.right {
    transform: scaleX(-1);
}

.impact-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.impact-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.impact-text strong {
    color: #155dfc;
}

.impact-text em {
    font-style: italic;
}

.impact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #155dfc;
    transition: all 0.3s ease;
}

.impact-link:hover {
    gap: 10px;
}

/* Right Column - LinkedIn Profile Card */
.linkedin-profile-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Profile Header BG */
.profile-header-bg {
    height: 80px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7f0 100%);
    position: relative;
    padding: 16px 20px;
}

.watermark-text {
    font-size: 32px;
    font-weight: 800;
    color: rgba(21, 93, 252, 0.08);
    letter-spacing: 2px;
}

.profile-badge-corner {
    position: absolute;
    top: 12px;
    right: 16px;
    text-align: right;
}

.dm-badge {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #155dfc;
    margin-bottom: 2px;
}

.master-text {
    font-size: 8px;
    color: #888;
}

/* Profile Info Section */
.profile-info-section {
    padding: 0 24px 20px;
    margin-top: -40px;
    position: relative;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.profile-name-row h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.profile-title {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.profile-title strong {
    color: #155dfc;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}

.profile-location a {
    color: #155dfc;
    font-weight: 500;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 12px;
}

.btn-connect {
    flex: 1;
    padding: 10px 20px;
    background: #155dfc;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-connect:hover {
    background: #1249d6;
}

.btn-message {
    flex: 1;
    padding: 10px 20px;
    background: #fff;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-message:hover {
    background: #f8fafc;
    border-color: #bbb;
}

/* Profile Skills */
.profile-skills {
    padding: 20px 24px;
    border-top: 1px solid #eee;
}

.profile-skills h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-align: left;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    text-align: left;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.skill-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.skill-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
    text-align: left;
}

.skill-endorsement {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    text-align: left;
}

.skill-endorsement svg {
    flex-shrink: 0;
}

.skill-endorsement strong {
    color: #1a1a2e;
}

/* Featured Portfolio */
.featured-portfolio {
    padding: 20px 24px;
    border-top: 1px solid #eee;
}

.portfolio-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.portfolio-header-row h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.more-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #f0f0f0;
}

/* Portfolio Items */
.portfolio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.portfolio-item {
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-2px);
}

.portfolio-item.blue-gradient {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.portfolio-item.purple-gradient {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.item-tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #155dfc;
    margin-bottom: 8px;
}

.portfolio-item.purple-gradient .item-tag {
    color: #8b5cf6;
}

.portfolio-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.portfolio-item p {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   Main Content Area
   ======================================== */
.course-detail-main {
    padding: 60px 0 80px;
}

.course-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .course-hero-container {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .course-detail-container {
        padding: 0 30px;
    }

    /* Alumni Testimonials */
    .alumni-content {
        grid-template-columns: 280px 1fr 320px;
        gap: 30px;
    }

    .alumni-title {
        font-size: 36px;
    }

    .detail-name {
        font-size: 32px;
    }

    .detail-quote p {
        font-size: 20px;
    }

    /* Live Projects */
    .live-projects-container {
        padding: 0 30px;
    }

    .projects-title {
        font-size: 36px;
    }

    .project-card-inner {
        grid-template-columns: 260px 1fr;
    }

    .project-left {
        padding: 30px;
    }

    .project-right {
        padding: 30px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    /* Portfolio Section */
    .portfolio-container {
        padding: 0 30px;
    }

    .portfolio-title {
        font-size: 36px;
    }

    .portfolio-content {
        gap: 24px;
    }

    .course-info-card {
        padding: 28px;
    }

    .course-card-title {
        font-size: 24px;
    }

    /* Placement Record */
    .placement-title {
        font-size: 36px;
    }

    .placement-stat .stat-value {
        font-size: 36px;
    }

    .placement-stat {
        padding: 35px 25px;
    }

    /* Employment Section */
    .employment-title {
        font-size: 36px;
    }

    .place-cards {
        gap: 12px;
    }

    .place-card {
        padding: 25px 15px;
    }

    .place-letter {
        font-size: 30px;
    }

    .place-title {
        font-size: 14px;
    }

    .place-desc {
        font-size: 10px;
    }

    /* Curriculum Section */
    .curriculum-title {
        font-size: 36px;
    }

    .curriculum-content {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }

    .curriculum-modules {
        padding: 24px;
    }

    .module-info h4 {
        font-size: 15px;
    }

    /* Skills Master Section */
    .skills-title {
        font-size: 36px;
    }

    .skills-grid {
        gap: 16px;
    }

    .skill-card {
        padding: 24px 20px;
    }

    .skill-card h4 {
        font-size: 15px;
    }

    .skill-icon {
        width: 54px;
        height: 54px;
    }

    .skills-cta-banner {
        padding: 35px 40px;
    }

    .cta-banner-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .course-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    /* Employment Section */
    .place-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .place-cards .place-card:nth-child(4),
    .place-cards .place-card:nth-child(5) {
        grid-column: span 1;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .comparison-col {
        padding: 20px;
        font-size: 13px;
    }

    .comparison-header .comparison-col {
        padding: 16px 20px;
        font-size: 11px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Curriculum Section */
    .curriculum-section {
        padding: 60px 0 80px;
    }

    .curriculum-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar-sticky {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .syllabus-btn {
        grid-column: span 2;
    }

    .curriculum-actions {
        flex-wrap: wrap;
    }

    /* Skills Master Section */
    .skills-master-section {
        padding: 60px 0 80px;
    }

    .skills-master-container {
        padding: 0 30px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .skills-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }

    .cta-banner-content p {
        max-width: 100%;
    }

    .cta-banner-btn {
        width: 100%;
        justify-content: center;
    }

    /* Alumni Testimonials */
    .alumni-testimonials-section {
        padding: 60px 0 80px;
    }

    .alumni-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .alumni-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .alumni-video-wrapper {
        order: -1;
    }

    .video-container {
        max-width: 280px;
    }

    .alumni-details {
        text-align: center;
    }

    .detail-quote {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .journey-btn {
        margin: 0 auto;
    }

    /* Live Projects */
    .live-projects-section {
        padding: 60px 0 80px;
    }

    .project-card-inner {
        grid-template-columns: 1fr;
    }

    .project-left {
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .project-badge {
        margin-bottom: 20px;
    }

    .project-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .project-company {
        font-size: 28px;
    }

    .slider-arrow {
        width: 48px;
        height: 48px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    /* Portfolio Section */
    .portfolio-section {
        padding: 60px 0 80px;
    }

    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-left {
        order: 2;
    }

    .portfolio-right {
        order: 1;
    }

    .linkedin-profile-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .course-hero {
        padding: 40px 0 60px;
    }

    .course-hero-container {
        padding: 0 30px;
    }

    .course-detail-main {
        padding: 40px 0 60px;
    }

    /* Placement Record */
    .placement-record {
        padding: 60px 0 80px;
    }

    .placement-record-container {
        padding: 0 30px;
    }

    .placement-stats-bar {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .placement-stat {
        flex: 1 1 50%;
        padding: 30px 20px;
    }

    .placement-stat .stat-value {
        font-size: 32px;
    }

    .placement-stat .stat-text {
        font-size: 13px;
    }

    /* Employment Section */
    .employment-section {
        padding: 60px 0 80px;
    }

    .employment-container {
        padding: 0 30px;
    }

    .place-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .place-cards .place-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 30px 0 50px;
        min-height: auto;
    }

    .course-hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .hero-gradient-left {
        width: 150px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-features li {
        font-size: 14px;
    }

    .hired-by-logos {
        gap: 24px;
    }

    .hired-by-logos img {
        height: 20px;
        max-width: 80px;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .form-floating-icon {
        width: 45px;
        height: 45px;
        top: -10px;
        right: -10px;
    }

    .form-header {
        padding: 24px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .hero-form {
        padding: 24px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        padding: 14px 16px;
        font-size: 14px;
    }

    .country-code {
        padding: 14px 0 14px 16px;
    }

    .form-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .course-detail-container {
        padding: 0 20px;
    }

    /* Placement Record */
    .placement-record {
        padding: 50px 0 70px;
    }

    .placement-record-container {
        padding: 0 20px;
    }

    .placement-header {
        margin-bottom: 40px;
    }

    .placement-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .placement-title {
        font-size: 28px;
    }

    .placement-description {
        font-size: 14px;
    }

    .placement-stat {
        padding: 25px 15px;
    }

    .placement-stat .stat-value {
        font-size: 28px;
    }

    .placement-stat .stat-text {
        font-size: 12px;
    }

    .placement-dots-pattern {
        height: 40px;
    }

    /* Employment Section */
    .employment-container {
        padding: 0 20px;
    }

    .employment-header {
        margin-bottom: 40px;
    }

    .employment-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .employment-title {
        font-size: 28px;
    }

    .employment-subtitle {
        font-size: 14px;
    }

    .place-cards {
        margin-bottom: 40px;
    }

    .place-card {
        padding: 20px 15px;
    }

    .place-letter {
        font-size: 28px;
    }

    .place-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .place-desc {
        font-size: 9px;
    }

    .comparison-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 20px;
    }

    .cta-content {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Curriculum Section */
    .curriculum-container {
        padding: 0 20px;
    }

    .curriculum-header {
        margin-bottom: 40px;
    }

    .curriculum-title {
        font-size: 28px;
    }

    .curriculum-subtitle {
        font-size: 14px;
    }

    .curriculum-modules {
        padding: 20px;
    }

    .modules-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .modules-title {
        font-size: 20px;
    }

    .module-header {
        padding: 16px;
    }

    .module-icon {
        width: 42px;
        height: 42px;
    }

    .module-info h4 {
        font-size: 14px;
    }

    .content-block {
        padding: 0 16px 20px 58px;
    }

    .content-details h5 {
        font-size: 16px;
    }

    .sidebar-sticky {
        grid-template-columns: 1fr;
    }

    .syllabus-btn {
        grid-column: span 1;
    }

    .sidebar-card {
        padding: 20px;
    }

    /* Skills Master Section */
    .skills-master-container {
        padding: 0 20px;
    }

    .skills-title {
        font-size: 28px;
    }

    .skills-subtitle {
        font-size: 14px;
    }

    .core-modules-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .skill-card {
        padding: 24px 18px;
    }

    .skill-card h4 {
        font-size: 14px;
    }

    .skill-card p {
        font-size: 12px;
    }

    .skill-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .skill-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-banner-content h3 {
        font-size: 22px;
    }

    .cta-banner-content p {
        font-size: 14px;
    }

    /* Alumni Testimonials */
    .alumni-testimonials-section {
        padding: 50px 0 70px;
    }

    .alumni-testimonials-container {
        padding: 0 20px;
    }

    .alumni-header {
        margin-bottom: 40px;
    }

    .alumni-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .alumni-title {
        font-size: 28px;
    }

    .alumni-card {
        padding: 14px;
    }

    .alumni-avatar {
        width: 42px;
        height: 42px;
    }

    .alumni-name-row h4 {
        font-size: 14px;
    }

    .alumni-company {
        font-size: 11px;
    }

    .alumni-quote {
        font-size: 12px;
    }

    .video-container {
        max-width: 260px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .video-name {
        font-size: 18px;
    }

    .detail-name {
        font-size: 28px;
    }

    .detail-company {
        font-size: 16px;
    }

    .detail-quote p {
        font-size: 18px;
    }

    .detail-testimonial {
        font-size: 14px;
    }

    .journey-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    /* Portfolio Section */
    .portfolio-section {
        padding: 50px 0 70px;
    }

    .portfolio-container {
        padding: 0 20px;
    }

    .portfolio-header {
        margin-bottom: 40px;
    }

    .linkedin-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-subtitle {
        font-size: 14px;
    }

    .course-info-card {
        padding: 24px;
    }

    .course-card-title {
        font-size: 22px;
    }

    .course-card-subtitle {
        font-size: 13px;
    }

    .feature-icon-box {
        width: 40px;
        height: 40px;
    }

    .feature-text h4 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }

    .certification-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .alumni-impact-card {
        padding: 24px;
    }

    .impact-title {
        font-size: 15px;
    }

    .impact-text {
        font-size: 13px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }

    .profile-name-row h3 {
        font-size: 18px;
    }

    .profile-title {
        font-size: 12px;
    }

    .profile-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-connect,
    .btn-message {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Live Projects */
    .live-projects-section {
        padding: 50px 0 70px;
    }

    .live-projects-container {
        padding: 0 20px;
    }

    .projects-bg-decoration {
        display: none;
    }

    .live-projects-section::before,
    .live-projects-section::after {
        display: none;
    }

    .projects-header {
        margin-bottom: 40px;
    }

    .projects-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .projects-title {
        font-size: 28px;
    }

    .projects-subtitle {
        font-size: 14px;
    }

    .projects-slider-wrapper {
        margin-bottom: 30px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        display: none;
    }

    .projects-slider {
        border-radius: 20px;
    }

    .project-card-inner {
        border-radius: 20px;
    }

    .project-left {
        padding: 24px;
    }

    .project-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .project-logo {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .project-company {
        font-size: 26px;
    }

    .project-category {
        font-size: 11px;
    }

    .project-right {
        padding: 24px;
    }

    .objectives-title {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .objectives-list li {
        font-size: 14px;
        gap: 12px;
        margin-bottom: 14px;
    }

    .objectives-list li svg {
        width: 16px;
        height: 16px;
    }

    .project-footer {
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
        margin-top: 24px;
    }

    .standards-tag {
        font-size: 10px;
    }

    .project-pdf-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }

    .slider-dots {
        gap: 10px;
        margin-bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {
    .course-hero-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title span {
        display: inline;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-features li {
        font-size: 13px;
        gap: 10px;
    }

    .hero-features li svg {
        width: 18px;
        height: 18px;
    }

    .hired-by-label {
        font-size: 10px;
    }

    .hired-by-logos {
        gap: 20px;
    }

    .hired-by-logos img {
        height: 18px;
        max-width: 70px;
    }

    .course-detail-main {
        padding: 30px 0 50px;
    }

    .course-detail-container {
        padding: 0 15px;
    }

    /* Placement Record */
    .placement-record {
        padding: 40px 0 60px;
    }

    .placement-record-container {
        padding: 0 15px;
    }

    .placement-title {
        font-size: 24px;
    }

    .placement-description {
        font-size: 13px;
    }

    .placement-stats-bar {
        border-radius: 10px;
    }

    .placement-stat {
        padding: 20px 12px;
    }

    .placement-stat .stat-value {
        font-size: 24px;
    }

    .placement-stat .stat-text {
        font-size: 10px;
    }

    /* Employment Section */
    .employment-section {
        padding: 40px 0 60px;
    }

    .employment-container {
        padding: 0 15px;
    }

    .employment-title {
        font-size: 24px;
    }

    .place-cards .place-card:last-child {
        max-width: 100%;
        grid-column: span 2;
    }

    .cta-text h4 {
        font-size: 16px;
    }

    .cta-text p {
        font-size: 13px;
    }

    /* Curriculum Section */
    .curriculum-section {
        padding: 40px 0 60px;
    }

    .curriculum-container {
        padding: 0 15px;
    }

    .curriculum-tag {
        font-size: 10px;
    }

    .curriculum-title {
        font-size: 24px;
    }

    .btn-expand,
    .btn-collapse {
        padding: 12px 20px;
        font-size: 13px;
    }

    .curriculum-modules {
        padding: 16px;
        border-radius: 12px;
    }

    .module-header {
        padding: 14px;
        gap: 12px;
    }

    .module-icon {
        width: 38px;
        height: 38px;
    }

    .module-icon svg {
        width: 18px;
        height: 18px;
    }

    .module-info h4 {
        font-size: 13px;
    }

    .module-meta {
        font-size: 10px;
    }

    .module-toggle {
        width: 32px;
        height: 32px;
    }

    .content-block {
        padding: 0 14px 18px 50px;
        gap: 12px;
    }

    .content-details h5 {
        font-size: 15px;
    }

    .content-details p {
        font-size: 13px;
    }

    .stack-tag {
        padding: 5px 10px;
        font-size: 10px;
    }

    .outcome-tag {
        padding: 6px 12px;
        font-size: 10px;
    }

    /* Skills Master Section */
    .skills-master-section {
        padding: 40px 0 60px;
    }

    .skills-master-container {
        padding: 0 15px;
    }

    .skills-tag {
        font-size: 10px;
    }

    .skills-title {
        font-size: 24px;
    }

    .rainbow-line {
        height: 4px;
        margin-bottom: 40px;
    }

    .core-modules-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .skills-grid {
        gap: 12px;
    }

    .skill-card {
        padding: 20px 14px;
        border-radius: 12px;
    }

    .skill-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .skill-card h4 {
        font-size: 13px;
    }

    .skill-tag {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .skill-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    .skills-cta-banner {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .cta-banner-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cta-banner-content p {
        font-size: 13px;
    }

    .cta-banner-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Alumni Testimonials */
    .alumni-testimonials-section {
        padding: 40px 0 60px;
    }

    .alumni-testimonials-container {
        padding: 0 15px;
    }

    .alumni-tag {
        font-size: 10px;
    }

    .alumni-title {
        font-size: 24px;
    }

    .alumni-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .alumni-card {
        padding: 12px;
        gap: 12px;
    }

    .alumni-avatar {
        width: 40px;
        height: 40px;
    }

    .alumni-name-row h4 {
        font-size: 13px;
    }

    .alumni-company {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .alumni-quote {
        font-size: 11px;
        line-height: 1.4;
    }

    .video-container {
        max-width: 240px;
        border-radius: 20px;
    }

    .play-btn {
        width: 56px;
        height: 56px;
    }

    .play-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-info {
        padding: 50px 16px 20px;
    }

    .video-name {
        font-size: 16px;
    }

    .video-role {
        font-size: 12px;
    }

    .video-company {
        font-size: 11px;
    }

    .video-brand {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
    }

    .video-brand img {
        height: 16px;
    }

    .verified-badge {
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .verified-badge span {
        font-size: 10px;
    }

    .detail-name {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .detail-company {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .detail-quote {
        margin-bottom: 20px;
    }

    .quote-icon {
        margin-bottom: 8px;
    }

    .quote-icon svg {
        width: 24px;
        height: 24px;
    }

    .detail-quote p {
        font-size: 16px;
    }

    .detail-testimonial {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .journey-btn {
        padding: 12px 24px;
        font-size: 13px;
        gap: 8px;
    }

    /* Live Projects */
    .live-projects-section {
        padding: 40px 0 60px;
    }

    .live-projects-container {
        padding: 0 15px;
    }

    .projects-tag {
        font-size: 10px;
    }

    .projects-title {
        font-size: 24px;
    }

    .projects-title br {
        display: none;
    }

    .projects-subtitle {
        font-size: 13px;
    }

    .projects-slider {
        border-radius: 16px;
    }

    .project-card-inner {
        border-radius: 16px;
    }

    .project-left {
        padding: 20px;
    }

    .project-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .project-badge svg {
        width: 14px;
        height: 14px;
    }

    .project-logo {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .project-company {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .project-category {
        font-size: 10px;
    }

    .project-right {
        padding: 20px;
    }

    .objectives-title {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .objectives-list li {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .objectives-list li svg {
        width: 14px;
        height: 14px;
        margin-top: 3px;
    }

    .project-footer {
        padding-top: 20px;
        margin-top: 20px;
        gap: 14px;
    }

    .project-pdf-btn {
        padding: 11px 20px;
        font-size: 12px;
        border-radius: 8px;
    }

    .slider-dots {
        gap: 8px;
        margin-bottom: 16px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-progress {
        max-width: 300px;
        height: 3px;
    }

    /* Portfolio Section */
    .portfolio-section {
        padding: 40px 0 60px;
    }

    .portfolio-container {
        padding: 0 15px;
    }

    .linkedin-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .portfolio-title {
        font-size: 24px;
    }

    .portfolio-subtitle {
        font-size: 13px;
    }

    .course-info-card {
        padding: 20px;
        border-radius: 16px;
    }

    .course-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .course-card-title {
        font-size: 20px;
    }

    .course-card-title br {
        display: none;
    }

    .course-features {
        gap: 20px;
        margin-bottom: 24px;
    }

    .course-feature {
        gap: 12px;
    }

    .feature-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .feature-icon-box svg {
        width: 18px;
        height: 18px;
    }

    .feature-text h4 {
        font-size: 13px;
    }

    .feature-text p {
        font-size: 11px;
    }

    .certification-btn {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 10px;
    }

    .alumni-impact-card {
        padding: 20px;
        border-radius: 16px;
    }

    .impact-icons {
        gap: 60px;
    }

    .bolt-icon {
        width: 20px;
        height: 20px;
    }

    .impact-title {
        font-size: 14px;
    }

    .impact-text {
        font-size: 12px;
    }

    .impact-link {
        font-size: 13px;
    }

    .linkedin-profile-card {
        border-radius: 14px;
    }

    .profile-header-bg {
        height: 70px;
        padding: 12px 16px;
    }

    .watermark-text {
        font-size: 26px;
    }

    .profile-info-section {
        padding: 0 18px 18px;
        margin-top: -35px;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .profile-name-row h3 {
        font-size: 17px;
    }

    .linkedin-icon-blue {
        width: 20px;
        height: 20px;
    }

    .profile-title {
        font-size: 11px;
    }

    .profile-location {
        font-size: 11px;
    }

    .btn-connect,
    .btn-message {
        padding: 9px 14px;
        font-size: 12px;
    }

    .profile-skills {
        padding: 16px 18px;
    }

    .profile-skills h4 {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .skill-icon {
        width: 32px;
        height: 32px;
    }

    .skill-icon svg {
        width: 16px;
        height: 16px;
    }

    .skill-name {
        font-size: 12px;
    }

    .skill-endorsement {
        font-size: 10px;
    }

    .featured-portfolio {
        padding: 16px 18px;
    }

    .portfolio-header-row h4 {
        font-size: 13px;
    }

    .portfolio-items {
        gap: 10px;
    }

    .portfolio-item {
        padding: 14px;
        border-radius: 10px;
    }

    .item-tag {
        font-size: 7px;
    }

    .portfolio-item h5 {
        font-size: 12px;
    }

    .portfolio-item p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 10px;
        gap: 6px;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .form-header {
        padding: 20px;
    }

    .form-header h3 {
        font-size: 18px;
    }

    .hero-form {
        padding: 20px;
    }

    .whatsapp-link {
        padding: 16px 20px;
        font-size: 13px;
    }

    /* Placement Record */
    .placement-tag {
        font-size: 10px;
    }

    .placement-title {
        font-size: 22px;
    }

    .placement-stat .stat-value {
        font-size: 20px;
    }

    .placement-stat .stat-text {
        font-size: 9px;
        letter-spacing: 0;
    }

    .placement-dots-pattern {
        height: 30px;
        background-size: 15px 15px;
    }

    /* Employment Section */
    .employment-badge {
        font-size: 9px;
        padding: 6px 12px;
        gap: 6px;
    }

    .employment-badge svg {
        width: 14px;
        height: 14px;
    }

    .employment-title {
        font-size: 22px;
    }

    .employment-title span {
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

    .employment-subtitle {
        font-size: 13px;
    }

    .place-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .place-card {
        padding: 18px 12px;
    }

    .place-letter {
        font-size: 24px;
    }

    .place-title {
        font-size: 13px;
    }

    .place-desc {
        font-size: 8px;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
    }

    .cta-icon svg {
        width: 20px;
        height: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Skills Master Section */
    .skills-title {
        font-size: 22px;
    }

    .core-modules-title {
        font-size: 18px;
    }

    .skill-card {
        padding: 18px 12px;
    }

    .skill-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .skill-icon svg {
        width: 20px;
        height: 20px;
    }

    .skill-card h4 {
        font-size: 12px;
    }

    .skill-card p {
        font-size: 10px;
    }

    .cta-banner-content h3 {
        font-size: 18px;
    }

    .cta-banner-content p {
        font-size: 12px;
    }

    .cta-banner-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .cta-banner-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Alumni Testimonials */
    .alumni-title {
        font-size: 22px;
    }

    .alumni-title span {
        text-underline-offset: 4px;
        text-decoration-thickness: 3px;
    }

    .alumni-card {
        padding: 10px;
        gap: 10px;
        border-radius: 10px;
    }

    .alumni-avatar {
        width: 36px;
        height: 36px;
    }

    .alumni-name-row h4 {
        font-size: 12px;
    }

    .linkedin-icon {
        width: 14px;
        height: 14px;
    }

    .alumni-company {
        font-size: 9px;
    }

    .alumni-quote {
        font-size: 10px;
    }

    .video-container {
        max-width: 220px;
        border-radius: 16px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn svg {
        width: 18px;
        height: 18px;
    }

    .video-name {
        font-size: 14px;
    }

    .video-role {
        font-size: 11px;
    }

    .video-company {
        font-size: 10px;
    }

    .verified-badge {
        padding: 5px 10px;
    }

    .verified-badge svg {
        width: 14px;
        height: 14px;
    }

    .verified-badge span {
        font-size: 9px;
    }

    .detail-name {
        font-size: 22px;
    }

    .detail-company {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .detail-quote p {
        font-size: 15px;
    }

    .detail-testimonial {
        font-size: 12px;
        line-height: 1.6;
    }

    .journey-btn {
        padding: 11px 22px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* Live Projects */
    .projects-title {
        font-size: 22px;
    }

    .projects-subtitle {
        font-size: 12px;
    }

    .project-left {
        padding: 18px;
    }

    .project-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .project-logo {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 14px;
    }

    .project-company {
        font-size: 20px;
    }

    .project-category {
        font-size: 9px;
    }

    .project-right {
        padding: 18px;
    }

    .objectives-title {
        font-size: 9px;
        margin-bottom: 14px;
    }

    .objectives-list li {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .project-footer {
        padding-top: 16px;
        margin-top: 16px;
        gap: 12px;
    }

    .standards-tag {
        font-size: 9px;
    }

    .project-pdf-btn {
        padding: 10px 18px;
        font-size: 11px;
        gap: 8px;
    }

    .project-pdf-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Portfolio Section */
    .portfolio-title {
        font-size: 22px;
    }

    .portfolio-subtitle {
        font-size: 12px;
    }

    .course-info-card {
        padding: 18px;
    }

    .course-card-title {
        font-size: 18px;
    }

    .course-card-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .course-features {
        gap: 18px;
        margin-bottom: 20px;
    }

    .feature-icon-box {
        width: 34px;
        height: 34px;
    }

    .certification-btn {
        padding: 11px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .certification-btn svg {
        width: 18px;
        height: 18px;
    }

    .alumni-impact-card {
        padding: 18px;
    }

    .impact-icons {
        gap: 50px;
        margin-bottom: 10px;
    }

    .impact-title {
        font-size: 13px;
    }

    .impact-text {
        font-size: 11px;
    }

    .impact-link {
        font-size: 12px;
    }

    .profile-avatar {
        width: 64px;
        height: 64px;
    }

    .profile-name-row h3 {
        font-size: 16px;
    }

    .portfolio-items {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Recruiter Feedback Section
   ======================================== */
.recruiter-feedback-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.recruiter-feedback-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.recruiter-feedback-header {
    text-align: center;
    margin-bottom: 60px;
}

.recruiter-feedback-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.recruiter-feedback-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.recruiter-feedback-title span {
    color: #155dfc;
}

.recruiter-feedback-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider Wrapper - Full Width */
.recruiter-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient Fade Edges */
.recruiter-slider-wrapper::before,
.recruiter-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.recruiter-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.recruiter-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc 0%, transparent 100%);
}

/* Slider Track - Infinite Animation */
.recruiter-slider-track {
    display: flex;
    gap: 30px;
    animation: scrollSlider 30s linear infinite;
    width: max-content;
}

.recruiter-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Recruiter Card */
.recruiter-card {
    flex-shrink: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recruiter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Card Header - Company Branding */
.recruiter-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    position: relative;
}

/* Company Color Variants */
.recruiter-card-header.barclays {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.recruiter-card-header.ey {
    background: linear-gradient(135deg, #2e5bff 0%, #1e40af 100%);
}

.recruiter-card-header.algebra {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.company-logo-white {
    height: 28px;
    filter: brightness(0) invert(1);
}

.company-logo-dark {
    height: 32px;
    filter: brightness(0) invert(1);
}

.company-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.company-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Card Body */
.recruiter-card-body {
    padding: 0 24px 28px;
    text-align: center;
    position: relative;
}

/* Avatar - Overlapping Header */
.recruiter-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: -45px auto 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.recruiter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name & Position */
.recruiter-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.recruiter-position {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Star Rating */
.recruiter-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.recruiter-rating svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
}

.recruiter-rating.blue svg {
    fill: #3b82f6;
}

/* Quote Section */
.recruiter-quote {
    position: relative;
    padding: 0 10px;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 60px;
    line-height: 1;
    color: #f0f0f0;
    position: absolute;
}

.quote-icon.open {
    top: -20px;
    left: -5px;
}

.quote-icon.close {
    bottom: -35px;
    right: -5px;
    color: #ef4444;
    opacity: 0.3;
}

.recruiter-quote p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .recruiter-feedback-title {
        font-size: 36px;
    }

    .recruiter-slider-wrapper::before,
    .recruiter-slider-wrapper::after {
        width: 80px;
    }

    .recruiter-card {
        width: 290px;
    }
}

@media (max-width: 768px) {
    .recruiter-feedback-section {
        padding: 60px 0 80px;
    }

    .recruiter-feedback-header {
        margin-bottom: 40px;
    }

    .recruiter-feedback-title {
        font-size: 28px;
    }

    .recruiter-feedback-subtitle {
        font-size: 14px;
    }

    .recruiter-slider-wrapper::before,
    .recruiter-slider-wrapper::after {
        width: 40px;
    }

    .recruiter-card {
        width: 280px;
    }

    .recruiter-slider-track {
        gap: 20px;
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .recruiter-feedback-container {
        padding: 0 20px;
    }

    .recruiter-feedback-title {
        font-size: 24px;
    }

    .recruiter-card {
        width: 260px;
    }

    .recruiter-card-header {
        height: 85px;
    }

    .recruiter-avatar {
        width: 80px;
        height: 80px;
        margin-top: -40px;
    }

    .recruiter-name {
        font-size: 16px;
    }

    .recruiter-quote p {
        font-size: 13px;
    }
}

/* ========================================
   Upcoming Batches Section
   ======================================== */
.upcoming-batches-section {
    padding: 80px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.upcoming-batches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.upcoming-batches-header {
    text-align: center;
    margin-bottom: 50px;
}

.upcoming-batches-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.upcoming-batches-title span {
    color: #155dfc;
}

.upcoming-batches-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Grid - 2 Columns */
.upcoming-batches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Left Column - Batches Card */
.batches-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.batches-card-gradient-border {
    height: 6px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 25%, #f59e0b 50%, #ef4444 75%, #8b5cf6 100%);
}

.batches-card-inner {
    padding: 28px;
}

.batches-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.batches-card-header svg {
    width: 24px;
    height: 24px;
    color: #1a1a2e;
}

.batches-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Batch Item */
.batch-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.batch-item:last-of-type {
    margin-bottom: 0;
}

.batch-type-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.batch-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.filling-fast-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 12px;
    font-weight: 600;
}

.filling-fast-tag svg {
    width: 14px;
    height: 14px;
}

.batch-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.batch-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid #e5e5e5;
}

.date-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.batch-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.batch-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.batch-time svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.batch-days {
    font-size: 13px;
    color: #666;
}

.batch-seats {
    font-size: 13px;
    font-weight: 600;
}

.batch-seats.green {
    color: #10b981;
}

.batch-seats.red {
    color: #ef4444;
}

.secure-seat-btn {
    width: 100%;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secure-seat-btn:hover {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
}

.batches-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}

/* Right Column - Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card.full-width {
    grid-column: 1 / -1;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-icon.blue {
    background: #eff6ff;
}

.benefit-icon.blue svg {
    color: #3b82f6;
}

.benefit-icon.green {
    background: #ecfdf5;
}

.benefit-icon.green svg {
    color: #10b981;
}

.benefit-icon.orange {
    background: #fff7ed;
}

.benefit-icon.orange svg {
    color: #f97316;
}

.benefit-icon.purple {
    background: #f5f3ff;
}

.benefit-icon.purple svg {
    color: #8b5cf6;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.benefit-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Money Back Banner */
.money-back-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.money-back-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.money-back-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.money-back-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.money-back-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.money-back-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.callback-btn {
    padding: 14px 28px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.callback-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Responsive - Upcoming Batches */
@media (max-width: 1024px) {
    .upcoming-batches-title {
        font-size: 36px;
    }

    .upcoming-batches-content {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .upcoming-batches-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .upcoming-batches-section {
        padding: 60px 0 80px;
    }

    .upcoming-batches-header {
        margin-bottom: 40px;
    }

    .upcoming-batches-title {
        font-size: 28px;
    }

    .upcoming-batches-subtitle {
        font-size: 14px;
    }

    .money-back-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .money-back-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .upcoming-batches-container {
        padding: 0 20px;
    }

    .upcoming-batches-title {
        font-size: 24px;
    }

    .batches-card-inner {
        padding: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 20px;
    }

    .batch-details {
        flex-direction: column;
        gap: 12px;
    }

    .batch-date {
        flex-direction: row;
        gap: 8px;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .date-number {
        font-size: 24px;
    }
}

/* ========================================
   Program Fees Section - Ultra Modern
   ======================================== */
.program-fees-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Shapes */
.fees-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.fees-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.fees-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.fees-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.fees-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    top: 50%;
    left: 20%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.program-fees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.program-fees-header {
    text-align: center;
    margin-bottom: 60px;
}

.program-fees-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.program-fees-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.program-fees-title span {
    color: #155dfc;
}

.program-fees-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Card Wrapper */
.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.06);
    padding: 48px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 48px 80px rgba(21, 93, 252, 0.12);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #155dfc, #6366f1, #ec4899, #f59e0b, #155dfc);
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    animation: glowRotate 6s linear infinite;
    transition: opacity 0.4s ease;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.popular-badge svg {
    width: 14px;
    height: 14px;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.program-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: #f3f4f6;
    border-radius: 50px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -2px;
}

.price-suffix {
    font-size: 14px;
    color: #888;
    margin-left: 8px;
}

/* Pricing Divider */
.pricing-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
}

.divider-text {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Features Grid */
.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item.highlight span {
    font-weight: 700;
    color: #155dfc;
}

.feature-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
}

.feature-check.special {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.feature-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Enroll Button */
.enroll-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #155dfc 0%, #4f46e5 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(21, 93, 252, 0.35);
    position: relative;
    overflow: hidden;
}

.enroll-btn::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: left 0.5s ease;
}

.enroll-btn:hover::before {
    left: 100%;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(21, 93, 252, 0.45);
}

.enroll-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.enroll-btn:hover svg {
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.trust-item span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Responsive - Program Fees */
@media (max-width: 1024px) {
    .program-fees-title {
        font-size: 36px;
    }

    .pricing-card {
        padding: 40px;
    }

    .price-amount {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .program-fees-section {
        padding: 70px 0 90px;
    }

    .program-fees-header {
        margin-bottom: 40px;
    }

    .program-fees-title {
        font-size: 28px;
    }

    .program-fees-subtitle {
        font-size: 14px;
    }

    .pricing-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .popular-badge {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .price-amount {
        font-size: 42px;
    }

    .currency {
        font-size: 24px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .program-fees-container {
        padding: 0 20px;
    }

    .program-fees-title {
        font-size: 24px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .currency {
        font-size: 20px;
    }

    .feature-item span {
        font-size: 14px;
    }

    .enroll-btn {
        padding: 16px 24px;
        font-size: 15px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   Admission Process Section
   ======================================== */
.admission-process-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.admission-process-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.admission-process-header {
    text-align: center;
    margin-bottom: 70px;
}

.admission-process-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f97316;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.admission-process-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.admission-process-title span {
    color: #155dfc;
}

.admission-process-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-bottom: 60px;
}

/* Connecting Line */
.timeline-connector {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e5e5e5;
    transform: translateY(-50%);
    border-radius: 3px;
    z-index: 0;
}

.connector-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #155dfc, #10b981, #f97316);
    border-radius: 3px;
    animation: progressLine 2s ease-out 0.5s forwards;
}

@keyframes progressLine {
    to {
        width: 100%;
    }
}

/* Process Step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Step Card */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Large Background Number */
.step-number-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 100px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.step-card:hover .step-number-bg {
    color: #eef2ff;
    transform: scale(1.1);
}

/* Step Badge */
.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

.step-badge.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.step-badge.blue span {
    color: #3b82f6;
}

.step-badge.green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.step-badge.green span {
    color: #10b981;
}

.step-badge.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.step-badge.orange span {
    color: #f97316;
}

/* Step Content */
.step-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Step Icon */
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon svg {
    transform: scale(1.15);
}

.step-icon.yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

.step-icon.yellow svg {
    color: #ca8a04;
}

.step-icon.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.step-icon.blue svg {
    color: #2563eb;
}

.step-icon.green {
    background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%);
}

.step-icon.green svg {
    color: #059669;
}

.step-icon.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fdba74 100%);
}

.step-icon.orange svg {
    color: #ea580c;
}

/* Step Dot on Timeline */
.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:nth-child(2) .step-dot {
    border-color: #f59e0b;
    animation: dotPulse 2s ease-out 0.5s forwards;
}

.process-step:nth-child(3) .step-dot {
    border-color: #e5e5e5;
    animation: dotPulse 2s ease-out 1s forwards;
}

.process-step:nth-child(4) .step-dot {
    border-color: #e5e5e5;
    animation: dotPulse 2s ease-out 1.5s forwards;
}

.process-step:nth-child(5) .step-dot {
    border-color: #e5e5e5;
    animation: dotPulse 2s ease-out 2s forwards;
}

@keyframes dotPulse {
    0% {
        border-color: #e5e5e5;
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        border-color: #10b981;
        transform: scale(1);
    }
}

.dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    opacity: 0;
    animation: dotFill 0.3s ease forwards;
    animation-delay: inherit;
}

.process-step:nth-child(2) .dot-inner {
    animation-delay: 0.8s;
}

.process-step:nth-child(3) .dot-inner {
    animation-delay: 1.3s;
}

.process-step:nth-child(4) .dot-inner {
    animation-delay: 1.8s;
}

.process-step:nth-child(5) .dot-inner {
    animation-delay: 2.3s;
}

@keyframes dotFill {
    to {
        opacity: 1;
    }
}

.step-dot.final {
    width: 32px;
    height: 32px;
    background: #10b981;
    border-color: #10b981;
}

.step-dot.final .dot-inner {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-dot.final .dot-inner svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.dot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.step-dot.final .dot-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Admission CTA */
.admission-cta {
    text-align: center;
    padding-top: 20px;
}

.admission-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.start-application-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #155dfc 0%, #4f46e5 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 93, 252, 0.3);
}

.start-application-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 93, 252, 0.4);
}

.start-application-btn svg {
    width: 22px;
    height: 22px;
}

/* Responsive - Admission Process */
@media (max-width: 1100px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-connector {
        display: none;
    }

    .step-dot {
        display: none;
    }

    .step-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .admission-process-section {
        padding: 70px 0 90px;
    }

    .admission-process-header {
        margin-bottom: 50px;
    }

    .admission-process-title {
        font-size: 28px;
    }

    .admission-process-subtitle {
        font-size: 14px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 28px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .step-number-bg {
        font-size: 60px;
        top: 5px;
        right: 15px;
    }

    .step-badge {
        margin-bottom: 0;
    }

    .step-content {
        flex: 1;
        min-width: 200px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .admission-process-container {
        padding: 0 20px;
    }

    .admission-process-title {
        font-size: 24px;
    }

    .step-card {
        padding: 24px 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
    }

    .start-application-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ========================================
   Course Info Tabs Section
   ======================================== */
.course-info-tabs-section {
    padding: 80px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background SVG Pattern */
.course-info-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23155dfc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Gradient Circle Decoration */
.course-info-tabs-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.course-info-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Main Card */
.course-info-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Card Header */
.info-card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.info-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.header-left {
    position: relative;
    z-index: 1;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.header-brand svg {
    width: 18px;
    height: 18px;
    color: #6366f1;
}

.header-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.download-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.download-brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.download-brochure-btn svg {
    width: 18px;
    height: 18px;
}

/* Tabs Wrapper */
.info-tabs-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 450px;
}

/* Tab Navigation */
.info-tabs-nav {
    background: #fafbfc;
    border-right: 1px solid #eef2f6;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.info-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.info-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #155dfc 0%, #6366f1 100%);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.info-tab-btn:hover {
    color: #155dfc;
    background: rgba(21, 93, 252, 0.04);
}

.info-tab-btn.active {
    color: #155dfc;
    font-weight: 600;
    background: rgba(21, 93, 252, 0.06);
}

.info-tab-btn.active::before {
    height: 28px;
}

.info-tab-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-tab-btn:hover svg,
.info-tab-btn.active svg {
    transform: scale(1.1);
}

/* Tab Content */
.info-tabs-content {
    padding: 40px;
    position: relative;
}

.info-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.info-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.tab-content-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #155dfc 0%, #6366f1 100%);
    border-radius: 3px;
    margin-bottom: 24px;
}

.tab-content-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.tab-content-body p:last-child {
    margin-bottom: 0;
}

.tab-content-body strong {
    color: #1a1a2e;
}

/* Tab List */
.tab-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.tab-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.tab-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.skill-tag {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
    color: #155dfc;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(21, 93, 252, 0.1);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #155dfc 0%, #4f46e5 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(21, 93, 252, 0.3);
}

/* Job Roles Grid */
.job-roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.job-role-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.job-role-item:hover {
    background: #ffffff;
    border-color: #e5e5e5;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.role-icon {
    font-size: 20px;
}

.job-role-item span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Card Footer */
.info-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 20px 40px;
    background: #fafbfc;
    border-top: 1px solid #eef2f6;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-stat svg {
    width: 20px;
    height: 20px;
    color: #155dfc;
}

.footer-stat span {
    font-size: 12px;
    font-weight: 700;
    color: #155dfc;
    letter-spacing: 0.5px;
}

/* Responsive - Course Info Tabs */
@media (max-width: 1024px) {
    .info-tabs-wrapper {
        grid-template-columns: 220px 1fr;
    }

    .info-tab-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .info-tabs-content {
        padding: 32px;
    }
}

@media (max-width: 900px) {
    .info-tabs-wrapper {
        grid-template-columns: 1fr;
    }

    .info-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 16px 20px;
        gap: 8px;
        border-right: none;
        border-bottom: 1px solid #eef2f6;
        -webkit-overflow-scrolling: touch;
    }

    .info-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .info-tab-btn {
        flex-shrink: 0;
        padding: 10px 16px;
        border-radius: 8px;
        white-space: nowrap;
    }

    .info-tab-btn::before {
        display: none;
    }

    .info-tab-btn.active {
        background: linear-gradient(135deg, #155dfc 0%, #4f46e5 100%);
        color: #ffffff;
    }

    .info-tab-btn.active svg {
        color: #ffffff;
    }

    .job-roles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .course-info-tabs-section {
        padding: 60px 0 80px;
    }

    .course-info-tabs-container {
        padding: 0 20px;
    }

    .info-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }

    .header-title {
        font-size: 22px;
    }

    .download-brochure-btn {
        width: 100%;
        justify-content: center;
    }

    .info-tabs-content {
        padding: 24px;
    }

    .tab-content-title {
        font-size: 18px;
    }

    .info-card-footer {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 24px;
    }

    .footer-stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .course-info-tabs-section::before,
    .course-info-tabs-section::after {
        display: none;
    }

    .course-info-card {
        border-radius: 16px;
    }

    .info-tab-btn span {
        display: none;
    }

    .info-tab-btn {
        padding: 12px;
        justify-content: center;
    }

    .info-tab-btn svg {
        width: 22px;
        height: 22px;
    }

    .skills-tags {
        gap: 8px;
    }

    .skill-tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .footer-stat {
        flex: 1 1 100%;
    }
}

/* ========================================
   Course Overview Section - Ultra Modern
   ======================================== */
.course-overview-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.course-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23155dfc' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.course-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.course-overview-header {
    text-align: center;
    margin-bottom: 60px;
}

.overview-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.overview-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.overview-title span {
    color: #155dfc;
}

.overview-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Main Content Grid */
.overview-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    margin-bottom: 24px;
}

/* About the Program Card */
.about-program-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s ease;
}

.about-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon svg {
    width: 28px;
    height: 28px;
    color: #155dfc;
}

.program-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.program-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #155dfc;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
}

.read-more-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.read-more-link:hover svg {
    transform: translateX(4px);
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.program-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8fafc;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.program-tag:hover {
    background: #f0f4ff;
    border-color: #c7d2fe;
    color: #155dfc;
}

.program-tag svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Program Specs Card */
.program-specs-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.program-specs-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.specs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.specs-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.specs-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs-icon svg {
    width: 22px;
    height: 22px;
    color: #b45309;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.spec-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.5;
}

.spec-value.highlight {
    font-size: 20px;
    font-weight: 700;
}

.download-brochure-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.download-brochure-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.download-brochure-cta svg {
    width: 18px;
    height: 18px;
}

/* Secondary Content Grid */
.overview-secondary-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Faculty Excellence Card */
.faculty-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.faculty-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faculty-icon svg {
    width: 24px;
    height: 24px;
    color: #1a1a2e;
}

.faculty-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.faculty-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faculty-description strong {
    color: #1a1a2e;
}

.faculty-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-stack img:hover {
    transform: scale(1.15);
    z-index: 1;
}

.avatar-label {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Toolstack Card */
.toolstack-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.toolstack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.toolstack-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: #ffffff;
    border-color: #ddd;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon svg {
    width: 28px;
    height: 28px;
}

.tool-icon.google-ads {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tool-icon.google-ads svg {
    color: #f59e0b;
}

.tool-icon.semrush {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.tool-icon.semrush svg {
    fill: #ef4444;
}

.tool-icon.pabbly {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.tool-icon.pabbly svg {
    fill: #3b82f6;
}

.tool-icon.meta-ads {
    background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
}

.tool-icon.meta-ads svg {
    fill: #6366f1;
}

.tool-item span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Features Grid */
.overview-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--feature-color, #155dfc), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-modern {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon-modern svg {
    width: 26px;
    height: 26px;
}

.feature-icon-modern.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    --feature-color: #3b82f6;
}

.feature-icon-modern.blue svg {
    color: #2563eb;
}

.feature-icon-modern.green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    --feature-color: #10b981;
}

.feature-icon-modern.green svg {
    color: #059669;
}

.feature-icon-modern.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    --feature-color: #f97316;
}

.feature-icon-modern.orange svg {
    color: #ea580c;
}

.feature-icon-modern.purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    --feature-color: #8b5cf6;
}

.feature-icon-modern.purple svg {
    color: #7c3aed;
}

.feature-card-modern:nth-child(1) { --feature-color: #3b82f6; }
.feature-card-modern:nth-child(2) { --feature-color: #10b981; }
.feature-card-modern:nth-child(3) { --feature-color: #f97316; }
.feature-card-modern:nth-child(4) { --feature-color: #8b5cf6; }

.feature-title-modern {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-desc-modern {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Responsive - Course Overview */
@media (max-width: 1100px) {
    .overview-main-grid {
        grid-template-columns: 1fr 340px;
    }

    .overview-secondary-grid {
        grid-template-columns: 280px 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .overview-main-grid {
        grid-template-columns: 1fr;
    }

    .overview-secondary-grid {
        grid-template-columns: 1fr;
    }

    .overview-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .course-overview-section {
        padding: 70px 0 90px;
    }

    .course-overview-header {
        margin-bottom: 40px;
    }

    .overview-title {
        font-size: 28px;
    }

    .overview-subtitle {
        font-size: 14px;
    }

    .about-program-card,
    .faculty-card,
    .toolstack-card {
        padding: 24px;
    }

    .program-card-title {
        font-size: 20px;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .course-overview-container {
        padding: 0 20px;
    }

    .course-overview-section::before {
        display: none;
    }

    .overview-title {
        font-size: 24px;
    }

    .overview-features-grid {
        grid-template-columns: 1fr;
    }

    .program-tags {
        flex-direction: column;
    }

    .program-tag {
        justify-content: center;
    }

    .tool-item {
        padding: 12px;
    }

    .tool-icon {
        width: 40px;
        height: 40px;
    }

    .tool-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ========================================
   FAQ Section - Ultra Modern
   ======================================== */
.faq-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.faq-bg-gradient {
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-bg-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-title span {
    color: #155dfc;
}

.faq-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 10px 50px rgba(21, 93, 252, 0.1);
    border-color: rgba(21, 93, 252, 0.15);
}

.faq-item.active {
    background: #ffffff;
    box-shadow: 0 15px 60px rgba(21, 93, 252, 0.12);
    border-color: rgba(21, 93, 252, 0.2);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

/* FAQ Icon */
.faq-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-icon svg {
    width: 22px;
    height: 22px;
    color: #6366f1;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #155dfc 0%, #6366f1 100%);
    transform: scale(1.05);
}

.faq-item.active .faq-icon svg {
    color: #ffffff;
}

/* Question Text */
.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #155dfc;
}

/* Toggle Button */
.faq-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.faq-toggle span {
    position: absolute;
    background: #666;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle span:first-child {
    width: 14px;
    height: 2px;
}

.faq-toggle span:last-child {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #155dfc 0%, #6366f1 100%);
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle span {
    background: #ffffff;
}

.faq-item.active .faq-toggle span:last-child {
    height: 0;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 28px 28px;
    padding-left: 96px;
}

.faq-answer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Contact CTA */
.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.faq-cta p {
    font-size: 16px;
    color: #666;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #155dfc 0%, #4f46e5 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(21, 93, 252, 0.35);
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(21, 93, 252, 0.45);
}

.faq-contact-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive - FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0 90px;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question {
        padding: 20px;
        gap: 14px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        padding-left: 20px;
    }

    .faq-answer-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        padding: 18px 16px;
        gap: 12px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .faq-toggle span:first-child {
        width: 12px;
    }

    .faq-toggle span:last-child {
        height: 12px;
    }

    .faq-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .faq-bg-gradient,
    .faq-bg-circle {
        display: none;
    }
}
