/* =========================
   HEADER BASE STYLE
========================= */



body {
    padding-top: 60px;
    /* Reduced space */
}

/* ================= HEADER ================= */

.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 10px 0;
    /* Reduced padding */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Default logo size smaller */
.logo-left img,
.logo-right img {
    height: 50px;
    /* Smaller */
    transition: all 0.3s ease;
}

/* ================= SHRINK EFFECT ================= */

.custom-header.shrink {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-header.shrink .logo-left img,
.custom-header.shrink .logo-right img {
    height: 38px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    body {
        padding-top: 70px;
    }

    .logo-left img,
    .logo-right img {
        height: 40px;
    }

    .custom-header.shrink .logo-left img,
    .custom-header.shrink .logo-right img {
        height: 32px;
    }

    .phonep{
        width: 100%!important;
    }
}


/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    background: url('./assets/img/banner.png') center center/cover no-repeat;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Light overlay for readability */

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* =========================
   LEFT TEXT
========================= */


.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #8b0000;
    line-height: 1.3;
}

.hero-text p {
    font-size: 19px;
    margin-top: 20px;
    color: #333;
    line-height: 1.7;
    font-weight: 600;
}

/* =========================
   FORM DESIGN (Exact Match)
========================= */

.form-box {
    background: #f5f5f5;
    padding: 30px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-box h4 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-size: 23px;
}

.form-divider {
    height: 2px;
    background: #dcdcdc;
    margin-bottom: 25px;
}

.custom-input {
    background: #e9e9e9;
    border: none;
    height: 50px;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
}

.custom-input:focus {
    background: #e0e0e0;
    box-shadow: none;
    outline: none;
}

select.custom-input {
    appearance: none;
    background: #e9e9e9 url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548L10 12.032l4.484-4.484L16 8.064 10 14.064 4 8.064z'/></svg>") no-repeat right 15px center;
    background-size: 16px;
}

.btn-download {
    background: #d4a017;
    border: none;
    height: 52px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

.btn-download:hover {
    background: #b8860b;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media(max-width:767px) {

    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-section::before {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* =========================
   PROGRAM STRIP
========================= */

.program-strip{
    background:#c7352e; /* Same red shade */
    padding:35px 0;
}

.program-strip p{
    color:#ffffff;
    font-size:16px;
    margin:0;
    font-weight:500;
    line-height:1.5;
}

/* Vertical Dividers */
.strip-item{
    position:relative;
    padding:10px 25px;
}

@media(min-width:992px){
    .strip-item:not(:last-child)::after{
        content:"";
        position:absolute;
        right:0;
        top:15%;
        height:70%;
        width:1px;
        background:rgba(255,255,255,0.5);
    }
}

/* Responsive */
@media(max-width:991px){
    .program-strip{
        text-align:center;
    }

    .strip-item{
        margin-bottom:15px;
    }

    .strip-item::after{
        display:none;
    }
}


/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#f2f2f2;
    padding:80px 0;
}

.about-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-content h2{
    font-size:34px;
    font-weight:700;
    color:#8b0000;
    margin-bottom:25px;
}

.about-content ul{
    padding-left:18px;
}

.about-content ul li{
    margin-bottom:12px;
    font-size:16px;
    color:#444;
    line-height:1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-section{
        padding:60px 0;
    }

    .about-content h2{
        font-size:28px;
        text-align:center;
    }

    .about-content{
        text-align:left;
    }
}

@media(max-width:767px){

    .about-section{
        padding:50px 0;
    }

    .about-content h2{
        font-size:24px;
        text-align:center;
    }
}

/* =========================
   PROGRAMME OVERVIEW
========================= */

.programme-overview{
    background:#f2f2f2;
    padding:80px 0;
}

.programme-overview h2{
    font-size:32px;
    font-weight:700;
    color:#8b0000;
    margin-bottom:20px;
}

.overview-text{
    max-width:750px;
    margin:0 auto 40px auto;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

/* Red Boxes */
.overview-box{
    background:#c7352e;
    color:#fff;
    padding:14px 20px;
    border-radius:6px;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

/* Hover Effect */
.overview-box:hover{
    background:#a82822;
}

/* Responsive */
@media(max-width:991px){

    .programme-overview{
        padding:60px 0;
    }

    .programme-overview h2{
        font-size:26px;
    }

    .overview-text{
        font-size:15px;
    }
}

@media(max-width:767px){

    .programme-overview{
        padding:50px 0;
    }

    .overview-box{
        font-size:14px;
    }
}

/* =========================
   PROGRAMME DESIGN SECTION
========================= */

.programme-design{
    background: #fff !important;;
    padding:80px 0;
}

.programme-design h2{
    font-size:32px;
    font-weight:700;
    color:#8b0000;
}

/* Cards */
.design-card{
    background:#ffffff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    height:100%;
}

.design-card h5{
    font-weight:600;
    margin-bottom:15px;
}

.design-card ul{
    padding-left:18px;
    margin:0;
}

.design-card ul li{
    margin-bottom:10px;
    font-size:15px;
    color:#444;
}

/* Responsive */
@media(max-width:991px){
    .programme-design{
        padding:60px 0;
    }

    .programme-design h2{
        font-size:26px;
    }
}

@media(max-width:767px){
    .programme-design{
        padding:50px 0;
    }
}

/* =========================
   BUILDING BLOCKS SECTION
========================= */

.building-blocks{
    position:relative;
    background:url('assets/img/bottomimg.png') center center/cover no-repeat;
    padding:90px 0;
    color:#fff;
}



.building-blocks .container{
    position:relative;
    z-index:2;
}

.building-blocks h2{
    font-size:32px;
    font-weight:700;
    color:#ffffff;
}

/* White Content Boxes */
.block-box{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.block-box ul{
    margin:0;
    padding-left:18px;
}

.block-box ul li{
    margin-bottom:12px;
    font-size:15px;
    color:#333;
}

/* Responsive */
@media(max-width:991px){

    .building-blocks{
        padding:70px 0;
    }

    .building-blocks h2{
        font-size:26px;
    }
}

@media(max-width:767px){

    .building-blocks{
        padding:60px 0;
    }
}

/* =========================
   LIST OF COURSES SECTION
========================= */

.list-courses{
    background:#f2f2f2;
    padding:80px 30px;
}

.list-courses h2{
    font-size:32px;
    font-weight:700;
    color:#8b0000;
}

/* Term Label */
.term-label{
    display:inline-block;
    background:#e6e6e6;
    padding:6px 14px;
    font-weight:600;
    margin-bottom:15px;
    border-radius:4px;
}

/* Course List */
.course-list{
    padding-left:18px;
    margin:0;
}

.course-list li{
    margin-bottom:8px;
    font-size:15px;
    color:#333;
}

/* Bottom Red Bar */
.course-note{
    background:#c7352e;
    color:#ffffff;
    text-align:center;
    padding:18px;
    margin-top:40px;
    font-size:15px;
}

/* Responsive */
@media(max-width:991px){

    .list-courses{
        padding:60px 0 0 0;
    }

    .list-courses h2{
        font-size:26px;
    }
}

@media(max-width:767px){

    .list-courses{
        padding:50px 0 0 0;
    }
}

/* =========================
   ADMISSION PROCESS SECTION
========================= */

.admission-section{
    position:relative;
    background:url('./assets/img/b1.png') center right/cover no-repeat;
    padding:60px 0;
    color:#ffffff;
}

 
.admission-content{
    position:relative;
    z-index:2;
}

.admission-section h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
}

.section-subtitle{
    font-weight:600;
    margin-bottom:10px;
}

.admission-section ul{
    padding-left:18px;
}

.admission-section ul li{
    margin-bottom:8px;
    font-size:15px;
    line-height:1.6;
}

/* Responsive */
@media(max-width:991px){

    .admission-section{
        padding:80px 0;
    }

    .admission-section::before{
        width:100%;
        background:rgba(120, 0, 0, 0.92);
    }

    .admission-section h2{
        font-size:26px;
    }
}

@media(max-width:767px){

    .admission-section{
        padding:70px 0;
    }
}

/* =========================
   EVALUATION & FEE SECTION
========================= */

.evaluation-fee{
    font-size:15px;
}

.evaluation-left{
    background:#f2f2f2;
    padding:80px 60px;
}

.evaluation-right{
    background:#c7352e;
    color:#ffffff;
    padding:80px 60px;
}

.evaluation-left h2,
.evaluation-right h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.evaluation-left ul{
    padding-left:18px;
}

.evaluation-left ul li{
    margin-bottom:8px;
}

.evaluation-right hr{
    border-color:rgba(255,255,255,0.5);
    margin:25px 0;
}

.fee-block p{
    margin-bottom:6px;
}

.inner-content{
    max-width:550px;
}

/* Responsive */
@media(max-width:991px){

    .evaluation-left,
    .evaluation-right{
        padding:60px 30px;
    }

    .evaluation-left h2,
    .evaluation-right h2{
        font-size:24px;
    }
}

/* =========================
   CERTIFICATION SECTION
========================= */

.certification-section{
    background:#f2f2f2;
    padding:80px 0;
}

.certification-section h2{
    font-size:32px;
    font-weight:700;
    color:#8b0000;
}

/* Certificate Image */
.certificate-wrapper img{
    max-width:750px;
    width:100%;
    height:auto;
    border-radius:6px;
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media(max-width:991px){
    .certification-section{
        padding:60px 0;
    }

    .certification-section h2{
        font-size:26px;
    }
}

@media(max-width:767px){
    .certification-section{
        padding:50px 0;
    }
}


/* =========================
   FOOTER SECTION
========================= */

.custom-footer{
    position:relative;
    background:url('./assets/img/footer.png') center center/cover no-repeat;
    padding:80px 0 0 0;
    color:#ffffff;
}

 

.footer-content{
    position:relative;
    z-index:2;
}

.footer-logo img{
    height:50px;
}

.footer-content p{
    margin-bottom:10px;
    font-size:15px;
    line-height:1.6;
}

.footer-description{
    max-width:550px;
}

/* Bottom Bar */
.footer-bottom{
    position:relative;
    z-index:2;
    border-top:1px solid rgba(255,255,255,0.4);
    margin-top:40px;
    padding:20px 0;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
}

.footer-bottom a:hover{
    text-decoration:underline;
}

/* Responsive */
@media(max-width:767px){

    .custom-footer{
        padding:60px 0 0 0;
    }

    .footer-bottom .container{
        flex-direction:column;
        gap:10px;
    }
}
