/* ==========================================================================
   10. PREMIUM IT & CREATIVE COURSES SECTION (Microsoft Minimal Aesthetic)
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
    font-family: "Segoe UI", Segoe, Tahoma, Arial, sans-serif;
}

/* Header Text Styling */
.container header {
    text-align: center;
    margin-bottom: 45px;
}

.container header h1 {
    font-size: 24px;
    color: #262626;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.container header p {
    font-size: 13px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dynamic Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Premium Course Cards */
.course-card {
    background: #ffffff;
    border: 1px solid #d8e2ea;
    border-radius: 4px; /* Crisp corporate sharp corners */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Card Hover Elevation Effect */
.course-card:hover {
    transform: translateY(-4px);
    border-color: #0067b8;
    box-shadow: 0 8px 20px rgba(0, 103, 184, 0.06);
}

/* Images Control */
.course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eef3f8;
}

/* Internal Content Structure */
.card-content {
    padding: 24px;
}

.course-title {
    font-size: 16px;
    color: #262626;
    font-weight: 600;
    margin-bottom: 6px;
}

.duration-text {
    display: inline-block;
    font-size: 11px;
    color: #0067b8;
    background: rgba(0, 103, 184, 0.08);
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Syllabus Clean List */
.syllabus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.syllabus-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #444444;
    line-height: 1.5;
}

.syllabus-list li .icon {
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.syllabus-list li strong {
    color: #262626;
    font-weight: 600;
}

/* Microsoft Accent "Apply Now" Button */
.apply-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    background: #0067b8;
    color: #ffffff;
    border: none;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.1s ease;
    text-align: center;
}

.apply-btn:hover {
    background: #005293; /* Darker elite blue on hover */
}

.apply-btn:active {
    transform: scale(0.98);
}

/* Accent Bottom Ribbon Layout */
.features-bar {
    background: #eef3f8;
    border: 1px solid #d8e2ea;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    font-size: 12px;
    font-weight: 600;
    color: #262626;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item .icon {
    font-size: 16px;
    color: #0067b8;
}

/* Responsive Grid Adaptation */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .features-bar {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
}
/* ==========================================================================
   11. PREMIUM INFINITE MARQUEE (Full-Width Continuous Loop)
   ========================================================================== */
.tech-marquee-section {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #d8e2ea;
    border-bottom: 1px solid #d8e2ea;
    padding: 25px 0;
    overflow: hidden;
    position: relative;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 30px;
    /* Ensure content is always wider than screen */
    min-width: 100%;
    /* Animation definition */
    animation: scrollInfinite 40s linear infinite;
    will-change: transform;
}

/* Logic: 0% se -50% tak jane se loop seamless banta hai */
@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Badge Styling */
.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Segoe UI", Segoe, Tahoma, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600;
    color: #333333;
    background: #ffffff;
    border: 1px solid #d8e2ea;
    padding: 10px 20px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0; /* Ensures items don't squeeze */
}

/* Hover effect */
.marquee-track span:hover {
    border-color: #0067b8;
    color: #0067b8;
}

.marquee-track span i {
    color: #0067b8;
}