/* =========================================
   DYNE TRAINING HERO
========================================= */

.training-hero {
    position: relative;
    min-height: 920px;
    background: #020617;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

/* Background Image */

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

    background: url('../img/training/developer.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 115, 255, .10),
            rgba(0, 115, 255, .10));
}

/* Overlay Blend */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            #020617 0%,
            rgba(2, 6, 23, .96) 18%,
            rgba(2, 6, 23, .82) 38%,
            rgba(2, 6, 23, .50) 58%,
            rgba(2, 6, 23, .15) 80%,
            rgba(2, 6, 23, .02) 100%);

    z-index: 2;
}

/* Glow */

.training-hero::before {
    content: '';

    position: absolute;
    right: -200px;
    top: -100px;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(0, 212, 255, .18),
            transparent 70%);

    z-index: 1;
}

/* Content */

.hero-wrapper {
    position: relative;
    z-index: 5;
}

.hero-left {
    max-width: 620px;
}

.hero-label {
    display: block;
    color: #00D4FF;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: #00D4FF;
}

.hero-left p {
    color: #CBD5E1;
    font-size: 18px;
    line-height: 38px;
    max-width: 560px;
    margin-bottom: 40px;
}

/* Buttons */

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 55px;
}

.btn-primary-training {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg,
            #2563EB,
            #00D4FF);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-training:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-training {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff !important;
    border-radius: 8px;
    transition: .3s;
}

.btn-outline-training:hover {
    background: rgba(255, 255, 255, .08);
}

/* Stats */

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-box i {
    font-size: 28px;
    color: #00D4FF;
}

.stat-box h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
}

.stat-box span {
    color: #94A3B8;
    font-size: 14px;
}

/* White Divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    clip-path: polygon(0 70%,
            100% 0,
            100% 100%,
            0 100%);
    z-index: 20;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px) {

    .training-hero {
        min-height: auto;
        padding: 180px 0 140px;
    }

    .hero-image {
        width: 100%;
        opacity: .35;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 52px;
    }

    .hero-left p {
        margin: auto auto 35px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        gap: 35px;
    }

    .hero-divider {
        height: 70px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media(max-width:576px) {

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-label {
        font-size: 11px;
    }

    .hero-left p {
        font-size: 16px;
        line-height: 30px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-box {
        justify-content: center;
    }
}






.development-programs {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    color: #3a67ed;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
    padding-bottom: 15px;
}

.section-title h2:after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #007be7;
    content: "";
    margin: auto;
}

.section-title p {
    color: #6b7280;
    font-size: 16px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 16px;
    padding: 20px;
    transition: .3s;
    min-height: 420px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .06);
}

.program-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 18px;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
}

.program-card ul li::before {
    content: '●';
    color: #3a67ed;
    position: absolute;
    left: 0;
    font-size: 8px;
    top: 6px;
}

.duration {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    color: #64748b;
}

/* Tablet */

@media(max-width:991px) {

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:576px) {

    .program-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .program-card {
        min-height: auto;
    }

}


/* ===================================
   PROFESSIONAL PROGRAMS
=================================== */

.professional-programs {
    padding: 110px 0;
    background:
        radial-gradient(circle at center top,
            rgba(0, 140, 255, .08),
            transparent 40%),
        #02071b;

    position: relative;
    overflow: hidden;
}

.professional-programs .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.professional-programs .section-heading span {
    display: block;
    color: #00d4ff;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

.professional-programs .section-heading h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.professional-programs .section-heading p {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */

.professional-card {
    background:
        linear-gradient(180deg,
            rgba(15, 20, 55, .95),
            rgba(8, 10, 35, .98));

    border: 1px solid rgba(0, 212, 255, .15);
    border-radius: 18px;

    padding: 28px;

    min-height: 360px;

    transition: .35s;
    position: relative;
}

.professional-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 212, 255, .45);

    box-shadow:
        0 0 20px rgba(0, 212, 255, .15),
        0 0 40px rgba(0, 212, 255, .05);
}

/* Icon */

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Title */

.professional-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Description */

.professional-card p {
    color: rgba(255, 255, 255, .70);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* List */

.professional-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.professional-card ul li {
    color: #dbe4ff;
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.professional-card ul li::before {
    content: '•';
    color: #00d4ff;
    position: absolute;
    left: 0;
}

/* Footer */

.card-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.card-footer span {
    color: #9fb4d9;
    font-size: 13px;
}

/* Tablet */

@media(max-width:991px) {

    .professional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-programs .section-heading h2 {
        font-size: 38px;
    }

}

/* Mobile */

@media(max-width:576px) {

    .professional-grid {
        grid-template-columns: 1fr;
    }

    .professional-card {
        min-height: auto;
    }

    .professional-programs .section-heading h2 {
        font-size: 30px;
    }

}


/* =====================================
   WHY DYNE TRAINING
===================================== */

.why-dyne {
    padding: 70px 0 100px;
    background: #fff;
}

.why-heading {
    text-align: center;
    margin-bottom: 45px;
}

.why-heading span {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #1f2937;
}

.why-heading span::after {
    content: '';

    display: block;

    width: 50px;
    height: 2px;

    background: #7c3aed;

    margin: 12px auto 0;
}

/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #ececf5;
    border-radius: 16px;
    overflow: hidden;
}

/* Card */

.why-card {
    text-align: center;
    padding: 30px 18px;
    background: #fafafa;

    border-right: 1px solid #ececf5;

    transition: .3s;
}

.why-card:last-child {
    border-right: none;
}

.why-card:hover {
    background: #ffffff;
}

.why-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ====================
   Tablet
==================== */

@media(max-width:991px) {

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-card {
        border-right: 1px solid #ececf5;
        border-bottom: 1px solid #ececf5;
    }
}

/* ====================
   Mobile
==================== */

@media(max-width:576px) {

    .why-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 12px;
    }

    .why-card {
        display: flex;
        align-items: center;
        text-align: left;

        gap: 15px;

        border: 1px solid #ececf5;
        border-radius: 12px;

        padding: 18px;
        background: #fff;
    }

    .why-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .why-card h4 {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
    }
}


.footer {
    background: #010219;}