          .medical-section {
    padding: 70px 0;
    background: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

.medical-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.medical-col-img {
    flex: 1;
}

.medical-col-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.medical-col-text {
    flex: 1;
    padding: 20px;
}

.medical-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.medical-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.medical-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0b74ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: .25s ease;
}

.medical-btn:hover {
    background: #005cd1;
}




body {
}


.syllabus-item:hover {
transform: scale(1.02);
}


/* CTA */
.cta-section {
padding: 80px 8%;
text-align: center;
background: linear-gradient(45deg, #0b7b77, #0da39e);
color: #fff;
}


.cta-section h2 {
font-size: 40px;
}


.cta-section a {
margin-top: 20px;
background: #fff;
color: #0b7b77;
padding: 14px 40px;
border-radius: 50px;
text-decoration: none;
font-size: 20px;
font-weight: 600;
display: inline-block;
}




 .highlights {
            padding: 80px 8%;
            text-align: center;
        }

        .highlights h2 {
            font-size: 40px;
            font-weight: 700;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .highlight-box {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0,0,0,0.08);
            transition: 0.4s;
            cursor: pointer;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .highlight-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .highlight-box i {
            font-size: 40px;
            color: #0b7b77;
        }
 .syllabus {
            padding: 80px 8%;
            background: #e6f7f6;
        }

        .syllabus h2 {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
        }

        .syllabus-list {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .syllabus-item {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .syllabus-item:hover {
            transform: scale(1.02);
        }

        /* CTA */
        .cta-section {
            padding: 80px 8%;
            text-align: center;
            background: linear-gradient(45deg, #0b7b77, #0da39e);
            color: #fff;
        }

        .cta-section h2 {
            font-size: 40px;
        }

        .cta-section a {
            margin-top: 20px;
            background: #fff;
            color: #0b7b77;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            display: inline-block;
        }




         .pmp-cta {
            padding:80px 10%; text-align:center;
            background:#007bff; color:#fff;
        }
        .pmp-cta h2 {font-size:40px; margin-bottom:15px;}
        .pmp-btn {
            background:#fff; color:#007bff;
            padding:15px 30px; border-radius:40px;
            font-size:20px; font-weight:bold;
            text-decoration:none; display:inline-block;
            transition:0.3s;
        }
        .pmp-btn:hover {background:#e3e3e3;}



     @media(max-width:992px){
    .ielts-scenarios, .ielts-outcomes {
        grid-template-columns:1fr;
    }
    .ielts-info-section h2 {
        font-size:32px;
    }
    .ielts-info-section h3 {
        font-size:24px;
    }
    .ielts-info-section h4 {
        font-size:20px;
    }
    .ielts-info-section p {
        font-size:16px;
    }
}
@media(max-width:480px){
    .ielts-info-section h2 { font-size:28px; }
    .ielts-info-section h3 { font-size:20px; }
    .ielts-info-section h4 { font-size:18px; }
    .ielts-info-section p { font-size:15px; }
}


  /* @media(max-width:992px){
    .video-section .container { flex-direction:column; }
}
@media(max-width:480px){
    #videoModal video { height:250px; }
} */



@media(max-width:992px){
    .video-section .container { flex-direction:column; }
}
@media(max-width:480px){
    #videoModal iframe { height:250px; }
}


.grid-img {
    width: 100%;
    height: 300px; /* same height for all */
    object-fit: cover; /* ensures images fit without stretching */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}





/* ielet page css end */





/* index page css start */


 .course-area {
            padding: 80px 0;
            background: #f2f2f2;
            font-family: 'Poppins', sans-serif;
        }

        .course-heading {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 45px;
            color: #222;
        }

        
        .course-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }

        .course-box {
            width: 320px;
            height: 220px;
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            cursor: pointer;
            background: #000;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
            transition: transform .30s ease;
        }

        .course-box:hover {
            transform: translateY(-8px);
        }

        
        .course-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .40s ease;
        }

        .course-box:hover img {
            transform: scale(1.1);
            opacity: .65;
        }

        .course-title {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 16px 0;
            text-align: center;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.55);
            opacity: 0;
            transform: translateY(20px);
            transition: .35s ease;
        }

        .course-box:hover .course-title {
            opacity: 1;
            transform: translateY(0);
        }




        .course-box-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .course-box-link:hover .course-box {
            transform: scale(1.05);
            transition: transform 0.3s ease;
            cursor: pointer;
        } 




        /* pmp page start */

    
             /* Main Section */
.pmp-about {
    padding: 60px 10%;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image */
.pmp-about img {
    width: 45%;
    min-width: 300px;
    border-radius: 15px;
    animation: zoomIn 1.5s;
}

/* Animation */
@keyframes zoomIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Text */
.pmp-about-text {
    flex: 1;
    min-width: 300px;
}

.pmp-about-text h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.pmp-about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ----------- RESPONSIVE BREAKPOINTS ------------ */

/* Tablets */
@media (max-width: 992px) {
    .pmp-about {
        padding: 50px 5%;
        gap: 30px;
    }

    .pmp-about img {
        width: 48%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pmp-about {
        flex-direction: column;
        text-align: center;
    }

    .pmp-about img {
        width: 100%;
        max-width: 420px;
    }

    .pmp-about-text h2 {
        font-size: 28px;
    }

    .pmp-about-text p {
        font-size: 16px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .pmp-about {
        padding: 40px 20px;
    }

    .pmp-about-text h2 {
        font-size: 24px;
    }
}


        /* FEATURES */
     /* Why Choose PMP Section */
.pmp-features {
    padding: 60px 8%;
    background: #fff;
}

.pmp-features h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
}

/* Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Box Styling */
.feature-box {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.4s;
    animation: fadeInUp 1.2s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature-box h3 {
    margin: 10px 0;
    font-size: 22px;
}

/* Fade Animation */
@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* -------------------------------------------------- */
/*                 RESPONSIVE BREAKPOINTS             */
/* -------------------------------------------------- */

/* Tablets */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmp-features h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-box h3 {
        font-size: 20px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .pmp-features {
        padding: 40px 5%;
    }

    .pmp-features h2 {
        font-size: 26px;
    }
}

        /* CURRICULUM */
        .pmp-curriculum {padding:60px 10%; background:#eef2f7;}
        .pmp-curriculum h2 {font-size:35px; text-align:center; margin-bottom:25px;}
        .module-box {
            background:#fff; padding:20px; margin-bottom:15px;
            border-left:5px solid #007bff;
            border-radius:10px;
            animation: fadeInUp 1s;
        }
        .module-box h3 {margin:0 0 10px 0;}

        /* CTA */
        .pmp-cta {
            padding:80px 10%; text-align:center;
            background:#007bff; color:#fff;
        }
        .pmp-cta h2 {font-size:40px; margin-bottom:15px;}
        .pmp-btn {
            background:#fff; color:#007bff;
            padding:15px 30px; border-radius:40px;
            font-size:20px; font-weight:bold;
            text-decoration:none; display:inline-block;
            transition:0.3s;
        }
        .pmp-btn:hover {background:#e3e3e3;}


