﻿/* Overall Section */
.bootcamp-section {
    background-color: #111; /* almost black */
    color: #fff;
    padding: 4rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container for centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Heading */
.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

/* Intro Paragraph */
.section-intro {
    font-size: 1.125rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Two-column layout */
.bootcamp-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
    text-align: left;
    padding-bottom: 37px;
}

/* Left Column: Image */
.bootcamp-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
}

/* Right Column: Bootcamp Info */
.bootcamp-info {
    background-color: #000;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tags */
.bootcamp-tags {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #333;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* Title */
.bootcamp-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Description */
.bootcamp-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Learn More Link */
.learn-more {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    width: fit-content;
}

    .learn-more:hover {
        border-bottom: 2px solid #fff;
    }
.lern {
    color: white;
    background-color: blue;
    border: none;
    border-radius: 3px;
}
/*===experience section===*/
.experience-section {
    background-color: #f9f9f9;
    padding: 70px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

    .experience-section h2 {
        font-size: 40px;
        margin-bottom: 20px;
        color: #0d6efd;
    }

    .experience-section p {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

.experience-highlight {
    font-size: 60px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 10px;
}

.project-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    background-color: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .experience-section h2 {
        font-size: 30px;
    }

    .experience-highlight {
        font-size: 44px;
    }
}
/*====cta-btn===*/
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

    .cta-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 18px;
        margin-bottom: 40px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #212529;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .cta-button:hover {
        background-color: #000;
        transform: scale(1.05);
    }