/* Train & Place Program On-Demand - Custom Styles */

/* Reset and Base Styles */
.train-place-page {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.train-place-page * {
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/train/Train-Place.jpg') center center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
}

/* Alternative overlay options - uncomment to use */
/* 
.hero-section::before {
    background: rgba(255, 255, 255, 0.75); // Lighter overlay
}

.hero-section::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 248, 255, 0.7) 100%); // Gradient overlay
}
*/

.hero-container {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(176, 224, 230, 0.3) 50%, rgba(224, 246, 255, 0.3) 100%);
}

.tower-background {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 400"><rect x="80" y="0" width="40" height="400" fill="%23C0C0C0" opacity="0.4"/><rect x="70" y="50" width="60" height="20" fill="%23A0A0A0" opacity="0.5"/><rect x="60" y="100" width="80" height="20" fill="%23A0A0A0" opacity="0.5"/><rect x="50" y="150" width="100" height="20" fill="%23A0A0A0" opacity="0.5"/><circle cx="100" cy="200" r="30" fill="%23B0B0B0" opacity="0.4"/><rect x="90" y="250" width="20" height="150" fill="%23C0C0C0" opacity="0.4"/></svg>') no-repeat left bottom;
    background-size: contain;
    opacity: 0.7;
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    align-items: center;
}

/* Text Content */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.program-title h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e3a8a;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.program-subtitle h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 40px 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.9);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30,58,138,0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,58,138,0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    padding: 15px 35px;
    border: 2px solid #1e3a8a;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,58,138,0.3);
    text-decoration: none;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.human-placeholder {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 690px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-human {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-human:hover {
    transform: scale(1.02);
}

/* Fully Funded Badge */
.funded-badge {
    position: absolute;
    top: 80px;
    right: 80px;
    z-index: 4;
    background: #ff4848;
    color: #ffd261;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(243, 63, 63, 0.4);
    border: 3px solid #fbbf24;
    transform: rotate(-5deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
    100% { transform: rotate(-5deg) scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .program-title h1 {
        font-size: 2.8rem;
    }
    
    .program-subtitle h2 {
        font-size: 1.2rem;
    }
    
    .funded-badge {
        top: 60px;
        right: 40px;
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .program-title h1 {
        font-size: 2.2rem;
    }
    
    .program-subtitle h2 {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .human-placeholder {
        height: 300px;
    }
    
    .funded-badge {
        top: 40px;
        right: 20px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    /* Hide hero image on mobile */
    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .program-title h1 {
        font-size: 1.8rem;
    }
    
    .program-subtitle h2 {
        font-size: 0.9rem;
    }
    
    .human-placeholder {
        height: 250px;
    }
    
    .funded-badge {
        top: 20px;
        right: 10px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Program Overview Section */
.program-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.program-overview .container {
    position: relative;
    z-index: 2;
}

/* Left Column - Text Content */
.overview-content {
    padding: 40px 20px;
}

.logo-section {
    margin-bottom: 30px;
}

.mymahir-logo {
    max-width: 200px;
    height: auto;
    filter: invert(1);
}

.overview-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overview-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Right Column - Photo Collage */
.photo-collage {
    padding: 20px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 80px);
    gap: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.collage-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid Layout - Specific positioning for each item */
.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 5; grid-row: 1 / 2; }

.item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-6 { grid-column: 3 / 4; grid-row: 2 / 3; }
.item-7 { grid-column: 4 / 5; grid-row: 2 / 3; }

.item-8 { grid-column: 1 / 2; grid-row: 3 / 4; }
.item-9 { grid-column: 2 / 3; grid-row: 3 / 4; }
.item-10 { grid-column: 3 / 4; grid-row: 3 / 4; }
.item-11 { grid-column: 4 / 5; grid-row: 3 / 4; }

.item-12 { grid-column: 1 / 2; grid-row: 4 / 5; }
.item-13 { grid-column: 2 / 3; grid-row: 4 / 5; }
.item-14 { grid-column: 3 / 4; grid-row: 4 / 5; }
.item-15 { grid-column: 4 / 5; grid-row: 4 / 5; }

.item-16 { grid-column: 1 / 2; grid-row: 5 / 6; }
.item-17 { grid-column: 2 / 3; grid-row: 5 / 6; }
.item-18 { grid-column: 3 / 4; grid-row: 5 / 6; }

.item-19 { grid-column: 1 / 3; grid-row: 6 / 7; }

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border: 3px solid #fbbf24;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.highlight-content h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 0 0 3px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.highlight-content h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive Design for Overview Section */
@media (max-width: 992px) {
    .program-overview {
        padding: 60px 0;
    }
    
    .overview-content {
        padding: 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .overview-title h2 {
        font-size: 2rem;
    }
    
    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(8, 70px);
        gap: 6px;
    }
    
    /* Reorganize grid for tablet */
    .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
    
    .item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .item-6 { grid-column: 3 / 4; grid-row: 2 / 3; }
    
    .item-7 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .item-8 { grid-column: 2 / 3; grid-row: 3 / 4; }
    .item-9 { grid-column: 3 / 4; grid-row: 3 / 4; }
    
    .item-10 { grid-column: 1 / 2; grid-row: 4 / 5; }
    .item-11 { grid-column: 2 / 3; grid-row: 4 / 5; }
    .item-12 { grid-column: 3 / 4; grid-row: 4 / 5; }
    
    .item-13 { grid-column: 1 / 2; grid-row: 5 / 6; }
    .item-14 { grid-column: 2 / 3; grid-row: 5 / 6; }
    .item-15 { grid-column: 3 / 4; grid-row: 5 / 6; }
    
    .item-16 { grid-column: 1 / 2; grid-row: 6 / 7; }
    .item-17 { grid-column: 2 / 3; grid-row: 6 / 7; }
    .item-18 { grid-column: 3 / 4; grid-row: 6 / 7; }
    
    .item-19 { grid-column: 1 / 4; grid-row: 7 / 8; }
}

@media (max-width: 768px) {
    .program-overview {
        padding: 40px 0;
    }
    
    .overview-title h2 {
        font-size: 1.8rem;
    }
    
    .overview-description p {
        font-size: 1rem;
    }
    
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(10, 60px);
        gap: 4px;
    }
    
    /* Reorganize grid for mobile */
    .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .item-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .item-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .item-5 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .item-6 { grid-column: 2 / 3; grid-row: 3 / 4; }
    .item-7 { grid-column: 1 / 2; grid-row: 4 / 5; }
    .item-8 { grid-column: 2 / 3; grid-row: 4 / 5; }
    .item-9 { grid-column: 1 / 2; grid-row: 5 / 6; }
    .item-10 { grid-column: 2 / 3; grid-row: 5 / 6; }
    .item-11 { grid-column: 1 / 2; grid-row: 6 / 7; }
    .item-12 { grid-column: 2 / 3; grid-row: 6 / 7; }
    .item-13 { grid-column: 1 / 2; grid-row: 7 / 8; }
    .item-14 { grid-column: 2 / 3; grid-row: 7 / 8; }
    .item-15 { grid-column: 1 / 2; grid-row: 8 / 9; }
    .item-16 { grid-column: 2 / 3; grid-row: 8 / 9; }
    .item-17 { grid-column: 1 / 2; grid-row: 9 / 10; }
    .item-18 { grid-column: 2 / 3; grid-row: 9 / 10; }
    .item-19 { grid-column: 1 / 3; grid-row: 10 / 11; }
    
    .highlight-content h4 {
        font-size: 0.6rem;
    }
    
    .highlight-content h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .overview-title h2 {
        font-size: 1.5rem;
    }
    
    .mymahir-logo {
        max-width: 150px;
    }
    
    .collage-grid {
        grid-template-rows: repeat(10, 50px);
    }
}

/* Program Objectives Section */
.program-objectives {
    padding: 100px 0;
    background: url('../img/banner/5g-tower-background.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.program-objectives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.program-objectives .container {
    position: relative;
    z-index: 2;
}

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

.objectives-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.title-line {
    width: 200px;
    height: 3px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 2px;
}

/* Objectives Container */
.objectives-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Connector Line */
.connector-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #1a1a1a 0px,
        #1a1a1a 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.connector-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    left: -7px;
    z-index: 2;
}

.dot-1 { top: 60px; }
.dot-2 { top: 200px; }
.dot-3 { top: 340px; }
.dot-4 { top: 480px; }

/* Objectives List */
.objectives-list {
    position: relative;
    z-index: 3;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.objective-item > * {
    position: relative;
    z-index: 2;
}

/* Objective Colors */
.objective-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.objective-2 {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
}

.objective-3 {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}

.objective-4 {
    background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
    color: white;
}

/* Objective Icon */
.objective-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.objective-icon i {
    font-size: 2rem;
    color: white;
}

/* Objective Content */
.objective-content {
    flex: 1;
}

.objective-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.objective-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Responsive Design for Objectives */
@media (max-width: 992px) {
    .program-objectives {
        padding: 80px 0;
    }
    
    .objectives-header h2 {
        font-size: 2.5rem;
    }
    
    .objectives-container {
        max-width: 90%;
    }
    
    .connector-line {
        left: 30px;
    }
    
    .connector-dot {
        left: -6px;
        width: 14px;
        height: 14px;
    }
    
    .objective-item {
        padding: 25px;
        margin-bottom: 50px;
    }
    
    .objective-icon {
        width: 70px;
        height: 70px;
        margin-right: 25px;
    }
    
    .objective-icon i {
        font-size: 1.8rem;
    }
    
    .objective-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .program-objectives {
        padding: 60px 0;
    }
    
    .objectives-header {
        margin-bottom: 60px;
    }
    
    .objectives-header h2 {
        font-size: 2rem;
    }
    
    .title-line {
        width: 150px;
    }
    
    .connector-line {
        left: 25px;
    }
    
    .connector-dot {
        left: -5px;
        width: 12px;
        height: 12px;
    }
    
    .dot-1 { top: 50px; }
    .dot-2 { top: 180px; }
    .dot-3 { top: 310px; }
    .dot-4 { top: 440px; }
    
    .objective-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .objective-icon {
        margin: 0 auto 20px auto;
        width: 60px;
        height: 60px;
    }
    
    .objective-icon i {
        font-size: 1.5rem;
    }
    
    .objective-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .objective-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .objectives-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .title-line {
        width: 120px;
        height: 2px;
    }
    
    .connector-line {
        left: 20px;
    }
    
    .connector-dot {
        left: -4px;
        width: 10px;
        height: 10px;
    }
    
    .objective-item {
        padding: 25px 15px;
        margin-bottom: 35px;
    }
    
    .objective-icon {
        width: 50px;
        height: 50px;
    }
    
    .objective-icon i {
        font-size: 1.3rem;
    }
    
    .objective-content h3 {
        font-size: 1.1rem;
    }
    
    .objective-content p {
        font-size: 0.9rem;
    }
}

/* Eligibility Section */
.eligibility-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.eligibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.eligibility-section .container {
    position: relative;
    z-index: 2;
}

/* Browser Frame */
.browser-frame {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.browser-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.browser-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.browser-controls {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.control-btn.close {
    background: #ff5f57;
}

.control-btn.minimize {
    background: #ffbd2e;
}

.control-btn.maximize {
    background: #28ca42;
}

.browser-bar {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.browser-content {
    position: relative;
    overflow: hidden;
}

.training-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.browser-frame:hover .training-image {
    transform: scale(1.05);
}

/* Eligibility Content */
.eligibility-content {
    padding: 40px 20px;
}

.eligibility-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 50px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.criteria-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.criteria-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Register Button */
.register-button-container {
    text-align: right;
}

.btn-register {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-register:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Responsive Design for Eligibility */
@media (max-width: 992px) {
    .eligibility-section {
        padding: 80px 0;
    }
    
    .eligibility-content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .eligibility-title h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .criteria-grid {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .criteria-card {
        padding: 20px 15px;
        min-height: 100px;
    }
    
    .criteria-card h4 {
        font-size: 0.9rem;
    }
    
    .register-button-container {
        text-align: center;
    }
    
    .browser-frame {
        max-width: 400px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .eligibility-section {
        padding: 60px 0;
    }
    
    .eligibility-title h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .criteria-card {
        padding: 20px;
        min-height: 80px;
    }
    
    .criteria-card h4 {
        font-size: 0.85rem;
    }
    
    .btn-register {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .browser-frame {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .eligibility-section {
        padding: 50px 0;
    }
    
    .eligibility-title h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .criteria-grid {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .criteria-card {
        padding: 15px;
        min-height: 70px;
    }
    
    .criteria-card h4 {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .btn-register {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .browser-frame {
        max-width: 300px;
    }
    
    .browser-header {
        padding: 12px 15px;
    }
    
    .control-btn {
        width: 10px;
        height: 10px;
    }
}

/* Program Implementation Section */
.program-implementation {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.program-implementation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0 L20 10 M0 20 L10 20 M30 20 L40 20 M20 30 L20 40" stroke="rgba(59,130,246,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.program-implementation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.program-implementation .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.implementation-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.implementation-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px 0;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.implementation-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.implementation-header .title-line {
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #7c3aed, transparent);
    margin: 40px auto 0;
    border-radius: 1px;
    opacity: 0.6;
}

/* Implementation Timeline */
.implementation-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Timeline Step */
.timeline-step {
    flex: 1;
    max-width: 350px;
    min-height: 400px;
    position: relative;
    margin: 0 15px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.timeline-step:hover {
    transform: translateY(-15px);
}

/* Step Colors */
.step-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

.step-2 {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.step-3 {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

/* Step Structure */
.timeline-step {
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.timeline-step:hover::after {
    opacity: 1;
}

.timeline-step:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.timeline-step > * {
    position: relative;
    z-index: 2;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 4px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.timeline-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.9);
    border-color: #3b82f6;
}

/* Step Icon */
.step-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    z-index: 10;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.9);
    border-color: #3b82f6;
}

.step-icon i {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.timeline-step:hover .step-icon i {
    color: #3b82f6;
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Specific icon styling for better visibility */
.step-1 .step-icon i {
    color: #1e3a8a;
}

.step-2 .step-icon i {
    color: #2563eb;
}

.step-3 .step-icon i {
    color: #7c3aed;
}

/* Step Content */
.step-content {
    margin-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-details li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.step-details li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Step Connectors */
.step-connector {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 20%, 
        rgba(59, 130, 246, 0.6) 50%, 
        rgba(59, 130, 246, 0.3) 80%, 
        transparent 100%
    );
    border-radius: 2px;
    z-index: 3;
    animation: pulse-connector 2s ease-in-out infinite;
}

@keyframes pulse-connector {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.connector-right {
    right: -60px;
    left: auto;
    transform: none;
}

.connector-left {
    left: -60px;
    transform: none;
}

.connector-both {
    width: 240px;
    left: -60px;
}

.connector-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

.step-1 .connector-dot {
    border-color: #1e3a8a;
}

.step-2 .connector-dot {
    border-color: #2563eb;
}

.step-3 .connector-dot {
    border-color: #7c3aed;
}

/* Responsive Design for Implementation */
@media (max-width: 992px) {
    .program-implementation {
        padding: 80px 0;
    }
    
    .implementation-header h2 {
        font-size: 2.5rem;
    }
    
    .implementation-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .timeline-step {
        max-width: 400px;
        margin: 0;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number {
        top: -20px;
        left: 20px;
    }
    
    .step-icon {
        top: -20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .program-implementation {
        padding: 60px 0;
    }
    
    .implementation-header {
        margin-bottom: 60px;
    }
    
    .implementation-header h2 {
        font-size: 2rem;
    }
    
    .implementation-header .title-line {
        width: 150px;
    }
    
    .timeline-step {
        max-width: 350px;
        padding: 25px 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-details li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .program-implementation {
        padding: 50px 0;
    }
    
    .implementation-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .implementation-header .title-line {
        width: 120px;
        height: 2px;
    }
    
    .timeline-step {
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-details li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -15px;
        left: 15px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        top: -15px;
        right: 15px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
}

/* Career Path Section */
.career-path-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.career-path-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="career-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23career-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.career-path-section .container {
    position: relative;
    z-index: 2;
}

/* Left Column - Career Path Content */
.career-path-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.career-path-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.career-path-content > * {
    position: relative;
    z-index: 2;
}

.career-path-title h2 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0 0 30px 0;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.career-path-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 500;
}

.career-path-image {
    margin-top: auto;
}

.professionals-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.professionals-image:hover {
    transform: scale(1.02);
}

/* Right Column - Career Path Grid */
.career-path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
    height: 100%;
    padding: 20px;
}

.career-card {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.career-card:hover::before {
    opacity: 1;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.career-card > * {
    position: relative;
    z-index: 2;
}

.career-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Career Card Colors */
.card-1 {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
}

.card-2 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

.card-3 {
    background: linear-gradient(135deg, #8bc5ff 0%, #6db3fd 100%);
    color: white;
}

.card-4 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.card-5 {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
}

.card-6 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.card-7 {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
}

.card-8 {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
}

.card-9 {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
}

.card-10 {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    color: white;
}

/* Responsive Design for Career Path */
@media (max-width: 992px) {
    .career-path-section {
        padding: 80px 0;
    }
    
    .career-path-content {
        padding: 50px 30px;
        margin-bottom: 40px;
    }
    
    .career-path-title h2 {
        font-size: 3.5rem;
    }
    
    .career-path-description p {
        font-size: 1rem;
    }
    
    .career-path-grid {
        gap: 12px;
        padding: 15px;
    }
    
    .career-card {
        padding: 18px 12px;
    }
    
    .career-card h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .career-path-section {
        padding: 60px 0;
    }
    
    .career-path-content {
        padding: 40px 25px;
        margin-bottom: 30px;
    }
    
    .career-path-title h2 {
        font-size: 3rem;
    }
    
    .career-path-description p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .career-path-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .career-card {
        padding: 15px 10px;
    }
    
    .career-card h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .career-path-section {
        padding: 50px 0;
    }
    
    .career-path-content {
        padding: 30px 20px;
    }
    
    .career-path-title h2 {
        font-size: 2.5rem;
    }
    
    .career-path-description p {
        font-size: 0.9rem;
    }
    
    .career-card {
        padding: 12px 8px;
    }
    
    .career-card h4 {
        font-size: 0.8rem;
    }
}

/* Industry Certifications Section */
.industry-certifications {
    padding: 100px 0;
    background: url('../img/banner/5g-tower-certifications.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.industry-certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.9) 100%);
    z-index: 1;
}

.industry-certifications .container {
    position: relative;
    z-index: 2;
}

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

.certifications-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.qualcomm-logo, .lablabee-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.certification-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.certification-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.certification-card > * {
    position: relative;
    z-index: 2;
}

.cert-image {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.certification-card:hover .cert-img {
    transform: scale(1.1);
}

.cert-content {
    padding: 15px 12px;
    text-align: center;
}

.cert-content h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

/* Register Button */
.certifications-cta {
    text-align: center;
}

.btn-register-cert {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-register-cert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-register-cert:hover::before {
    left: 100%;
}

.btn-register-cert:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Design for Certifications */
@media (max-width: 992px) {
    .industry-certifications {
        padding: 80px 0;
    }
    
    .certifications-header h2 {
        font-size: 2.2rem;
    }
    
    .certification-logos {
        gap: 40px;
    }
    
    .logo-item {
        padding: 15px;
    }
    
    .qualcomm-logo, .lablabee-logo {
        height: 50px;
        max-width: 180px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .cert-image {
        height: 100px;
    }
    
    .cert-content {
        padding: 12px 10px;
    }
    
    .cert-content h3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .industry-certifications {
        padding: 60px 0;
    }
    
    .certifications-header {
        margin-bottom: 50px;
    }
    
    .certifications-header h2 {
        font-size: 2rem;
    }
    
    .certification-logos {
        gap: 30px;
        flex-direction: column;
    }
    
    .logo-item {
        padding: 12px;
    }
    
    .qualcomm-logo, .lablabee-logo {
        height: 45px;
        max-width: 160px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .cert-image {
        height: 80px;
    }
    
    .cert-content {
        padding: 10px 8px;
    }
    
    .cert-content h3 {
        font-size: 0.6rem;
    }
    
    .btn-register-cert {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .industry-certifications {
        padding: 50px 0;
    }
    
    .certifications-header h2 {
        font-size: 1.8rem;
    }
    
    .certification-logos {
        gap: 20px;
    }
    
    .logo-item {
        padding: 10px;
    }
    
    .qualcomm-logo, .lablabee-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .cert-image {
        height: 70px;
    }
    
    .cert-content {
        padding: 8px 6px;
    }
    
    .cert-content h3 {
        font-size: 0.55rem;
    }
    
    .btn-register-cert {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Program Modules Section */
.program-modules {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.program-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modules-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(59,130,246,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(139,92,246,0.1)"/><circle cx="35" cy="35" r="1.5" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23modules-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.program-modules .container {
    position: relative;
    z-index: 2;
}

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

.modules-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.modules-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.modules-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 30px 0 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Module Sections */
.module-section {
    margin-bottom: 80px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.module-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.module-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.module-image {
    display: flex;
    align-items: center;
}

.module-img {
    max-height: 60px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.partner-logo {
    display: flex;
    align-items: center;
}

.qualcomm-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.qualcomm-partner-logo {
    display: flex;
    align-items: center;
}

.qualcomm-academy-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.module-content {
    padding: 40px;
}

/* Module Layout for Image + Content */
.module-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.module-layout .module-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-layout .module-img {
    max-height: 300px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.module-layout .module-img:hover {
    transform: scale(1.05);
}

/* NDP Module Card */
.ndp-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.ndp-card .card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ndp-card .card-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ndp-card .card-content {
    padding: 30px;
}

.ndp-card .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ndp-card .card-content li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.ndp-card .card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Qualcomm Certification Grid */
.qualcomm-certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.qualcomm-cert-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.qualcomm-cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.qualcomm-cert-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 15px 25px;
    text-align: center;
}

.qualcomm-cert-banner h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.qualcomm-cert-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qualcomm-cert-image {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qualcomm-cert-img {
    width: 100%;
    height: auto;
    display: block;
}

.qualcomm-cert-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 10px 0;
}

.qualcomm-cert-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Cloud Modules Grid */
.cloud-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cloud-module-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cloud-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.4);
}

.cloud-card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cloud-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.cloud-card-content {
    padding: 25px;
}

.cloud-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cloud-card-content li {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.cloud-card-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* IIoT Modules Grid */
.iiot-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.iiot-module-card {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iiot-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
}

.iiot-card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.iiot-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.iiot-card-content {
    padding: 25px;
}

.iiot-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iiot-card-content li {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.iiot-card-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design for Program Modules */
@media (max-width: 992px) {
    .program-modules {
        padding: 80px 0;
    }
    
    .modules-header h2 {
        font-size: 2.4rem;
    }
    
    .modules-header p {
        font-size: 1.1rem;
    }
    
    .module-header {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .module-header h3 {
        font-size: 1.6rem;
    }
    
    .module-content {
        padding: 30px;
    }
    
    .module-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .module-layout .module-img {
        max-height: 250px;
    }
    
    .qualcomm-certification-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cloud-modules-grid,
    .iiot-modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .program-modules {
        padding: 60px 0;
    }
    
    .modules-header {
        margin-bottom: 60px;
    }
    
    .modules-header h2 {
        font-size: 2.2rem;
    }
    
    .modules-header p {
        font-size: 1rem;
    }
    
    .module-section {
        margin-bottom: 60px;
    }
    
    .module-header {
        padding: 20px 25px;
    }
    
    .module-header h3 {
        font-size: 1.4rem;
    }
    
    .module-content {
        padding: 25px;
    }
    
    .module-layout {
        gap: 25px;
    }
    
    .module-layout .module-img {
        max-height: 200px;
    }
    
    .ndp-card .card-content,
    .cloud-card-content,
    .iiot-card-content {
        padding: 20px;
    }
    
    .qualcomm-cert-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .program-modules {
        padding: 50px 0;
    }
    
    .modules-header h2 {
        font-size: 2rem;
    }
    
    .module-header {
        padding: 15px 20px;
    }
    
    .module-header h3 {
        font-size: 1.3rem;
    }
    
    .module-content {
        padding: 20px;
    }
    
    .module-layout {
        gap: 20px;
    }
    
    .module-layout .module-img {
        max-height: 180px;
    }
    
    .ndp-card .card-content,
    .cloud-card-content,
    .iiot-card-content {
        padding: 15px;
    }
    
    .qualcomm-cert-details {
        padding: 15px;
    }
    
    .qualcomm-cert-image {
        max-width: 220px;
    }
}

/* LabLabee Hands-on Training Section */
.lablabee-training {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.lablabee-training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lablabee-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23lablabee-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.lablabee-training .container {
    position: relative;
    z-index: 2;
}

/* LabLabee Header */
.lablabee-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lablabee-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lablabee-logo {
    max-height: 80px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

.lablabee-logo:hover {
    transform: scale(1.1);
}

.lablabee-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.lablabee-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Learning Paths */
.learning-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.learning-path {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-path:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.path-header {
    text-align: center;
    margin-bottom: 40px;
}

.path-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.path-header h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.project-number {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.project-content {
    flex: 1;
}

.project-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.project-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for LabLabee Training */
@media (max-width: 992px) {
    .lablabee-training {
        padding: 80px 0;
    }
    
    .lablabee-header {
        margin-bottom: 60px;
        gap: 25px;
    }
    
    .lablabee-title h2 {
        font-size: 2.5rem;
    }
    
    .lablabee-title h3 {
        font-size: 1.5rem;
    }
    
    .learning-paths {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .learning-path {
        padding: 30px;
    }
    
    .path-header h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .lablabee-training {
        padding: 60px 0;
    }
    
    .lablabee-header {
        margin-bottom: 50px;
        gap: 20px;
    }
    
    .lablabee-logo {
        max-height: 60px;
    }
    
    .lablabee-title h2 {
        font-size: 2.2rem;
    }
    
    .lablabee-title h3 {
        font-size: 1.3rem;
    }
    
    .learning-paths {
        gap: 30px;
    }
    
    .learning-path {
        padding: 25px;
    }
    
    .path-header {
        margin-bottom: 30px;
    }
    
    .path-header h4 {
        font-size: 1.4rem;
    }
    
    .projects-grid {
        gap: 20px;
    }
    
    .project-card {
        padding: 20px;
        gap: 15px;
    }
    
    .project-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .project-content h5 {
        font-size: 1.1rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lablabee-training {
        padding: 50px 0;
    }
    
    .lablabee-header {
        margin-bottom: 40px;
        gap: 15px;
    }
    
    .lablabee-logo {
        max-height: 50px;
    }
    
    .lablabee-title h2 {
        font-size: 1.8rem;
    }
    
    .lablabee-title h3 {
        font-size: 1.1rem;
    }
    
    .learning-path {
        padding: 20px;
    }
    
    .path-header h4 {
        font-size: 1.2rem;
    }
    
    .projects-grid {
        gap: 15px;
    }
    
    .project-card {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .project-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .project-content h5 {
        font-size: 1rem;
    }
    
    .project-content p {
        font-size: 0.85rem;
    }
}

/* Why Joining This Program Section */
.why-joining-program {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.why-joining-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="35" cy="35" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23why-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-joining-program .container {
    position: relative;
    z-index: 2;
}

/* Why Header */
.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.why-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-height: 100px;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Why CTA */
.why-cta {
    text-align: center;
}

.btn-join-now {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-join-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-join-now:hover::before {
    left: 100%;
}

.btn-join-now:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Design for Why Joining Program */
@media (max-width: 992px) {
    .why-joining-program {
        padding: 80px 0;
    }
    
    .why-header {
        margin-bottom: 60px;
    }
    
    .why-header h2 {
        font-size: 3rem;
    }
    
    .why-subtitle {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .benefit-card {
        padding: 20px;
        gap: 15px;
        min-height: 90px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .why-joining-program {
        padding: 60px 0;
    }
    
    .why-header {
        margin-bottom: 50px;
    }
    
    .why-header h2 {
        font-size: 2.5rem;
    }
    
    .why-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 18px;
        gap: 12px;
        min-height: 80px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-content h3 {
        font-size: 0.9rem;
    }
    
    .btn-join-now {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .why-joining-program {
        padding: 50px 0;
    }
    
    .why-header h2 {
        font-size: 2rem;
    }
    
    .why-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 15px;
        min-height: 70px;
    }
    
    .benefit-content h3 {
        font-size: 0.8rem;
    }
    
    .btn-join-now {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Get In Touch Section */
.get-in-touch {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="touch-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(139,92,246,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(168,85,247,0.1)"/><circle cx="40" cy="40" r="1.5" fill="rgba(139,92,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23touch-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.get-in-touch .container {
    position: relative;
    z-index: 2;
}

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

.touch-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #7c3aed;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(124, 58, 237, 0.2);
}

.whatsapp-instruction {
    font-size: 1.4rem;
    font-weight: 700;
    color: #7c3aed;
    margin: 0;
    letter-spacing: 1px;
}

/* Touch Content */
.touch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* WhatsApp Section */
.whatsapp-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #2c2c2e 0%, #1c1c1e 50%, #000000 100%);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    border: 2px solid rgba(255,255,255,0.05);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #1c1c1e 0%, #2c2c2e 50%, #1c1c1e 100%);
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1c1c1e 0%, #000000 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 2px rgba(0,0,0,0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 32px;
    padding: 25px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
    z-index: 1;
}

.chat-interface {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.chat-message {
    display: flex;
    margin-bottom: 10px;
}

.chat-message.received {
    justify-content: flex-start;
}

.chat-message.sent {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.chat-message.received .message-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.chat-message.sent .message-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.message-bubble p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    color: #666;
    display: block;
    text-align: right;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.contact-person {
    position: relative;
    z-index: 2;
}

/* Design elements behind the person photo */
.contact-person::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: -1;
    opacity: 0.8;
}

.contact-person::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -120px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border-radius: 15px;
    transform: rotate(-10deg);
    z-index: -1;
    opacity: 0.6;
}

.person-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 5px solid #7c3aed;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
}

.person-photo:hover {
    transform: scale(1.05);
}

.contact-info {
    text-align: center;
    background: rgba(124, 58, 237, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7c3aed;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(124, 58, 237, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item i {
    color: #7c3aed;
    font-size: 1.2rem;
}

/* Touch Bottom */
.touch-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qr-image {
    width: 120px;
    height: 120px;
    display: block;
}

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-register {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-register:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
    text-decoration: none;
    color: white;
}

.btn-more-info {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #7c3aed;
    transition: all 0.3s ease;
}

.btn-more-info:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    text-decoration: none;
}

/* Responsive Design for Get In Touch */
@media (max-width: 992px) {
    .get-in-touch {
        padding: 80px 0;
    }
    
    .touch-header h2 {
        font-size: 2.5rem;
    }
    
    .whatsapp-instruction {
        font-size: 1.2rem;
    }
    
    .touch-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 450px;
        border-radius: 35px;
        padding: 7px;
    }
    
    .phone-screen {
        border-radius: 28px;
        padding: 22px 18px 18px 18px;
    }
    
    .phone-mockup::before {
        width: 100px;
        height: 5px;
        top: 12px;
    }
    
    .phone-mockup::after {
        width: 7px;
        height: 7px;
        top: 22px;
    }
    
    .person-photo {
        width: 250px;
        height: 250px;
    }
    
    .contact-person::before {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -60px;
    }
    
    .contact-person::after {
        width: 120px;
        height: 120px;
        top: -25px;
        right: -90px;
    }
    
    .touch-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: 60px 0;
    }
    
    .touch-header {
        margin-bottom: 50px;
    }
    
    .touch-header h2 {
        font-size: 2.2rem;
    }
    
    .whatsapp-instruction {
        font-size: 1.1rem;
    }
    
    .touch-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 400px;
        border-radius: 30px;
        padding: 6px;
    }
    
    .phone-screen {
        border-radius: 24px;
        padding: 20px 15px 15px 15px;
    }
    
    .phone-mockup::before {
        width: 80px;
        height: 4px;
        top: 10px;
    }
    
    .phone-mockup::after {
        width: 6px;
        height: 6px;
        top: 18px;
    }
    
    .person-photo {
        width: 200px;
        height: 200px;
    }
    
    .contact-person::before {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -50px;
    }
    
    .contact-person::after {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -70px;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .qr-image {
        width: 100px;
        height: 100px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-register,
    .btn-more-info {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .get-in-touch {
        padding: 50px 0;
    }
    
    .touch-header h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-instruction {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 360px;
        border-radius: 25px;
        padding: 5px;
    }
    
    .phone-screen {
        border-radius: 20px;
        padding: 18px 12px 12px 12px;
    }
    
    .phone-mockup::before {
        width: 70px;
        height: 3px;
        top: 8px;
    }
    
    .phone-mockup::after {
        width: 5px;
        height: 5px;
        top: 15px;
    }
    
    .message-bubble {
        padding: 10px 14px;
    }
    
    .message-bubble p {
        font-size: 0.8rem;
    }
    
    .message-time {
        font-size: 0.65rem;
    }
    
    .person-photo {
        width: 180px;
        height: 180px;
    }
    
    .contact-person::before {
        width: 100px;
        height: 100px;
        top: -25px;
        right: -40px;
    }
    
    .contact-person::after {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -55px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .qr-image {
        width: 80px;
        height: 80px;
    }
    
    .btn-register,
    .btn-more-info {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}