/* Import base styles */
@import url('styles.css');

/* Premium Custom Styles for Program Detail Page */

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 350px;
    z-index: 999;
    animation: slideInRight 0.5s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
}

.notification-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.notification-text strong {
    color: #1e3a5f;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #4b5563;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s;
}

.chat-widget:hover {
    transform: scale(1.1);
}

.chat-widget:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

.chat-icon {
    position: relative;
    color: white;
    font-size: 1.75rem;
}

.chat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    background: #1e3a5f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #1e3a5f;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 5rem 1rem 1rem;
    background: #f9fafb;
    margin-top: 64px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1e3a5f;
}

.breadcrumb .separator {
    color: #9ca3af;
}

.breadcrumb .current {
    color: #1e3a5f;
    font-weight: 600;
}

/* Banner Section */
.banner-section {
    position: relative;
    padding: 6rem 1rem 4rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 50%, #1e3a5f 100%);
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.banner-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(251, 191, 36, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 8s;
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Live Batch Alert */
.live-batch-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s infinite;
}

.live-indicator {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.meta-item i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: white;
}

.banner-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content Layout */
.main-content-section {
    padding: 4rem 0;
    background: #fafafa;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-title i {
    color: #fbbf24;
    font-size: 2rem;
}

.section-description {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Overview Content */
.lead-text {
    font-size: 1.125rem;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight-box {
    display: flex;
    gap: 1rem;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), rgba(30, 58, 95, 0.05));
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.highlight-box i {
    color: #fbbf24;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box strong {
    display: block;
    color: #1e3a5f;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Skills Progress Bars */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 600;
    color: #1f2937;
}

.skill-percentage {
    font-weight: 700;
    color: #fbbf24;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    border-radius: 6px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* Learning Grid */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.learning-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.learning-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.1);
}

.learning-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-icon i {
    font-size: 2rem;
    color: #1e3a5f;
}

.learning-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.learning-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-item:hover {
    background: white;
    border-color: #fbbf24;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #1e3a5f;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Alumni Companies */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.company-logo {
    aspect-ratio: 1;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.company-logo:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.company-placeholder {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1.125rem;
}

/* Success Stories */
.success-stories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.success-story {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
}

.story-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fbbf24;
    flex-shrink: 0;
}

.story-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.story-role {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.story-package {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
}

.story-transformation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.transformation-item {
    padding: 1rem;
    border-radius: 8px;
}

.transformation-item.before {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.transformation-item.after {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.transformation-label {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.transformation-item.before .transformation-label {
    color: #ef4444;
}

.transformation-item.after .transformation-label {
    color: #16a34a;
}

.transformation-item p {
    color: #1f2937;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.transformation-arrow {
    color: #fbbf24;
    font-size: 1.5rem;
}

.story-quote {
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 3px solid #fbbf24;
}

/* Timeline Curriculum */
.curriculum-note {
    display: flex;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.curriculum-note i {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.curriculum-note p {
    color: #1f2937;
    margin: 0;
    line-height: 1.6;
}

.curriculum-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
}

.marker-dot {
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #fbbf24;
    z-index: 2;
}

.marker-dot.last {
    background: #16a34a;
    box-shadow: 0 0 0 2px #16a34a;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: #e5e7eb;
    margin-top: 0.5rem;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2.5rem;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.timeline-month {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-header h3 {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.timeline-duration {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.topic-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.3s;
}

.topic-tag:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

.topic-tag i {
    color: #fbbf24;
}

.timeline-project {
    display: flex;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid #fbbf24;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: #1f2937;
    font-size: 0.875rem;
}

.timeline-project i {
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.tool-item:hover {
    border-color: #fbbf24;
    background: white;
    transform: translateY(-4px);
}

.tool-item i {
    font-size: 2.5rem;
    color: #1e3a5f;
}

.tool-item span {
    font-weight: 600;
    font-size: 0.75rem;
    color: #4b5563;
    text-align: center;
}

/* Price Comparison */
.comparison-table {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-header {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8f);
}

.comparison-cell {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.comparison-cell:last-child {
    border-right: none;
}



.feature-cell {
    font-weight: 600;
    color: #1f2937;
}

.comparison-row {
    background: white;
}

.comparison-row:nth-child(even) {
    background: #f9fafb;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4b5563;
}
.header-cell {
    color: white;
    font-weight: 700;
    text-align: center;
}

.highlight-col {
    background: rgba(251, 191, 36, 0.05) !important;
    border-left: 3px solid #fbbf24;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #16a34a;
}

.price-tag {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.875rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #16a34a;
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #fbbf24;
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-card {
    position: sticky;
    top: 80px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.sticky-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.sticky-card h3 i {
    color: #fbbf24;
}

/* Video Card */
.video-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-description {
    display: flex;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.video-description i {
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Info Card */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    gap: 0.75rem;
}

.info-row i {
    color: #fbbf24;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-row div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-row strong {
    color: #1f2937;
    font-size: 0.875rem;
}

.info-row span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Price Card */
.price-card {
    background: linear-gradient(to bottom, #1e3a5f, #2d5a8f);
    color: white;
    border: none;
}

.price-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #e5e7eb;
    display: block;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 1.125rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin: 0.5rem 0;
}

.price-discount {
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
}

.price-includes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.875rem;
}

.include-item i {
    color: #fbbf24;
}

.price-emi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
    font-size: 0.875rem;
}

.price-emi i {
    color: #fbbf24;
}

/* Download Card */
.download-card {
    text-align: center;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon i {
    font-size: 2.5rem;
    color: #1e3a5f;
}

.download-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Contact Card */
.contact-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

.contact-btn i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #20BA59;
}

.contact-btn.whatsapp i {
    color: white;
}

/* Registration Section */
.registration-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #f9fafb, #fef3c7);
}

.registration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.registration-left h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit i {
    color: #16a34a;
    font-size: 1.25rem;
}

.benefit span {
    color: #1f2937;
    font-weight: 500;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.trust-item i {
    color: #fbbf24;
    font-size: 2rem;
}

.trust-item strong {
    color: #1e3a5f;
    font-size: 1.5rem;
    font-weight: 800;
}

.trust-item span {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Register Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.register-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.register-form label i {
    color: #fbbf24;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.register-form input:focus,
.register-form select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.form-note i {
    color: #16a34a;
}

/* Brochure Modal */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #4b5563;
}

.popup-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.popup-icon i {
    font-size: 2.5rem;
    color: #1e3a5f;
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

#brochureForm {
    padding: 0 2rem 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .right-sidebar {
        grid-row: 1;
    }
    
    .sticky-card {
        position: static;
    }
    
    .banner-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .registration-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {


    .topic-tag {

        width: 100%;
    }
    .feature-item, .highlight-box, .section-title, .story-header, .timeline-project , .curriculum-note , .timeline-header   {

        display: block;
    }





    .banner-title {
        font-size: 1.875rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .banner-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .banner-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-transformation {
        grid-template-columns: 1fr;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        padding: 0.75rem 1rem;
    }
    
    .social-proof-notification {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .chat-widget {
        right: 20px;
        bottom: 20px;
    }
}

@media (min-width: 640px) {
    .banner-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-title {
        font-size: 3.5rem;
    }
}
