.path-container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.certification-path1 h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.path-content1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.path-image-section1 {
    flex: 1;
    margin-right: 20px;
}

.path-image-section1 img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.path-description1 {
    flex: 1.5;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.path-description1 p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #000000;
    font-size: 15px;

}

.path-contact-btn1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

.path-contact-btn1:hover {
    background-color: #0056b3;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.how-certification-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.how-certification-info {
    flex: 1;
    margin-right: 40px;
}

.how-certification-info h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
}

.how-certification-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #000000;

}

.how-certification-info ul {
    margin-top: 20px;
    list-style: none;
}

.how-certification-info ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    position: relative;
    padding-left: 20px;
    color: #000000;

}

.how-certification-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.5em;
}

.how-steps {
    flex: 1;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.how-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.how-step:last-child {
    margin-bottom: 0;
}

.how-step-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5em;
    color: #000000;
}

.how-step-content {
    flex: 1;
}

.how-step-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #111;
}

.how-step-content p {
    font-size: 1em;
    line-height: 1.5;
    color: #000000;
}


.hire-card1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto;
}

.single-card1 {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    margin: 10px;
    flex: 1;
    max-width: 100%;
    min-width: 200px;
    text-align: center;
    color: #007bff;
    min-height: 250px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.stat-item h2 {
    font-size: 3em;
    color: #00aaff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

@media screen and (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 500px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

.down-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.down-btn {
    color: #fff !important;
    padding: 13px 25px;
    font-size: 14px;
    font-weight: 500;
    background: #1A76D1;
    position: relative;
    box-shadow: none;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    border: none;
    border-radius: 4px;
}


.instructor-section-container {
    display: flex;
    justify-content: space-evenly;
    padding: 30px;
    font-family: Arial, sans-serif;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Left Side (Image and Name) */
.instructor-left-side {
    width: 40%;
    text-align: center;
    font-size: x-large;
}

.instructor-left-side img {
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
}

.instructor-person-name {
    margin-top: 15px;
    font-size: 1.5em;
    font-weight: bold;
    color: black;
}

.instructor-small-images {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.instructor-small-images img {
    width: 80px;
    height: 100px;
    margin: 0 10px;
    border-radius: 4px;
}

/* Right Side (Description and Pointers) */
.instructor-right-side {
    width: 75%;
}

.instructor-description {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: black;
    text-align: justify;
    padding-right: 100px;
}

.instructor-pointers {
    list-style-type: disc;
    padding-left: 20px;
    color: black;
    font-size: large;
}

.instructor-pointers li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Responsiveness */
@media (max-width: 768px) {
    .instructor-section-container {
        flex-direction: column;
        align-items: center;
    }

    .instructor-left-side, .instructor-right-side {
        width: 100%;
        text-align: center;
    }

    .instructor-right-side {
        margin-top: 20px;
    }

    .instructor-small-images img {
        width: 60px;
        height: 60px;
        margin: 0 5px;
    }
}



.upper-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}