/* enterprise.css */

/* Hero Section Styles */
.enterprise-hero {
    padding: 180px 0 40px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Decorative background elements for premium feel */
.enterprise-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(7, 161, 105, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.enterprise-hero .container {
    position: relative;
    z-index: 1;
}

.enterprise-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.enterprise-hero-title {
    font-size: 45px;
    font-weight: 800;
    color: #00170f;
    /* Match var(--bd-theme-black) */
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.enterprise-hero-title span {
    color: #00c582;
    /* Match var(--bd-primary) */
}

.enterprise-hero-subtitle {
    font-size: 17px;
    color: #000;
    /* Match var(--bd-text-muted) */
    line-height: 1.6;
    margin-bottom: 20px !important;
    font-weight: 400;
    max-width: 90%;
}

/* Video Player Styling */
.enterprise-video-container {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateY(-2deg);
}

.enterprise-video-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}

.enterprise-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.enterprise-video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 23, 15, 0.5) 0%, rgba(0, 23, 15, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enterprise-video-container:hover .enterprise-video-overlay {
    background: rgba(0, 23, 15, 0.35);
}

.play-button {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    position: relative;
}

.play-button i {
    font-size: 28px;
    color: #00c582;
    margin-left: 6px;
    /* Offset to center triangle */
}

/* Ripple animations */
.play-button::before,
.play-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    pointer-events: none;
}

.play-button::before {
    animation: ripple 2.5s infinite linear;
}

.play-button::after {
    animation: ripple 2.5s infinite linear 1s;
}

.play-button:hover {
    transform: scale(1.15) rotate(5deg);
    background: #00c582;
}

.play-button:hover i {
    color: #ffffff;
}

@keyframes ripple {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Video Control Bar Placeholder */
.video-control-placeholder {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.video-progress-bar {
    width: 35%;
    height: 100%;
    background: #00c582;
}

/* Training Programs Section - Premium Upgrade */
.training-programs-section {
    padding: 40px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Aesthetic Geometric Background - Premium Antique Refinement */
.training-programs-section {
    background-color: #fdfdfd;
    background-image:
        radial-gradient(rgba(7, 161, 105, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(7, 161, 105, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: 40px 40px, 100% 100%;
}

.training-programs-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(7, 161, 105, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 81% 100%, 19% 100%, 0% 38%);
    transform: rotate(15deg);
    z-index: 0;
}

.training-programs-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(7, 161, 105, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(-10deg);
    z-index: 0;
}

.training-programs-section .container {
    position: relative;
    z-index: 1;
}

.training-title {
    font-size: 33px;
    font-weight: 800;
    color: #00170f;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.training-subtitle {
    font-size: 17px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.logo-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: stretch;
    margin-top: 20px;
}

.logo-grid-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.logo-grid-item img {
    max-width: 220px;
    width: 100%;
    height: auto;
    /* filter: grayscale(100%);
    opacity: 0.5; */
    transition: all 0.5s ease;
}

.logo-grid-item:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(7, 161, 105, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.logo-grid-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Premium Button Refinement */
.training-btn {
    display: inline-block;
    padding: 10px 45px;
    background: #00c582;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(7, 161, 105, 0.25);
    position: relative;
    overflow: hidden;
}

.training-btn::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.6s ease;
}

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

.training-btn:hover {
    background: #00170f;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 23, 15, 0.3);
}

/* Responsive Refinements */
@media (max-width: 1199px) {
    .training-title {
        font-size: 38px;
    }

    .logo-grid-wrapper {
        gap: 20px;
        margin-top: 30px;
    }

    .logo-grid-item {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .training-programs-section {
        padding: 40px 0;
    }

    .logo-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .training-title {
        font-size: 32px;
    }

    .logo-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-grid-item:last-child {
        grid-column: 1 / span 2;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .training-title {
        font-size: 28px;
    }

    .training-subtitle {
        font-size: 16px;
    }

    .training-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* Recruit Retain Develop Section - Premium Geometric / Antique Refinement */
.accelerate-academies-area {
    background-color: #faf9f6;
    /* Premium Pearl / Antique */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(7, 161, 105, 0.05);
    background-image:
        linear-gradient(rgba(7, 161, 105, 0.03) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(7, 161, 105, 0.03) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
}

.accelerate-academies-area::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(7, 161, 105, 0.03) 0%, rgba(250, 249, 246, 0) 80%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 100%);
    transform: rotate(-5deg);
    z-index: 0;
    pointer-events: none;
}

.accelerate-academies-area::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: linear-gradient(225deg, rgba(100, 116, 139, 0.02) 0%, rgba(250, 249, 246, 0) 80%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(10deg);
    z-index: 0;
    pointer-events: none;
}

.main-section-title {
    font-size: 35px;
    font-weight: 800;
    color: #00170f;
    margin-bottom: 20px;
}

.main-section-subtitle {
    font-size: 16px;
    color: #000;
    max-width: 100%;
    margin: 0 auto;
}

.feature-title {
    font-size: 32px;
    font-weight: 800;
    color: #00170f;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00c582;
    border-radius: 2px;
}

.feature-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 35px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    min-width: 32px;
    height: 32px;
    background: rgba(7, 161, 105, 0.1);
    color: #00c582;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 20px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-icon {
    background: #00c582;
    color: #ffffff;
    transform: scale(1.1);
}

.feature-text h6 {
    font-size: 18px;
    font-weight: 700;
    color: #00170f;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
}

.feature-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 23, 15, 0.12);
    transition: all 0.5s ease;
}

.feature-image-wrapper:hover .feature-img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 23, 15, 0.18);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    color: #00c582;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-btn i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    color: #00170f;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Layout Utilities */
.mb-100 {
    margin-bottom: 100px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-70 {
    margin-bottom: 70px;
}

/* Responsive Adjustments for Feature Blocks */
@media (max-width: 991px) {
    .main-section-title {
        font-size: 32px;
    }

    .feature-title {
        font-size: 28px;
    }

    .mb-100 {
        margin-bottom: 60px;
    }

    .feature-img {
        border-radius: 20px;
    }

    .ps-lg-5 {
        padding-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .accelerate-academies-area {
        padding: 60px 0;
    }

    .main-section-title {
        font-size: 28px;
    }

    .main-section-subtitle {
        font-size: 16px;
    }

    .feature-list li {
        margin-bottom: 20px;
    }

    .feature-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Learning Outcomes Section */
.learning-outcomes-area {
    background-color: #f4f7f6;
    /* Soft Mist / Teal Tint */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Unique Geometric Background for Accordion Section */
.learning-outcomes-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(7, 161, 105, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: -1;
}

.learning-outcomes-area::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(7, 161, 105, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(25deg);
    z-index: -1;
}

.premium-accordion-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.premium-accordion-item {
    border-bottom: 1px solid #edf2f0;
    margin-bottom: 10px;
}

.premium-accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header-box {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.accordion-header-box:hover {
    background: rgba(7, 161, 105, 0.04);
}

.accordion-title {
    font-size: 20px;
    font-weight: 700;
    color: #00170f;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.accordion-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8faf9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c582;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-accordion-item.active .accordion-header-box {
    background: rgba(7, 161, 105, 0.08);
}

.premium-accordion-item.active .accordion-title {
    color: #00c582;
}

.premium-accordion-item.active .accordion-icon-wrap {
    background: #00c582;
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion-content-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inner-content {
    padding: 0 24px 24px;
}

.inner-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.inner-content p:last-child {
    margin-bottom: 0;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.accordion-list li {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.accordion-list li:last-child {
    margin-bottom: 0;
}

.accordion-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #00c582;
    font-size: 12px;
}

@media (max-width: 767px) {
    .accordion-header-box {
        padding: 18px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .inner-content {
        padding: 0 18px 18px;
    }
}

/* Our Impact Section */
.our-impact-area {
    background-color: #f8fafc;
    /* Lighter Backdrop */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* New Premium Geometric Background - Crystalline Shards */
.our-impact-area {
    background: linear-gradient(135deg, #f0f4f2 0%, #ffffff 100%);
    background-image: radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.our-impact-area::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 161, 105, 0.05) 0%, transparent 70%);
    clip-path: polygon(10% 0%, 100% 0%, 85% 90%, 0% 100%);
    transform: rotate(-8deg);
    z-index: -1;
    pointer-events: none;
}

.our-impact-area::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(225deg, rgba(7, 161, 105, 0.04) 0%, rgba(255, 255, 255, 0) 80%);
    clip-path: polygon(0% 15%, 85% 0%, 100% 85%, 20% 100%);
    transform: rotate(12deg);
    z-index: -1;
    pointer-events: none;
    backdrop-filter: blur(3px);
}

.impact-main-row {
    position: relative;
    z-index: 2;
}

.impact-category-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 60px 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.impact-category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
}

.impact-category-title {
    font-size: 28px;
    font-weight: 700;
    color: #475569;
    letter-spacing: -0.01em;
}

.impact-divider {
    position: absolute;
    left: 50%;
    top: 15%;
    bottom: 0%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
    transform: translateX(-50%);
    z-index: 2;
}

.impact-list-wrapper {
    padding: 0 10px;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    font-size: 17px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.impact-list li:last-child {
    margin-bottom: 0;
}

.impact-list li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: #00c582;
    font-size: 16px;
    opacity: 0.8;
}

.impact-list li:hover {
    color: #00170f;
    transform: translateX(5px);
}

.impact-list li:hover i {
    opacity: 1;
}

@media (max-width: 991px) {
    .impact-col {
        margin-bottom: 30px;
    }

    .impact-category-box {
        padding: 40px 20px;
    }

    .impact-number {
        font-size: 42px;
    }

    .impact-category-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .impact-number {
        font-size: 36px;
    }

    .impact-desc {
        font-size: 14px;
    }

    .enterprise-hero-title {
        font-size: 30px;
    }

    .enterprise-hero {
        padding-top: 200px;
    }
}

/* Featured Programs Section */
.featured-programs-area {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Network Node Geometric Background */
.featured-programs-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(7, 161, 105, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(rgba(7, 161, 105, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 161, 105, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.5;
}

.featured-programs-area::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(7, 161, 105, 0.04) 0%, transparent 70%);
    z-index: -1;
}

.featured-programs-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.featured-program-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.featured-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(7, 161, 105, 0.15);
}

.card-image-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    overflow: hidden;
}

.main-prog-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-program-card:hover .main-prog-img {
    transform: scale(1.08);
}

.uni-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 15px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    padding: 10px 15px;
    width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.uni-logo-overlay img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.uni-name {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.prog-title {
    font-size: 19px;
    font-weight: 800;
    color: #00170f;
    line-height: 1.35;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
}

.prog-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: block;
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

.start-date {
    display: block;
    font-size: 14px;
    color: #475569;
}

.start-date strong {
    color: #00170f;
}

.card-footer-btns {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.prog-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prog-btn.btn-dark {
    background: #00170f;
    color: #ffffff;
    border: 1px solid #00170f;
}

.prog-btn.btn-dark:hover {
    background: #00c582;
    border-color: #00c582;
}

.prog-btn.btn-outline {
    background: transparent;
    color: #00170f;
    border: 1px solid #e2e8f0;
}

.prog-btn.btn-outline:hover {
    background: #f8fafc;
    border-color: #00c582;
    color: #00c582;
}

/* Slider Navigation Styles */
.programs-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 30px;
}

.programs-prev,
.programs-next {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #00170f !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.programs-prev::after,
.programs-next::after {
    display: none !important;
}

.programs-prev:hover,
.programs-next:hover {
    background: #00c582 !important;
    color: #ffffff !important;
    border-color: #00c582 !important;
}

.programs-pagination {
    position: static !important;
    width: auto !important;
}

.programs-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #00170f;
    opacity: 0.15;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.programs-pagination .swiper-pagination-bullet-active {
    background: #00c582;
    width: 24px;
    border-radius: 4px;
    opacity: 1;
}

@media (max-width: 991px) {
    .featured-programs-slider-wrapper {
        padding: 0 10px;
    }

    .prog-title {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .featured-programs-area {
        padding: 60px 0;
    }

    .featured-program-card {
        margin-bottom: 0;
    }
}

/* Why CEP Digivarsity Section */
.why-cep-area {
    background: linear-gradient(135deg, #002244 0%, #006ab8 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Enhanced Classic Geometric Overlay */
.why-cep-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Classic, perfectly aligned diagonal diamond grid */
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03)),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03));
    background-size: 60px 60px;
    z-index: -2;
}

.why-cep-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Premium vignette effect to enhance depth and spotlight cards */
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 30, 70, 0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

.why-cep-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 85px 35px 35px 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.why-cep-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 24px 0 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #006ab8;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.why-cep-card:hover .why-icon {
    background: #006ab8;
    color: #ffffff;
}

.why-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .why-cep-area {
        padding: 60px 0;
    }

    .why-title {
        font-size: 20px;
    }
}

/* Workforce Strategy Section */
.workforce-strategy-area {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.strategy-title {
    font-size: 38px;
    line-height: 1.2;
}

.strategy-highlight {
    color: #00c582;
}

.strategy-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 25px;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.strategy-list li {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.strategy-list li i {
    color: #00c582;
    font-size: 20px;
    margin-right: 15px;
}

.strategy-list li:last-child {
    margin-bottom: 0;
}

.strategy-footer-box {
    background: #ffffff;
    border-left: 4px solid #00c582;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.strategy-footer-box p {
    font-size: 17px;
    color: #00170f;
    line-height: 1.6;
}

.strategy-image-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.strategy-image-wrapper img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
}

.strategy-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 80%;
    background-color: #00c582;
    opacity: 0.1;
    border-radius: 24px;
    z-index: 1;
    transform: translate(-10px, 10px);
}

@media (max-width: 991px) {
    .strategy-image-wrapper {
        margin-top: 20px;
        padding-left: 0;
        padding-bottom: 20px;
    }

    .strategy-shape {
        width: 80%;
        transform: translate(15px, 15px);
        left: auto;
        right: 0;
    }
}

/* What We Offer Section */
.what-we-offer-area {
    background: linear-gradient(135deg, #002244 0%, #006ab8 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Abstract Premium Geometric Overlays */
.what-we-offer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hexagonal / Crystal Mesh Overlay */
    background-image:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0px, transparent 2px, transparent 40px),
        repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.02) 0px, transparent 2px, transparent 40px);
    background-size: 80px 140px;
    z-index: -2;
}

.what-we-offer-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(0, 197, 130, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 70px 30px 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
    background: #00c582;
    border-radius: 24px 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: #ffffff;
    color: #00170f;
}

.offer-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.offer-block-desc {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.offer-block-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 25px;
}

.offer-block-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.offer-list li i {
    color: #00c582;
    margin-top: 5px;
    margin-right: 12px;
    font-size: 14px;
}

/* Employee Challenges Section */
.employee-challenges-area {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.challenge-geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft architectural grid pattern */
    background-image:
        linear-gradient(rgba(0, 197, 130, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 197, 130, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.challenge-geo-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Radial soft-mask to ensure readability in center */
    background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.4) 0%, rgba(248, 250, 252, 1) 75%);
    pointer-events: none;
}

.challenge-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 60px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 197, 130, 0.2);
}

.challenge-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 75px;
    background: rgba(0, 197, 130, 0.08);
    color: #00c582;
    border-radius: 0 20px 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.4s ease;
}

.challenge-card:hover .challenge-icon {
    background: #00c582;
    color: #ffffff;
}

.challenge-title {
    font-size: 22px;
    font-weight: 700;
    color: #00170f;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-right: 20px;
}

.challenge-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.challenge-list li {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.challenge-list li i {
    color: #00c582;
    margin-top: 5px;
    margin-right: 12px;
    font-size: 16px;
}

.challenge-footer {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.challenge-footer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Workplace Choice Section */
.workplace-choice-area {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.workplace-geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern minimalist dotted geometric background (dark dots for light mode) */
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.workplace-content-box {
    position: relative;
    z-index: 2;
}

.workplace-title {
    line-height: 1.25;
}

.workplace-subtitle {
    color: #475569;
    font-size: 18px;
}

.workplace-highlight-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.workplace-highlight-box p {
    font-size: 17px;
}

.workplace-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workplace-list li {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    /* Dark dashed line for light background */
}

.workplace-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wd-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 197, 130, 0.15);
    color: #00c582;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.workplace-list li:hover .wd-icon {
    background: #00c582;
    color: #ffffff;
    transform: scale(1.1);
}

.wd-text {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    /* Dark text for light mode */
}

.workplace-image-wrapper {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
    text-align: right;
}

.workplace-image-wrapper img {
    border-radius: 24px;
}

.workplace-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    background: #00c582;
    border-radius: 24px;
    z-index: 0;
    opacity: 0.15;
    transform: translate(-10px, -10px);
}

/* Customisation Section - Clean Minimalist Style */
.customisation-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* New Architectural Geometric Pattern Background */
.customisation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle dot grid + soft tech lines */
    background-image: 
        radial-gradient(rgba(0, 197, 130, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(rgba(0, 197, 130, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 197, 130, 0.02) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px, 80px 80px;
    z-index: -1;
}

.customisation-col {
    position: relative;
    padding: 20px 30px;
    text-align: center;
}

/* Vertical divider for desktop */
@media (min-width: 992px) {
    .customisation-col:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
    }
}

/* Horizontal border/divider for mobile and row separation */
.customisation-col {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .row-no-bottom-border .customisation-col {
        border-bottom: none;
    }
}

.customisation-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 197, 130, 0.1);
    color: #00c582;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.customisation-col:hover .customisation-icon {
    background: #00c582;
    color: #ffffff;
    transform: translateY(-5px);
}

.customisation-title {
    font-size: 19px;
    font-weight: 700;
    color: #00170f;
    margin-bottom: 12px;
}

.customisation-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .customisation-section {
        padding: 40px 0;
    }

    .customisation-col {
        padding: 30px 20px;
    }
}

/* Capability Building Section - New Minimalist 4-Column Design */
.capability-building-new {
    padding: 80px 0;
    background-color: #ffffff;
}

.capability-step-card {
    background: #ffffff;
    border-radius: 20px;
    /* padding: 25px; */
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.we-build-body{
    padding: 10px;
}

.capability-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #00c582;
}

.capability-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f4f7f6;
}

.capability-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.capability-step-card:hover .capability-image-wrap img {
    transform: scale(1.1);
}

.capability-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #00170f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.capability-step-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.capability-step-highlight {
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 197, 130, 0.2);
    font-size: 14px;
    color: #00c582;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .capability-building-new { padding: 60px 0; }
    .capability-step-card { padding: 20px; }
}

/* Workforce Investment Section - Clean Checkmark Style */
.workforce-investment-area {
    background: #f8f9fa;
    position: relative;
}

.workforce-investment-content {
    max-width: 800px;
    margin: 0 auto;
}

.workforce-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.3;
    text-align: center;
}

.workforce-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.workforce-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.workforce-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #0269b8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    margin-top: 2px;
}

.workforce-text {
    flex: 1;
}

.workforce-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.workforce-percentage {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1;
}

.workforce-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 5px;
}

.workforce-source {
    font-size: 13px;
    color: #718096;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .workforce-main-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .workforce-list {
        gap: 28px;
    }

    .workforce-subtitle {
        font-size: 17px;
    }

    .workforce-percentage {
        font-size: 26px;
    }

    .workforce-description {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .workforce-investment-area {
        padding: 60px 0;
    }

    .workforce-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .workforce-list {
        gap: 25px;
    }

    .workforce-item {
        gap: 12px;
    }

    .workforce-check {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .workforce-subtitle {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .workforce-percentage {
        font-size: 24px;
    }

    .workforce-description {
        font-size: 14px;
    }

    .workforce-source {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .workforce-main-title {
        font-size: 22px;
    }

    .workforce-subtitle {
        font-size: 15px;
    }

    .workforce-percentage {
        font-size: 22px;
    }

    .workforce-description {
        font-size: 13px;
    }

    .workforce-source {
        font-size: 12px;
    }
}

/* Training Logo Slider - Modern & Premium */
.training-logo-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.training-logo-slider-container {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.training-logo-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.training-logo-slide {
    flex: 0 0 25%;
    min-width: 25%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-logo-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.training-logo-slide a:hover {
    transform: scale(1.05);
}

.training-logo-slide img {
    max-width: 245px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.training-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #00170f;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.training-slider-arrow:hover {
    background: #00c582;
    border-color: #00c582;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 197, 130, 0.3);
}

.training-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.training-slider-prev {
    left: 0;
}

.training-slider-next {
    right: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .training-logo-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
        padding: 30px 18px;
    }

    .training-logo-slide img {
        max-width: 180px;
    }
}

@media (max-width: 991px) {
    .training-logo-slider-wrapper {
        padding: 0 60px;
    }

    .training-logo-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
        padding: 25px 15px;
    }

    .training-logo-slide img {
        max-width: 160px;
    }

    .training-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .training-logo-slider-wrapper {
        padding: 0 50px;
    }

    .training-logo-slide {
        flex: 0 0 50%;
        min-width: 50%;
        padding: 20px 12px;
    }

    .training-logo-slide img {
        max-width: 140px;
    }

    .training-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .training-logo-slider-wrapper {
        padding: 0 45px;
    }

    .training-logo-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 25px 15px;
    }

    .training-logo-slide img {
        max-width: 200px;
    }

    .training-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Let's Talk Section - Modern Premium Design with Geometric Background */
.lets-talk-area {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Different Geometric Pattern Background - Diagonal Grid with Dots */
.lets-talk-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9fafb;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(0, 197, 130, 0.15) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(0, 104, 187, 0.1) 2%, transparent 0%),
        linear-gradient(135deg, transparent 48%, rgba(0, 197, 130, 0.03) 48%, rgba(0, 197, 130, 0.03) 52%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgba(0, 104, 187, 0.03) 48%, rgba(0, 104, 187, 0.03) 52%, transparent 52%);
    background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 25px 25px;
    z-index: 0;
}

.lets-talk-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 0;
}

.lets-talk-area .container {
    position: relative;
    z-index: 1;
}

.lets-talk-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 197, 130, 0.1);
    position: relative;
    overflow: hidden;
}

.lets-talk-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c582 0%, #0068bb 100%);
}

.lets-talk-header {
    margin-bottom: 40px;
}

.lets-talk-title {
    font-size: 48px;
    font-weight: 900;
    color: #00170f;
    margin-bottom: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #00c582 0%, #0068bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.lets-talk-form-wrapper {
    background: #f8fafb;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e8f4f0;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-custom:focus {
    outline: none;
    border-color: #00c582;
    box-shadow: 0 0 0 4px rgba(0, 197, 130, 0.1);
}

.form-control-custom::placeholder {
    color: #94a3b8;
}

select.form-control-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 100px;
}

.submit-btn-custom {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #00c582 0%, #00a572 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 197, 130, 0.25);
}

.submit-btn-custom:hover {
    background: linear-gradient(135deg, #00a572 0%, #008a5f 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 197, 130, 0.35);
}

.submit-btn-custom:active {
    transform: translateY(-1px);
}

.submit-btn-custom i {
    transition: transform 0.3s ease;
}

.submit-btn-custom:hover i {
    transform: translateX(5px);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 991px) {
    .lets-talk-wrapper {
        padding: 40px 35px;
    }

    .lets-talk-header {
        margin-bottom: 35px;
    }

    .lets-talk-title {
        font-size: 42px;
    }

    .lets-talk-form-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 767px) {
    .lets-talk-area {
        padding: 50px 0;
    }

    .lets-talk-wrapper {
        padding: 30px 25px;
    }

    .lets-talk-header {
        margin-bottom: 30px;
    }

    .lets-talk-title {
        font-size: 36px;
    }

    .lets-talk-form-wrapper {
        padding: 25px 20px;
    }

    .form-control-custom {
        padding: 12px 16px;
        font-size: 14px;
    }

    .submit-btn-custom {
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .lets-talk-wrapper {
        padding: 25px 20px;
    }

    .lets-talk-title {
        font-size: 32px;
    }

    .lets-talk-form-wrapper {
        padding: 20px 15px;
    }
}

/* Offer Cards Slider - Modern & Premium */
.offer-cards-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

.offer-cards-slider-container {
    overflow: hidden;
    border-radius: 16px;
}

.offer-cards-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.offer-card-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 15px;
}

.offer-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #00170f;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offer-slider-arrow:hover {
    background: #00c582;
    border-color: #00c582;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 197, 130, 0.3);
}

.offer-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.offer-slider-prev {
    left: 0;
}

.offer-slider-next {
    right: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .offer-card-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
}

@media (max-width: 991px) {
    .offer-cards-slider-wrapper {
        padding: 0 60px;
    }

    .offer-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .offer-cards-slider-wrapper {
        padding: 0 50px;
    }

    .offer-card-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 10px;
    }

    .offer-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .offer-cards-slider-wrapper {
        padding: 0 45px;
    }

    .offer-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Let's Talk Modal Popup - Modern & Premium */
.lets-talk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lets-talk-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 23, 15, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    color: #64748b;
    font-size: 20px;
}

.modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-content {
    padding: 45px 35px 35px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 30px;
    font-weight: 900;
    color: #00170f;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00c582 0%, #0068bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-modal label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.form-input-modal {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-modal:focus {
    outline: none;
    border-color: #00c582;
    box-shadow: 0 0 0 3px rgba(0, 197, 130, 0.1);
}

.form-input-modal::placeholder {
    color: #94a3b8;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00c582 0%, #00a572 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 197, 130, 0.25);
    margin-top: 8px;
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, #00a572 0%, #008a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 197, 130, 0.35);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

.modal-submit-btn i {
    transition: transform 0.3s ease;
}

.modal-submit-btn:hover i {
    transform: translateX(5px);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 767px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 40px 25px 25px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-subtitle {
        font-size: 13px;
    }

    .modal-form {
        gap: 16px;
    }

    .form-row-modal {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-input-modal {
        padding: 11px 14px;
        font-size: 14px;
    }

    .modal-submit-btn {
        padding: 13px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .modal-content {
        padding: 35px 20px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .form-group-modal label {
        font-size: 12px;
    }
}



/* --- Modern Program Card Redesign --- */
#programsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.modern-program-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.modern-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 197, 130, 0.2);
}

.card-header-img {
    position: relative;
    width: 100%;
    padding-bottom: 58%; /* 16:9 approx */
    background: #f1f5f9;
    overflow: hidden;
}

.card-header-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-program-card:hover .card-header-img img {
    transform: scale(1.08);
}

.logo-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 44px;
}

.logo-overlay img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modern-card-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uni-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.modern-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.modern-card-title a {
    color: inherit;
    text-decoration: none;
}

.modern-card-meta {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-top: auto;
    padding-bottom: 20px;
}

.modern-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.modern-btn {
    flex: 1;
    padding: 12px 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-btn-primary {
    background: #1c3354;
    color: #ffffff;
    border: none;
}

.modern-btn-primary:hover {
    background: #2a4b7a;
    color: #ffffff;
}

.modern-btn-outline {
    background: transparent;
    color: #1c3354 !important;
    border: 1.5px solid #1c3354;
}

.modern-btn-outline:hover {
    background: rgba(28, 51, 84, 0.05);
}

/* Hide Download Brochure CTA in Featured Programs and make View full width */
#featured-programs .modern-btn-primary { display: none !important; }

