
/* ===== Banner code start ===== */
 
.mainHeroSection {
    position: relative;
    background: url('/assets/images/banner2/new-course-banner2.webp') center/cover no-repeat;
    padding: 47px 0;
    overflow: hidden;
    padding-bottom: 30px;
}

/* 🔥 dark overlay for readability */
.mainHeroSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,35,80,0.88) 0%,
        rgba(10,35,80,0.70) 45%,
        rgba(10,35,80,0.25) 100%
    );
    z-index: 1;
}

/* content above overlay */
.hero-left,
.hero-form {
    position: relative;
    z-index: 3;
}

/* 🎯 SINGLE GIRL IMAGE */
.hero-girl {
    position: absolute;
    bottom: 0;
    left: 48%;
    transform: translateX(-50%);
    max-height: 480px;
    z-index: 2;
    pointer-events: none;
}

/* button styling */
.back-btn {
    background: #f17900;
    padding: 14px 34px;
    border-radius: 40px;
    color: #fff !important;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

/* mobile responsive */
@media (max-width: 991px) {
    .mainHeroSection {
        padding: 60px 0;
        text-align: center;
    }

    .hero-girl {
        position: static;
        transform: none;
        display: block;
        margin: 30px auto 0;
        max-height: 300px;
    }

    .hero-form {
        margin-top: 30px;
    }
}
.acceration{
        max-width: 350px;
    width: 100%;
    margin-top: 20px;
}

/* ===== Banner code end ===== */


/* ===== Card code start ===== */

/* Container */
.info-cards{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:40px auto;
}

/* Card */
.info-card{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px 20px;
    background:#f0f6ff;
    border-radius:20px;
    border:1.5px solid #555;
    min-width:270px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transition:all 0.3s ease;
    cursor:pointer;
}

/* Icon */
.icon{
    width:60px;
    height:60px;
    background:#ff6a2c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:all 0.3s ease;
}

/* Text */
.card-text h4{
    margin:0;
    font-size:22px;
    font-weight:600;
    transition:0.3s;
}

.card-text p{
    margin:0;
    font-size:18px;
    transition:0.3s;
}

.card-text span{
    transition:0.3s;
}

/* Hover Effect */
.info-card:hover{
    background:#2e4c93;
    border-color:#2e4c93;
}

/* Hover Text White */
.info-card:hover h4,
.info-card:hover p,
.info-card:hover span{
    color:#fff;
}

/* Hover Icon Orange */
.info-card:hover .icon{
    background:#ff6a2c;
    color:#fff;
}

.explore-btn{
    display:inline-block;
    background:#ff6a2c;
    padding:7px 18px;
    border-radius:6px;
    color:#fff;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.explore-btn:hover{
    background:#ff5a1f;
}

/* Mobile Responsive */
@media (max-width:768px){

.info-cards{
    gap:15px;
}

.info-card{
    width:100%;
    padding:22px;
}

}
/* ===== Card code end ===== */


/* ===== Potential Job start ===== */
/* Wrapper to center the page content */
.page-wrapper {
    display: flex;
    justify-content: center;   
    align-items: center;       
    min-height: 100vh;         
    background-color: #ffffff; /* Light gray background for the full page */
}

/* Unique wrapper for this section only */
.job-certificate-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 85%;
    background-color: #ffffff; /* White background for the content */
    padding: 20px;
    border-radius: 12px;
}

/* Left section: Job Roles */
.job-roles {
    background-color: #ffffff; /* White background for the job roles section */
    color: #333333; /* Dark text for better readability */
    padding: 30px;
    border-radius: 15px;
    width: 45%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid #183985; /* Blue border */
}

.job-roles h2 {
    font-size: 24px;  /* Adjust font size */
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;  /* Centered heading */
    background-color: #183985; /* Blue background for the heading */
    color: white; /* White text for the heading */
    padding: 10px; /* Padding to give it some space around the text */
    border-radius: 8px; /* Rounded corners for the header */
}

.job-roles ul {
    list-style: none;
    padding: 0;
}

.job-roles ul li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.job-roles ul li::before {
    content: "✓";
    color: white;  /* White checkmark to match the white text */
    position: absolute;
    left: 0;
    top: 0;
}

/* Right section: Certificate */
.certificate {
    width: 45%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 4px;
    /*border: 4px solid black; */
}

.certificate img {
    width: 100%;           
    max-width: 400px;      
    height: auto;          
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;   
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .job-certificate-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .job-roles, .certificate {
        width: 80%;
        margin-bottom: 20px; /* Add spacing between the sections */
    }
}
/* ===== Potential Job end ===== */

/* ===== advantage-section code start CSS Code Start ===== */
.advantage-section {
    background: #ffffff;
    padding: 60px 20px;
}

.advantage-container {
    max-width: 1360px;
    margin: 0 auto;
}

.advantage-heading {
    text-align: center;
    margin-bottom: 50px;
}

.advantage-heading h2 {
    font-weight: 700;
    color: #020334;
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advantage-heading p {
    font-size: 16px;
    color: #111;
    margin: 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.advantage-item {
    text-align: center;
    padding: 45px 20px 38px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.advantage-item:nth-child(4),
.advantage-item:nth-child(8) {
    border-right: none;
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.advantage-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px;
    line-height: 1.3;
}

.advantage-item p {
    font-size: 18px;
    color: #222;
    margin: 0;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-item:nth-child(4),
    .advantage-item:nth-child(8) {
        border-right: 1px solid #d7d7d7;
    }

    .advantage-item:nth-child(2),
    .advantage-item:nth-child(4),
    .advantage-item:nth-child(6),
    .advantage-item:nth-child(8) {
        border-right: none;
    }

    .advantage-heading h2 {
        font-size: 30px;
    }

    .advantage-item h3 {
        font-size: 20px;
    }

    .advantage-item p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .advantage-section {
        padding: 20px 15px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        border-right: none !important;
        padding: 30px 15px;
    }

    .advantage-heading {
        margin-bottom: 35px;
    }

    .advantage-heading h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .advantage-heading p {
        font-size: 15px;
        line-height: 1.5;
    }

    .advantage-item h3 {
        font-size: 18px;
    }

    .advantage-item p {
        font-size: 15px;
    }

    .advantage-icon img {
        width: 70px;
        height: 70px;
    }
}
/* ===== advantage-section code start CSS Code End ===== */

/* ===== Regulatory Approvals/ Recognitions CSS start ===== */

.approval-section {
    background: #eef1f6;
    padding: 80px 20px;
    text-align: center;
}

.approval-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.approval-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0b0d3b;
    margin-bottom: 60px;
}

/* Logo Row Fix */
.approval-logos {
    display: flex;
    justify-content: space-between; /* equal left-right spacing */
    align-items: center;
}

/* Each Logo */
.logo-item {
    flex: 1;
    text-align: center;
}

/* Bigger Logo Size */
.logo-item img {
    width: 170px;   /* increased size */
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover */
.logo-item img:hover {
    transform: scale(1.08);
}

/* Tablet */
@media (max-width: 992px) {
    .approval-section h2 {
        font-size: 34px;
    }

    .logo-item img {
        width: 140px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .approval-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .logo-item {
        flex: unset;
    }

    .logo-item img {
        width: 110px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .approval-section {
        padding: 60px 15px;
    }

    .approval-section h2 {
        font-size: 26px;
    }

    .logo-item img {
        width: 90px;
    }
}

/* ===== Regulatory Approvals/ Recognitions CSS END ===== */