/* Enhanced Brand Colors & Design System */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #ec4899;
    --accent-dark: #db2777;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --border: #e2e8f0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 0;
    font-size: 0.75rem;
    position: relative;
    z-index: 1000;
}

.quick-contact-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.foundation-info {
    text-align: center;
    margin-top: 5px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
    line-height: 1;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(37, 99, 235, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.badge-section {
    margin-bottom: 20px;
}

.badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.badge i {
    font-size: 6px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-outline-glow {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    margin-top: 30px;
}

.floating-cards {
    position: relative;
    height: 300px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.floating-card:nth-child(1) {
    top: 10%;
    left: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(236, 72, 153, 0.1));
}

.floating-card:nth-child(2) {
    top: 40%;
    right: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(37, 99, 235, 0.1));
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 10%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(236, 72, 153, 0.1));
}

.course-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.course-info h5 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.salary {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.course-features span {
    font-size: 0.75rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
}

.course-features i {
    margin-right: 5px;
    font-size: 10px;
    color: var(--success);
}

.job-guarantee-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(244, 63, 94, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card-enhanced {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Programs Section */
.programs-section {
    padding: 60px 0;
    background: var(--light);
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}

.program-card.featured {
    border: 2px solid var(--primary);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.program-header {
    margin-bottom: 20px;
    text-align: center;
}

.program-header h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.program-salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.program-details p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.program-details i {
    margin-right: 8px;
    color: var(--primary);
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.program-features span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.program-features i {
    margin-right: 8px;
    color: var(--success);
    font-size: 10px;
}

.program-cta {
    margin-top: 20px;
}

/* Success Stories */
.success-section {
    padding: 60px 0;
    background: white;
}

.success-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
}

.student-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-details h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.student-details p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray);
}

.success-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.placement-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.company {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.salary {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-main:hover {
    transform: scale(1.1);
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.option-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.option-item:last-child {
    margin-bottom: 0;
}

.option-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
}

.option-1 .option-icon { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.option-2 .option-icon { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.option-3 .option-icon { background: rgba(236, 72, 153, 0.1); color: var(--accent); }

.option-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.option-text small {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo h5 {
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.8rem;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
    .quick-contact-bar {
        font-size: 0.8rem;
    }
    
    .foundation-info {
        text-align: right;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .floating-card {
        max-width: 250px;
    }
    
    .floating-card:nth-child(1) {
        top: 20%;
        left: 10%;
    }
    
    .floating-card:nth-child(2) {
        top: 40%;
        right: 15%;
    }
    
    .floating-card:nth-child(3) {
        bottom: 20%;
        left: 20%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-primary-glow,
    .btn-outline-glow {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .quick-contact-bar {
        display: none;
    }

    
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-title {
        background: black !important;
        -webkit-text-fill-color: black !important;
    }
}
/* Programs Page Specific Styles */
.programs-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.min-vh-50 {
    min-height: 50vh;
}

.text-gradient-reverse {
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-stats .stat {
    text-align: center;
    margin-bottom: 20px;
}

.program-stats .stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.program-stats .stat p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 15px;
    border: none;
}

.comparison-table td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--border);
}

.comparison-table tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

/* Program Detail Cards */
.program-detail-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.program-badge {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.program-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.program-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Program CTA Card */
.program-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.program-cta-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.salary-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Application Form */
.application-form .form-control,
.application-form .form-select {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Success Stories Specific Styles */
.success-hero {
    background: linear-gradient(135deg, var(--success), #059669);
}

.success-story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.success-story-card.featured {
    border: 2px solid var(--success);
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.student-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--success);
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark);
}

.student-course {
    color: var(--primary);
    font-weight: 600;
    margin: 5px 0;
}

.student-college {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.story-quote {
    font-style: italic;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--success);
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.3;
}

.placement-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: var(--success);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.placement-info strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.placement-info p {
    margin: 0;
    color: var(--success);
    font-weight: 600;
}

.achievement-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.achievement-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Video Testimonials */
.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    position: relative;
    height: 200px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-placeholder i {
    position: absolute;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: var(--primary);
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    margin-bottom: 5px;
    color: var(--dark);
}

.video-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .program-title {
        font-size: 2rem;
    }
    
    .program-detail-card {
        padding: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .student-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .placement-details {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .programs-hero,
    .success-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .program-stats .row,
    .success-stats .row {
        gap: 15px;
    }
    
    .program-stats .stat,
    .success-stats .stat {
        margin-bottom: 15px;
    }
}

/* Free Resources Specific Styles */
.resources-hero {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
}

.counseling-section {
    padding: 80px 0;
}

.counseling-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h5 {
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.counseling-form {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray);
    margin: 0;
}

/* Resource Cards */
.resource-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.resource-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.resource-files {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.file-link:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-color: var(--primary);
}

.file-link i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Workshop Cards */
.workshop-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.workshop-date {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
    flex-shrink: 0;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.workshop-info {
    flex: 1;
}

.workshop-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.workshop-details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.workshop-details span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.workshop-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--gray), #475569);
}

.contact-method-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.contact-method-card:nth-child(1) .method-icon { background: #25d366; }
.contact-method-card:nth-child(2) .method-icon { background: var(--primary); }
.contact-method-card:nth-child(3) .method-icon { background: var(--accent); }

.contact-method-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-method-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.contact-info strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info p {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-form-card .form-header {
    text-align: left;
    margin-bottom: 25px;
}

.contact-form-card .form-header h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-card .form-header p {
    color: var(--gray);
    margin: 0;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-header h5 {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
}

.location-address {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.location-contact span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timing-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.timing-item:last-child {
    border-bottom: none;
}

.timing-item span:first-child {
    color: var(--gray);
    font-size: 0.9rem;
}

.timing-item span:last-child {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-connect {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link.whatsapp {
    background: #25d366;
    color: white;
}

.quick-link.phone {
    background: var(--primary);
    color: white;
}

.quick-link.counseling {
    background: var(--accent);
    color: white;
}

.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
}

.accordion-body {
    color: var(--gray);
    line-height: 1.6;
    padding: 20px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .counseling-section .row {
        gap: 30px;
    }
    
    .workshop-card {
        flex-direction: column;
        text-align: center;
    }
    
    .workshop-date {
        align-self: center;
    }
    
    .contact-main .row {
        gap: 30px;
    }
    
    .contact-form-card,
    .contact-info-sidebar {
        height: auto;
    }
    
    .quick-connect {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .resources-hero,
    .contact-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .workshop-details {
        justify-content: center;
    }
    
    .contact-method-card {
        padding: 20px;
    }
    
    .quick-connect {
        grid-template-columns: 1fr;
    }
}

/* Internships Page Specific Styles */
.internships-hero {
    background: linear-gradient(135deg, var(--warning), #d97706);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.internship-highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.internship-highlight-card h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
}

.company-info i {
    color: var(--primary);
}

.internship-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.detail-item i {
    width: 20px;
    color: var(--warning);
}

/* Process Steps */
.process-step {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warning), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--warning);
    font-size: 1.8rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.step-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-features li {
    padding: 5px 0;
    color: var(--gray);
    font-size: 0.85rem;
    position: relative;
    padding-left: 15px;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warning), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Internship Cards */
.internship-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.internship-card.featured {
    border: 2px solid var(--warning);
}

.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.internship-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--warning);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
}

.internship-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.company {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.internship-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.internship-details span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.eligibility {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.eligibility-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.skills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.internship-cta {
    margin-top: auto;
}

/* Intern Stories */
.intern-story-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: 100%;
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.student-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--warning);
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.student-info p {
    margin: 5px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.intern-role {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.story-quote {
    font-style: italic;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--warning);
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.3;
}

.placement-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.placement-detail {
    text-align: center;
}

.placement-detail strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.placement-detail span {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Application Form */
.application-form .form-control,
.application-form .form-select {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.application-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.application-form .form-control:focus,
.application-form .form-select:focus {
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.application-form .form-check-input {
    margin-top: 0.3rem;
}

.application-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 15px 20px;
    background: rgba(245, 158, 11, 0.05);
}

.accordion-button:not(.collapsed) {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.accordion-body {
    color: var(--gray);
    line-height: 1.6;
    padding: 20px;
}

.accordion-body ul {
    margin-top: 10px;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 5px;
}

/* Responsive Design for Internships */
@media (max-width: 768px) {
    .internships-hero .row {
        gap: 30px;
    }
    
    .internship-highlight-card {
        margin-top: 30px;
    }
    
    .process-steps .row {
        gap: 20px;
    }
    
    .placement-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .student-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .internships-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .internship-details {
        justify-content: center;
    }
    
    .eligibility,
    .skills {
        justify-content: center;
    }
}

/* Additional Programs Page Styles */
.career-outcomes {
    margin-top: 25px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--success);
}

.career-outcomes h5 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.outcome-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.outcome-tag {
    background: white;
    color: var(--success);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--success);
    transition: all 0.3s ease;
}

.outcome-tag:hover {
    background: var(--success);
    color: white;
    transform: translateY(-2px);
}

/* Curriculum Timeline */
.curriculum-breakdown {
    margin-top: 25px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.curriculum-breakdown h5 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.curriculum-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-phase {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.timeline-duration {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.timeline-topics {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: right;
}

/* Program Features List */
.program-features-list {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: white;
    font-size: 0.9rem;
}

.feature-item i {
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Tech Stack */
.tech-stack {
    margin: 20px 0;
}

.tech-stack h6 {
    color: white;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.tech-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Program CTA Card */
.program-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    position: sticky;
    top: 100px;
}

.program-cta-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.salary-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Program Navigation */
.program-navigation {
    position: sticky;
    top: 80px;
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.program-nav-links {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.program-nav-link {
    padding: 8px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.program-nav-link:hover,
.program-nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Enhanced Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-list i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Design for Programs */
@media (max-width: 992px) {
    .program-cta-card {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .timeline-topics {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .program-detail-card {
        padding: 25px;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-nav-links {
        justify-content: flex-start;
    }
    
    .program-nav-link {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

@media (max-width: 576px) {
    .program-detail-card {
        padding: 20px;
    }
    
    .program-title {
        font-size: 1.8rem;
    }
    
    .outcome-tags {
        justify-content: center;
    }
    
    .tech-icons {
        justify-content: center;
    }
    
    .program-cta-card {
        padding: 20px;
    }
}

