 /* Accreditation Logos */
.accreditation-logos {
    padding: 70px 20px;
    background: #f8fafc;
}

.accreditation-logo-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.logo-card {
    width: 280px;
    height: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-card {
        width: 100%;
        max-width: 300px;
        height: 160px;
    }
}
  /* new code # */


  .container.alt-bg { background: #fff;
   border-radius: 0; 
 padding-top: 10px;}


 /*new css code  * */
 .hero-inner{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:50px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#0b6efd;
    font-weight:700;
    border-radius:30px;
    font-size:14px;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.hero-title{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-sub{
    color:#fffcfc;
    line-height:1.9;
    margin-bottom:18px;
}

.hero-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.highlight-item{
    background:#fff;
    border:1px solid #e5eaf5;
    padding:14px 18px;
    border-radius:12px;
    font-weight:600;
}

.hero-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid #e5eaf5;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.hero-card h3{
    margin-bottom:15px;
    color:#0b6efd;
}

.accreditation-list{
    list-style:none;
    padding:0;
    margin:20px 0 0;
}

.accreditation-list li{
    padding:12px 0;
    border-bottom:1px solid #eef2f7;
    font-weight:500;
}

.accreditation-list li:last-child{
    border-bottom:none;
}

@media(max-width:992px){

    .hero-inner{
        grid-template-columns:1fr;
    }

    .hero-highlights{
        grid-template-columns:1fr;
    }

}



/* ==========================
   FAQ SECTION
========================== */

.faq{
    max-width:900px;
    margin:70px auto;
    padding:0 20px;
}

/* Heading */

.faq-cta-lead{
    text-align:center;
    margin-bottom:40px;
}

.faq-section-title{
    margin:0 0 12px;
    padding:0;
    font-size:38px;
    color:#222;
}

.faq-section-sub{
    margin:0;
    padding:0;
    font-size:17px;
    color:#666;
    line-height:1.7;
}

/* Question */

.q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    border:1px solid #e4eaf5;
    border-radius:12px;
    padding:18px 22px;
    margin-bottom:12px;
    cursor:pointer;
    transition:.3s;
}

.q:hover{
    border-color:#0b6efd;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.q h4{
    margin:0;
    flex:1;
    font-size:18px;
    font-weight:600;
    color:#222;
    padding-right:15px;
}

.q button{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#eef5ff;
    color:#0b6efd;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.q:hover button{
    background:#0b6efd;
    color:#fff;
}

/* Answer */

.a{
    display:none;
    background:#f8fbff;
    border-left:4px solid #0b6efd;
    border-radius:0 0 12px 12px;
    padding:18px 22px;
    margin:-5px 0 18px;
    color:#555;
    line-height:1.8;
}

/* Open State */

.q.active{
    border-color:#0b6efd;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
}

.q.active + .a{
    display:block;
}

.q.active button{
    background:#0b6efd;
    color:#fff;
}

/* ==========================
   TABLET
========================== */

@media (max-width:768px){

    .faq{
        margin:60px auto;
        padding:0 15px;
    }

    .faq-section-title{
        font-size:30px;
    }

    .faq-section-sub{
        font-size:16px;
    }

    .q{
        padding:16px;
    }

    .q h4{
        font-size:17px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:480px){

    .faq{
        margin:50px auto;
        padding:0 15px;
    }

    .faq-section-title{
        font-size:26px;
        line-height:1.3;
    }

    .faq-section-sub{
        font-size:15px;
        margin-top:8px;
    }

    .q{
        padding:15px;
    }

    .q h4{
        font-size:16px;
        line-height:1.5;
    }

    .q button{
        width:30px;
        height:30px;
        font-size:20px;
    }

    .a{
        padding:15px;
        font-size:15px;
    }

}