.certificate-main .page-title {
    padding: 20px 40px;
    height: 550px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.certificate-main .page-title .heroimgcontainer {
    width: 50%;
}

.certificate-main .page-title .heroimgcontainer img {
    width: 100%;
}

.certificate-main .page-title .heading {
    width: 50%;
}

.certificate-main .page-title .heading h2 {
    color: #444;
    /* font-size: 38px; */
    text-align: left;
    /* font-weight: 700; */
}

.page-title .heading p {
    font-size: 20px;
    text-align: left;
}

.certificate-main .page-title .heading .col-lg-8 {
    width: 100%;
}

@media(max-width:768px) {

    .certificate-main .page-title {
        padding: 40px 20px;
        height: 300px;
    }

    .certificate-main .page-title .heroimgcontainer {
        display: none;
    }

    .certificate-main .page-title .heading {
        width: 95%;
    }

    .certificate-main .page-title .heading h2 {
        /* font-size: 32px; */
        text-align: center;
    }

    .certificate-main .page-title .heading p {
        /* font-size: 32px; */
        text-align: center;
    }
}

@media(max-width:480px) {
    .certificate-main .page-title .heading h2 {
        /* font-size: 28px; */
        text-align: center;
    }

    .certificate-main .page-title .heading p {
        font-size: 18px;
    }
}

/* CERTIFICATE BODY */
/* .certificate-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.certificate-header .certificate-header-card{
    padding: 40px 20px;
}
.certificate-header .certificate-header-card h1{
    font-size: 48px;
    font-weight: 700;
}
.certificate-header .certificate-header-body{
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 40px;
}
.certificate-header .certificate-header-body .certificate-header-body-img{
   width: 50%;
}
.certificate-header .certificate-header-body .certificate-header-body-img img{
   width: 90%;
}
.certificate-header .certificate-header-body .certificate-header-body-content{
   width: 50%;
} */


/* MAIN SECTION */
.certificate-section {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #00aeef15, #f15a2915);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeSlide 0.8s ease;
}

/* TITLE CARD */
.certificate-header-card h1 {
    /* font-size: 48px;
    font-weight: 700; */
    text-align: center;
    color: #222;
    margin-bottom: 35px;
}

/* BODY WRAPPER */
.certificate-header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* TEXT SECTION */
.certificate-text p {
    /* font-size: 18px; */
    line-height: 1.8;
    color: #333;
    /* font-weight: 400; */
}

/* IMAGE SECTION */
.certificate-image img {
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.certificate-image img:hover {
    transform: scale(1.05);
}

/* ✨ Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------
            RESPONSIVE 
------------------------------------ */

/* 📱 TABLET - max-width 768px */
@media (max-width: 768px) {
    .certificate-header-body {
        flex-direction: column;
        text-align: center;
    }

    /* .certificate-text p {
        font-size: 17px;
    } */

    .certificate-image img {
        width: 300px;
    }
}

/* 📱 MOBILE - max-width 480px */
@media (max-width: 480px) {
    /* .certificate-header-card h1 {
        font-size: 26px;
    } */

    /* .certificate-text p {
        font-size: 15px;
    } */

    .certificate-image img {
        width: 240px;
    }
}