/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    background: #f4f7fb;
    color: #222;
}


/* HERO SECTION */

.hero-section{
    padding: 20px 0 10px;
}

.hero-section img{
    width: 100%;
    height: 800px;
    object-fit: inherit;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* SECTION TITLE */

.section-title{
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    color: #0d1b52;
}

.section-title::after{
    content: '';
    width: 90px;
    height: 4px;
    background: linear-gradient(to right,#ff9800,#ff5722);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}


/* DASHBOARD CARDS */

.dashboard-card{
    padding: 35px 25px;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before{
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -30px;
    right: -30px;
}

.dashboard-card:hover{
    transform: translateY(-8px);
}

.dashboard-card i{
    font-size: 45px;
    margin-bottom: 15px;
}

.dashboard-card h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-card h5{
    font-size: 25px;
    color: white;
    margin: 0;
    font-weight: 500;
}


/* CARD COLORS */

.card1{
    background: linear-gradient(135deg,#2196f3,#0d47a1);
}

.card2{
    background: linear-gradient(135deg,#ff9800,#ef6c00);
}

.card3{
    background: linear-gradient(135deg,#4caf50,#1b5e20);
}

.card4{
    background: linear-gradient(135deg,#9c27b0,#4a148c);
}


/* TRAINING GALLERY */

.gallery img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.gallery img:hover{
    transform: scale(1.04);
}


/* GUIDELINES */

.guideline-box{
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.guideline-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.guideline-box i{
    font-size: 45px;
    color: #ff6b00;
    margin-bottom: 18px;
}

.guideline-box h5{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0d1b52;
}

.guideline-box p{
    color: #666;
    margin: 0;
    line-height: 1.7;
}


/* TABLE SECTION */

.table-section{
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.table{
    margin: 0;
}

.table thead th{
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.table tbody td{
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
}

.table-hover tbody tr:hover{
    background: #f1f7ff;
    transition: 0.3s ease;
}


/* STATUS COLORS */

.table tbody tr td:nth-child(3){
    font-weight: 600;
    color: #ff9800;
}

.table tbody tr td:nth-child(4){
    font-weight: 600;
    color: #4caf50;
}

.table tbody tr td:nth-child(5){
    font-weight: 600;
    color: #9c27b0;
}


/* RESPONSIVE */

@media(max-width:991px){

    .hero-section img{
        height: 1000px;
    }

    .dashboard-card{
        margin-bottom: 10px;
    }

    .section-title{
        font-size: 28px;
    }

}

@media(max-width:576px){

    .hero-section img{
        height: 220px;
    }

    .dashboard-card h2{
        font-size: 32px;
        color:white;
    }

    .dashboard-card h5{
        font-size: 16px;
    }

    .section-title{
        font-size: 24px;
    }

    .gallery img{
        height: 220px;
    }

}
.about-training{
    background:#fff;
    border-radius:20px;
    padding:60px 30px;
    margin:40px 0;
}

.about-training h2{
    color:#0d1b52;
    font-size:40px;
    font-weight:700;
}

.about-training p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    text-align:justify;
}

.training-side-img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.training-side-img:hover{
    transform:scale(1.03);
}