/* --- SkillarCode Modern Branding --- */
/* --- EMERGENCY MOBILE FIX --- */

/* --- EMERGENCY MOBILE FIX --- */
@media screen and (max-width: 600px) {
    /* Sabse pehle container ko fix karo */
    .sc-bonus-grid {
        display: block !important; /* Grid ko hata kar block kiya */
        width: 100% !important;
        padding: 10px !important;
        margin: 0 !important;
    }

    /* Har card ko poori screen pe ek dikhao */
    .sc-bonus-card {
        width: 95% !important;
        max-width: none !important;
        margin: 20px auto !important; /* Beech mein lane ke liye */
        display: block !important;
        float: none !important;
    }

    /* Image ko fix karo taaki kategi nahi */
    .sc-bonus-img, .sc-mockup-container img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Footer buttons ko ek ke niche ek laane ke liye */
    .sc-card-footer {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
    }
}

/* Red Cloud Highlight Fix (Har device ke liye) */
.sc-old-price {
    background-color: #ff0000 !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    text-decoration: line-through !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7) !important;
    display: inline-block !important;
    font-weight: bold !important;
}
@media screen and (max-width: 600px) {
    /* Sabse pehle container ko fix karo */
    .sc-bonus-grid {
        display: block !important; /* Grid ko hata kar block kiya */
        width: 100% !important;
        padding: 10px !important;
        margin: 0 !important;
    }

    /* Har card ko poori screen pe ek dikhao */
    .sc-bonus-card {
        width: 95% !important;
        max-width: none !important;
        margin: 20px auto !important; /* Beech mein lane ke liye */
        display: block !important;
        float: none !important;
    }

    /* Image ko fix karo taaki kategi nahi */
    .sc-bonus-img, .sc-mockup-container img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Footer buttons ko ek ke niche ek laane ke liye */
    .sc-card-footer {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
    }
}

/* Red Cloud Highlight Fix (Har device ke liye) */
.sc-old-price {
    background-color: #ff0000 !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    text-decoration: line-through !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7) !important;
    display: inline-block !important;
    font-weight: bold !important;
}
:root {
    --sc-bg-blue: #eaf6ff;
    --sc-white: #ffffff;
    --sc-primary: #007bff;
    --sc-orange: #ff6b00;
    --sc-green: #28a745;
    --sc-dark: #1a202c;
    --sc-text: #4a5568;
    --sc-whatsapp: #1b9c4a;
    --sc-border: #f1f5f9;
    --sc-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Dark Theme Variables */
body.sc-dark-theme {
    --sc-bg-blue: #0f172a;
    --sc-white: #1e293b;
    --sc-dark: #f8f9fa;
    --sc-text: #cbd5e1;
    --sc-border: #334155;
    --sc-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--sc-bg-blue);
    color: var(--sc-text);
}

.sc-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Header Layout --- */
/* --- Header Layout --- */
.sc-header {
    background-color: var(--sc-white);
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--sc-shadow);
    border-bottom: 1px solid var(--sc-border);
}

.sc-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- Left Side (Logo + Nav) --- */
.sc-nav-left {
    display: flex;
    align-items: center;
    gap: 40px; 
}

.sc-logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--sc-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.sc-logo span { color: var(--sc-primary); }

.sc-nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.sc-nav-item {
    text-decoration: none;
    color: var(--sc-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-nav-item:hover { color: var(--sc-primary); }

/* --- NEW: Explore Mega Dropdown --- */
.sc-nav-dropdown-wrapper {
    position: relative;
    padding: 25px 0; /* Smooth hover zone */
}

.sc-drop-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.sc-nav-dropdown-wrapper:hover .sc-drop-icon {
    transform: rotate(180deg);
}

.sc-explore-dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 480px;
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.sc-nav-dropdown-wrapper:hover .sc-explore-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sc-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sc-dropdown-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s;
}

.sc-dropdown-card:hover {
    background: var(--sc-bg-blue);
}

.sc-drop-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.sc-drop-card-info h4 {
    font-size: 14px;
    color: var(--sc-dark);
    margin: 0;
}

.sc-drop-card-info p {
    font-size: 11px;
    color: var(--sc-text);
    margin: 0;
}

/* View All Style */
.sc-view-all-card {
    grid-column: span 2;
    background: #f8f9fa;
    justify-content: center;
}

/* --- Right Side Actions --- */
.sc-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Theme Toggle Fix --- */
.sc-theme-toggle {
    width: 50px;
    height: 26px;
    background-color: #e2e8f0;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.4s ease;
}

body.sc-dark-theme .sc-theme-toggle {
    background-color: var(--sc-primary);
}

.sc-toggle-ball {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden; /* Ye ensure karega ki koi icon bahar na dikhe */
}

body.sc-dark-theme .sc-toggle-ball {
    transform: translateX(24px);
}

/* Icons styling inside the ball */
.sc-sun-icon, .sc-moon-icon {
    font-size: 12px;
    position: absolute; /* Dono ko ek ke upar ek rakha hai */
    transition: all 0.3s ease;
}

.sc-sun-icon {
    color: #f59e0b;
    opacity: 1;
    transform: scale(1);
}

.sc-moon-icon {
    color: #1e293b;
    opacity: 0;
    transform: scale(0) rotate(-45deg); /* Chupa hua */
}

/* Dark mode transitions */
body.sc-dark-theme .sc-sun-icon {
    opacity: 0;
    transform: scale(0) rotate(45deg);
}

body.sc-dark-theme .sc-moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.sc-btn-whatsapp {
    background-color: var(--sc-whatsapp);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

/* --- Mobile Drawer & Submenu --- */
.sc-menu-toggle { display: none; font-size: 22px; cursor: pointer; color: var(--sc-dark); }

.sc-mobile-drawer {
    display: none;
    background: var(--sc-white);
    width: 100%;
    position: absolute; top: 75px; left: 0;
    border-bottom: 1px solid var(--sc-border);
    padding: 20px;
    box-shadow: var(--sc-shadow);
}

.sc-mobile-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
}

.sc-mobile-dropdown.active .sc-mobile-submenu {
    display: block;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .sc-menu-toggle { display: block; }
    .sc-btn-whatsapp span { display: none; }
    .sc-btn-whatsapp { padding: 10px; border-radius: 50%; }
    .sc-nav-left { gap: 0; }
    .sc-mobile-drawer.active { display: block; animation: slideDown 0.3s ease; }
}

/* --- Hero Section Styling --- */
.sc-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark Mode Background adjustment */
body.sc-dark-theme .sc-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.sc-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.sc-badge {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.sc-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--sc-dark);
    margin-bottom: 20px;
}

.sc-hero-title span { color: var(--sc-primary); }

.sc-hero-subtitle {
    font-size: 18px;
    color: var(--sc-text);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

/* Feature Pills Styling */
.sc-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.sc-pill {
    background: var(--sc-white);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid var(--sc-border);
}

.sc-pill-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--sc-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sc-pill span { font-size: 14px; font-weight: 600; color: var(--sc-dark); }

/* --- SkillarCode Premium Button - FINAL FIX --- */
.sc-btn-main {
    background-color: #007bff !important; /* Pure Brand Blue */
    color: #ffffff !important; /* Pure White Text */
    padding: 14px 35px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    cursor: pointer;
    border: none;
    outline: none;
}

/* Hover State - Sabhi modes ke liye fix */
.sc-btn-main:hover {
    background-color: #0056b3 !important; /* Darker Blue on Hover */
    color: #ffffff !important; /* Text Hamesha White rahega */
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.4);
}

/* --- Night Mode Specific Fix --- */
body.sc-dark-theme .sc-btn-main {
    background-color: #007bff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

body.sc-dark-theme .sc-btn-main:hover {
    background-color: #339cff !important; /* Night mode me thoda chamkila blue hover */
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6); /* Glow Effect */
}

/* Right Side Visuals */
/* --- Hero Image Container Fix --- */
.sc-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 450px;
}

.sc-placeholder-vector {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Background Blob Adjustment */
/* Background Blob - Peche rahega */
.sc-blob-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    z-index: 1; /* Image ke niche */
    pointer-events: none;
}

/* Main Hero Image - Blob ke upar */
.sc-main-hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    z-index: 5; /* Sabse upar */
    display: none; /* JS se show karenge loading check ke baad */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Fallback Icon Style */
.sc-vector-icon {
    font-size: 140px;
    color: var(--sc-primary);
    opacity: 0.15;
    position: absolute;
    z-index: 2;
}

/* Animation for Blob */
@keyframes blobMorph {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5px, -10px) scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sc-placeholder-vector {
        height: 350px;
    }
}

.sc-vector-icon { font-size: 180px; color: rgba(0, 123, 255, 0.1); position: absolute; z-index: 1; }

/* Dots Styling */
.sc-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--sc-primary) 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 1;
    opacity: 0.3;
}
.sc-dots-1 { top: -20px; right: 0; }
.sc-dots-2 { bottom: 0; left: 0; }



/* Responsive adjustments */
@media (max-width: 992px) {
    .sc-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .sc-hero-left { display: flex; flex-direction: column; align-items: center; order: 1; }
    .sc-hero-right { order: 2; margin-top: 50px; }
    .sc-feature-pills { justify-content: center; }
    .sc-hero-subtitle { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .sc-main-hero-img { max-width: 320px; }
    .sc-image-container { min-height: 350px; }
}

@media (max-width: 480px) {
    .sc-hero-section { padding-top: 100px; }
    .sc-pill { width: 100%; }
    .sc-placeholder-vector { height: 350px; }
}

/* --- Course Section Styling --- */
.sc-courses-section {
    padding: 80px 0;
    background-color: var(--sc-bg-blue); /* Light or Dark depending on theme */
}

.sc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sc-section-title {
    font-size: 36px;
    color: var(--sc-dark);
    margin-bottom: 10px;
}

.sc-section-title span {
    color: var(--sc-primary);
}

.sc-section-subtitle {
    color: var(--sc-text);
    font-size: 16px;
}

.sc-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* MOBILE FIX: Yahan se copy karein */
@media (max-width: 768px) {
    .sc-course-grid {
        grid-template-columns: 1fr; /* Mobile pe 1 screen pe 1 card */
        gap: 20px;
        padding: 0 10px;
    }
}
}

.sc-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--sc-primary);
}

.sc-card-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}   

.sc-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges */
.sc-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.sc-tag-popular { background: var(--sc-primary); }
.sc-tag-new { background: var(--sc-orange); }

/* Card Content */
.sc-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-course-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--sc-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

/* Rating Style (Udemy Influenced) */
.sc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.sc-rating-value {
    color: #b4690e; /* Golden brown */
    font-weight: 700;
    font-size: 14px;
}

.sc-stars {
    color: #fec107;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.sc-review-count {
    color: var(--sc-text);
    font-size: 13px;
}

/* Pricing Style */
.sc-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.sc-price-discount {
    font-size: 22px;
    font-weight: 700;
    color: var(--sc-dark);
}

.sc-price-original {
    color: var(--sc-text);
    text-decoration: line-through;
    font-size: 14px;
}

.sc-discount-percent {
    color: var(--sc-green);
    font-weight: 600;
    font-size: 14px;
}

/* Actions Style */
.sc-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* --- Course Card Buttons - Fixed Pixel-Perfect Size --- */

.sc-btn-purchase, .sc-btn-details {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; /* Size lock karne ke liye */
    font-size: 15px;
    width: 100%;
}

.sc-btn-purchase {
    background-color: var(--sc-primary);
    color: white;
    /* 1px transparent border height match karne ke liye */
    border: 1px solid transparent; 
}

.sc-btn-purchase:hover {
    background-color: #0056b3;
    color: white;
}

.sc-btn-details {
    background-color: transparent;
    color: var(--sc-primary);
    border: 1px solid var(--sc-primary);
    gap: 5px;
}

.sc-btn-details:hover {
    background-color: rgba(0, 123, 255, 0.05);
    color: var(--sc-primary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sc-card-actions {
        grid-template-columns: 1fr;
    }
    .sc-btn-purchase {
        order: 1;
    }
    .sc-btn-details {
        order: 2;
    }
}

/* --- Category Section Styling --- */
.sc-category-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255, 245, 247, 0.5) 0%, #ffffff 100%);
}

body.sc-dark-theme .sc-category-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.sc-category-header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-upper-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sc-dark);
    margin-bottom: 10px;
    opacity: 0.8;
}

.sc-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--sc-dark);
}

.sc-main-title span {
    color: var(--sc-primary);
}

/* --- Grid Layout --- */
.sc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* --- Premium Category Card --- */
.sc-category-card {
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sc-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    border-color: var(--sc-primary);
}

.sc-cat-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--sc-dark);
    margin: 0;
    transition: color 0.3s;
}

.sc-category-card:hover .sc-cat-name {
    color: var(--sc-primary);
}

/* --- Icon Wrapper with Premium Gradients --- */
.sc-cat-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* 3D Gradient Colors from Image Reference */
.color-1 { background: linear-gradient(135deg, #a78bfa, #7c3aed); } /* Purple */
.color-2 { background: linear-gradient(135deg, #fb923c, #f97316); } /* Orange */
.color-3 { background: linear-gradient(135deg, #94a3b8, #475569); } /* Steel */
.color-4 { background: linear-gradient(135deg, #60a5fa, #2563eb); } /* Blue */
.color-5 { background: linear-gradient(135deg, #f472b6, #db2777); } /* Pink */
.color-6 { background: linear-gradient(135deg, #34d399, #059669); } /* Green */
.color-7 { background: linear-gradient(135deg, #2dd4bf, #0d9488); } /* Teal */
.color-8 { background: linear-gradient(135deg, #9ca3af, #4b5563); } /* Gray */
.color-9 { background: linear-gradient(135deg, #fb7185, #e11d48); } /* Rose */

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .sc-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sc-category-grid { grid-template-columns: 1fr; }
    .sc-main-title { font-size: 28px; }
    .sc-category-card { padding: 20px 25px; }
}


/* --- Comparison Section Styling --- */
.sc-comparison-section {
    padding: 100px 0;
    background-color: #0b0f19; /* Dark Background from Reference */
    color: #ffffff;
}

.sc-comp-header {
    text-align: center;
    margin-bottom: 50px;
}

.sc-comp-subtitle {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sc-comp-title {
    font-size: 40px;
    font-weight: 700;
}

.sc-comp-title span {
    color: #ff8c00; /* Accent Orange */
}

/* --- Table Styles --- */
.sc-table-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.sc-comp-table {
    display: flex;
    flex-direction: column;
}

.sc-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #334155;
    transition: background 0.3s;
}

.sc-table-row:last-child {
    border-bottom: none;
}

.sc-table-row:not(.sc-header-row):hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Header Row Specific */
.sc-header-row {
    background: rgba(15, 23, 42, 0.8);
    font-weight: 600;
    font-size: 16px;
    color: #cbd5e1;
}

.sc-brand-col {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Highlight "Self Seekho" Column */
.sc-brand-col::before {
    content: '';
    position: absolute;
    top: -100px;
    bottom: -500px;
    width: 120%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.sc-brand-logo {
    width: 35px;
    height: 35px;
    background: #e11d48; /* Brand Icon Color */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Icon Styles */
.sc-feature-col {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
}

.sc-icon-success { color: #22c55e; font-size: 22px; filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4)); }
.sc-icon-neutral { color: #64748b; font-size: 20px; opacity: 0.6; }
.sc-icon-fail { color: #475569; font-size: 20px; }

/* --- Footer & Button --- */
.sc-comp-footer {
    text-align: center;
    margin-top: 40px;
}

.sc-btn-explore {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.sc-btn-explore:hover {
    transform: scale(1.05);
    background: #f1f5f9;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .sc-table-container {
        overflow-x: auto;
    }
    .sc-comp-table {
        min-width: 600px;
    }
    .sc-comp-title {
        font-size: 28px;
    }
    .sc-table-row {
        padding: 15px 20px;
    }
}

/* --- Testimonial Section Styling --- */
.sc-testimonial-section {
    padding: 100px 0;
    background-color: var(--sc-white);
}

body.sc-dark-theme .sc-testimonial-section {
    background-color: #0f172a;
}

.sc-badge-alt {
    color: var(--sc-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Grid Layout */
.sc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Testimonial Card */
.sc-testimonial-card {
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.sc-dark-theme .sc-testimonial-card {
    background: #1e293b;
    border-color: #334155;
}

.sc-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    border-color: var(--sc-primary);
}

.sc-quote-mark {
    font-size: 30px;
    color: rgba(0, 123, 255, 0.2);
    margin-bottom: 15px;
}

.sc-feedback-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sc-text);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Student Profile Area */
.sc-student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--sc-border);
    padding-top: 20px;
}

body.sc-dark-theme .sc-student-info {
    border-top-color: #334155;
}

.sc-student-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--sc-primary);
}

.sc-student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-student-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--sc-dark);
    margin-bottom: 2px;
}

.sc-student-role {
    font-size: 13px;
    color: var(--sc-text);
    margin-bottom: 5px;
}

.sc-stars-small {
    color: #fec107;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sc-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sc-testimonial-grid { grid-template-columns: 1fr; }
    .sc-testimonial-section { padding: 60px 0; }
}


/* --- Footer Styling --- */
.sc-footer {
    background-color: #0b0f19; /* Dark Premium Navy */
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid #1e293b;
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Column */
.sc-footer-brand .sc-logo a {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.sc-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #94a3b8;
}

/* Social Icons (SkillSiya Style) */
.sc-social-links {
    display: flex;
    gap: 12px;
}

.sc-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.sc-social-icon:hover {
    background: var(--sc-primary);
    border-color: var(--sc-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Footer Lists */
.sc-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.sc-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--sc-primary);
}

.sc-footer-list {
    list-style: none;
}

.sc-footer-list li {
    margin-bottom: 12px;
}

.sc-footer-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sc-footer-list a:hover {
    color: var(--sc-primary);
    padding-left: 5px;
}

.sc-footer-contact {
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.sc-footer-contact i {
    color: var(--sc-primary);
    margin-right: 8px;
}

/* Footer Bottom */
.sc-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .sc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sc-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sc-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}.sc-bonus-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* PC par 3 photo ek line mein */
    gap: 20px !important;
    padding: 20px !important;
}

/* Mobile Layout (Phone ke liye) */
@media screen and (max-width: 768px) {
    .sc-bonus-grid {
        grid-template-columns: 1fr !important; /* Mobile par 1 photo ek line mein */
        padding: 10px !important;
    }

    .sc-bonus-card {
        width: 100% !important; 
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .sc-bonus-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important; /* Isse image kategi nahi */
    }
}

/* Red Cloud Highlight (₹1299- ke liye) */
.sc-old-price {
    background: #ff0000 !important;
    color: white !important;
    padding: 2px 10px !important;
    border-radius: 50px !important;
    text-decoration: line-through !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
    display: inline-block !important;
    font-weight: bold !important;
}

