/* ========================================
   HERO SECTION V2 - IMPROVED VERSION
   ======================================== */

.hero-section-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 80%, #475569 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background Particles */
.hero-background-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: float-particles 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float-particles {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) translateX(30px) scale(1.2);
        opacity: 0.6;
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.15), transparent 50%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.min-vh-90 {
    min-height: 90vh;
}

/* Announcement Badge */
.hero-announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(220, 38, 38, 0.25));
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    animation: pulse-glow 3s infinite;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-text {
    color: #fff;
    font-size: 0.9rem;
}

.badge-arrow {
    color: #fbbf24;
    font-weight: bold;
}

/* Main Title */
.hero-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 30px 0 35px 0;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
}

.gradient-text-animated {
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #f472b6, #fbbf24, #10b981, #60a5fa);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    font-weight: 900;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Description */
.hero-description {
    font-size: 1.35rem;
    color: #e2e8f0;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
    padding: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 2rem;
    color: #fbbf24;
}

.trust-item div strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-item div span {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
    align-items: center;
}

.btn-hero-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 12px 45px rgba(59, 130, 246, 0.45), 0 6px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: 58px;
}

.btn-hero-primary-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary-v2:hover::before {
    left: 100%;
}

.btn-hero-primary-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
    color: #fff;
}

.btn-hero-secondary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 58px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Quick Stats */
.hero-quick-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Interactive Card */
.hero-interactive-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-header-glow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.45), 0 6px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.header-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.card-header-glow h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-header-glow p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Course Selector Grid */
.course-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    padding: 0;
}

.course-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: 75px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.course-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.course-option:hover::before {
    left: 100%;
}

.course-option:hover {
    transform: translateX(5px);
    border-color: var(--option-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-content {
    flex-grow: 1;
}

.option-content strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.option-content span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.course-option i {
    color: var(--option-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.course-option:hover i {
    opacity: 1;
}

/* Course Option Colors */
.java-option { --option-color: #f89820; }
.python-option { --option-color: #3776ab; }
.frontend-option { --option-color: #61dafb; }
.nodejs-option { --option-color: #68a063; }
.php-option { --option-color: #8892be; }
.database-option { --option-color: #00758f; }

/* Divider */
.divider-with-text {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider-with-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider-with-text span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Options */
.contact-options-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 25px;
    padding: 0;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-btn i {
    font-size: 1.5rem;
}

.contact-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

.call-btn:hover {
    background: #dbeafe;
    border-color: #3b82f6;
}

.call-btn i { color: #3b82f6; }
.call-btn span { color: #1e40af; }

.whatsapp-btn:hover {
    background: #dcfce7;
    border-color: #10b981;
}

.whatsapp-btn i { color: #10b981; }
.whatsapp-btn span { color: #065f46; }

.form-btn:hover {
    background: #fae8ff;
    border-color: #8b5cf6;
}

.form-btn i { color: #8b5cf6; }
.form-btn span { color: #6b21a8; }

/* Live Enrollment Ticker */
.live-enrollment-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-left: 4px solid #10b981;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    margin-top: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-enrollment-ticker small {
    color: #166534;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.float-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.java-float {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.python-float {
    bottom: 20%;
    right: 25%;
    animation-delay: 2s;
}

.code-float {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 3.2rem;
        margin: 25px 0 30px 0;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero-interactive-card {
        margin-top: 50px;
        padding: 35px 30px;
        min-height: 600px;
    }
    
    .hero-quick-stats {
        flex-wrap: wrap;
        padding: 20px 25px;
    }
    
    .hero-trust-row {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section-v2 {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin: 20px 0 25px 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-trust-row {
        gap: 15px;
        justify-content: center;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary-v2,
    .btn-hero-secondary-v2 {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.05rem;
    }
    
    .hero-quick-stats {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .course-selector-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .course-option {
        padding: 16px;
        min-height: 70px;
    }
    
    .contact-options-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-btn {
        padding: 18px;
        min-height: 80px;
    }
    
    .hero-interactive-card {
        padding: 25px 20px;
        min-height: 550px;
        border-radius: 25px;
    }
    
    .card-header-glow {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-elements {
        display: none;
    }
}


/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    color: #10b981;
    font-size: 1rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Hero Benefits */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-benefits li i {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-hero-primary {
    padding: 15px 35px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.5);
    color: #fff;
}

.btn-hero-secondary {
    padding: 15px 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Urgency Element */
.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.hero-urgency i {
    color: #fbbf24;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Lead Capture Card */
.hero-lead-capture-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.card-header-custom {
    text-align: center;
    margin-bottom: 25px;
}

.card-header-custom h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.card-header-custom h3 i {
    color: #3b82f6;
    margin-right: 8px;
}

.card-header-custom p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.lead-form .form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.lead-form .form-select,
.lead-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lead-form .form-select:focus,
.lead-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.btn-lead-submit {
    padding: 14px 25px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(16,185,129,0.3);
    transition: all 0.3s ease;
}

.btn-lead-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16,185,129,0.4);
}

.form-footer-note {
    text-align: center;
    margin-top: 15px;
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-footer-note i {
    color: #10b981;
}

/* Live Activity Ticker */
.live-activity-ticker {
    margin-top: 20px;
    padding: 12px 15px;
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-activity-ticker small {
    color: #166534;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ========================================
   TECHNOLOGY SHOWCASE SECTION
   ======================================== */

.technology-showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

/* Technology Path Cards */
.tech-path-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-gradient);
    transition: height 0.3s ease;
}

.tech-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--card-color);
}

.tech-path-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

/* Card Ribbons */
.card-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-ribbon.trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Technology Icons */
.tech-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-gradient);
    box-shadow: 0 10px 30px var(--card-shadow);
    transition: all 0.3s ease;
}

.tech-icon.large {
    width: 120px;
    height: 120px;
}

.tech-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.tech-icon.large i {
    font-size: 3.5rem;
}

.tech-path-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Technology Specific Colors */
.java-card {
    --card-gradient: linear-gradient(135deg, #f89820, #d14836);
    --card-color: #f89820;
    --card-shadow: rgba(248, 152, 32, 0.3);
}

.python-card {
    --card-gradient: linear-gradient(135deg, #3776ab, #ffd43b);
    --card-color: #3776ab;
    --card-shadow: rgba(55, 118, 171, 0.3);
}

.frontend-card {
    --card-gradient: linear-gradient(135deg, #61dafb, #dd0031);
    --card-color: #61dafb;
    --card-shadow: rgba(97, 218, 251, 0.3);
}

.nodejs-card {
    --card-gradient: linear-gradient(135deg, #68a063, #333);
    --card-color: #68a063;
    --card-shadow: rgba(104, 160, 99, 0.3);
}

.php-card {
    --card-gradient: linear-gradient(135deg, #8892be, #ff2d20);
    --card-color: #8892be;
    --card-shadow: rgba(136, 146, 190, 0.3);
}

.database-card {
    --card-gradient: linear-gradient(135deg, #00758f, #f29111);
    --card-color: #00758f;
    --card-shadow: rgba(0, 117, 143, 0.3);
}

.cloud-card {
    --card-gradient: linear-gradient(135deg, #ff9900, #232f3e);
    --card-color: #ff9900;
    --card-shadow: rgba(255, 153, 0, 0.3);
}

/* Card Title & Subtitle */
.tech-path-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    text-align: center;
}

.tech-path-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Learning Modules */
.learning-modules {
    margin-bottom: 25px;
}

.module-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 3px solid var(--card-color);
    transition: all 0.3s ease;
}

.module-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.module-item i {
    font-size: 1.3rem;
    color: var(--card-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.module-item strong {
    display: block;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 3px;
}

.module-item span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

.module-item.compact {
    padding: 12px;
}

/* Card Stats */
.card-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-stats i {
    color: var(--card-color);
}

.card-stats.vertical {
    flex-direction: column;
    gap: 10px;
    border: none;
    padding: 0;
}

/* Explore Button */
.btn-tech-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 25px;
    background: var(--card-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px var(--card-shadow);
}

.btn-tech-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--card-shadow);
    color: #fff;
    filter: brightness(1.1);
}

.btn-tech-explore i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-tech-explore:hover i {
    transform: translateX(5px);
}

/* Featured Card (Cloud & DevOps) */
.featured-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-lead-capture-card {
        margin-top: 40px;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .tech-path-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section-enhanced {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust-badges {
        gap: 8px;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-lead-capture-card {
        padding: 20px;
    }
    
    .section-header .section-title {
        font-size: 1.75rem;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-icon i {
        font-size: 2rem;
    }
    
    .tech-path-title {
        font-size: 1.3rem;
    }
    
    .module-item {
        padding: 12px;
    }
}

/* ========================================
   BROCHURE DOWNLOAD MODAL STYLES
   ======================================== */

.modal-content-enhanced {
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.modal-header-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 25px 30px;
    position: relative;
}

.modal-header-gradient .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.modal-header-gradient .btn-close {
    background: none;
    border: none;
    color: white;
    opacity: 0.8;
    font-size: 1.2rem;
}

.modal-header-gradient .btn-close:hover {
    opacity: 1;
}

.modal-body-enhanced {
    padding: 30px;
}

.form-label-enhanced {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.form-control-enhanced {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control-enhanced:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
    background: #fff;
}

.privacy-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 15px;
    font-size: 0.85rem;
    color: #0c4a6e;
    line-height: 1.5;
    margin-top: 15px;
}

.benefits-list {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.benefit-icon {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary-enhanced.loading .loading-spinner {
    display: inline-block;
}

.btn-primary-enhanced:not(.loading) .loading-spinner {
    display: none;
}

/* Modal Z-Index */
.modal {
    z-index: 9999;
}

.modal-backdrop {
    z-index: 9998;
}

/* Toast Notifications */
.toast-container {
    z-index: 10000;
}

.toast {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.toast-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 12px 15px;
    font-weight: 600;
}

.toast-body {
    padding: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}
