 /* -------------------Header Logo   Start-----------------------*/
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
   /* --- background:#fff;---*/
}

/* Logo container */
.logo-container a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

/* Logos */
.logo{
    max-width:100%;
    height:auto;
}

/* First Logo */
.main-logo{
   width: 500px;
    height: 65px;
}

/* Second Logo */
.sub-logo{
    height:65px;
    width: 65px;
}

/* Mobile Menu Button */
.menu-toggle{
    font-size:26px;
    border:2px solid #ff4d6d;
    padding:5px 10px;
    border-radius:8px;
    color:#ff4d6d;
    display:none;
    cursor:pointer;
}

/* Responsive */
@media(max-width:768px){

    .header{
        padding:10px;
    }

    .logo-container a{
        gap:10px;
    }

    .main-logo{
        width:260px;
        height: 38px;
       
    }
    
    .sub-logo{
        height:38px;
        width: 38px;
    }

    .menu-toggle{
        display:block;
    }
}
/* -------------------Header Logo   End-----------------------*/


/*-------------------------- Upcoming Events Start -----------------*/
.event-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.3s ease;
    height:100%;
}

.event-card:hover{
    transform:translateY(-6px);
}

/* Image */
.event-img{
    position:relative;
}

.event-img img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

/* Mobile image height */
@media (max-width:767px){
    .event-img img{
        height:200px;
    }
}

/* Date Badge */
.date-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#ff4d6d;
    color:#fff;
    padding:6px 14px;
    font-size:13px;
    font-weight:600;
    border-radius:20px;
}

/* Meta Overlay */
.event-meta{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(243, 213, 115, 0.9);
    display:flex;
    justify-content:space-between;
    padding:8px 15px;
    font-size:13px;
    color:#333;
}

/* Content */
.event-content{
    padding:15px;
}

.event-title{
    font-size:15px;
    font-weight:700;
    margin-bottom:12px;
}

.event-desc{
    font-size:14px;
    color:#6c757d;
    margin-bottom:20px;
    line-height:1.6;
}


/* Video */
.video-box video{
    width:100%;
    border-radius:15px;
}

/*-------------------------- Upcoming Events End -----------------*/

/*--------------------------Our Benefits Start -----------------*/
    :root {
        --primary: #f28b00;
        --primary-dark: #1e3a8a;
        --secondary: #3b82f6;
        --text-main: #0f172a;
        --text-body: #475569;
        --bg-color: #f8fafc;
        --card-bg: #ffffff;
        --success: #10b981;
    }

    /* Section */
    .integral-4-benefits-section {
        padding: 50px 10px;
        background: linear-gradient(135deg, #d8e4f1 0%, #f3f4f9 100%);
        overflow: hidden;
        position: relative;
    }

    .integral-4-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
        position: relative;
        z-index: 2;
    }

    /* Left Column */
    .integral-4-content-wrapper {
        flex: 1;
        max-width: 600px;
    }

    .integral-4-sub-heading {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--primary);
        background: #94c3e7;
        padding: 8px 16px;
        border-radius: 50px;
        margin-bottom: 20px;
    }

    .integral-4-content-wrapper h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--text-main);
        line-height: 1.2;
        margin: 0 0 25px 0;
    }

    .integral-4-content-wrapper p {
        font-size: 17px;
        color: var(--text-body);
        line-height: 1.7;
        margin-bottom: 35px;
    }

    /* List */
    .integral-4-benefits-list {
        list-style: none;
        padding: 0;
        display: grid;
        gap: 20px;
    }

    .integral-4-benefits-list li {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-main);
        background: white;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0,0,0,0.04);
        transition: transform 0.2s;
    }

    .integral-4-benefits-list li:hover {
        transform: translateX(10px);
        border-color: var(--primary);
    }

    .integral-4-icon-box {
        width: 32px;
        height: 32px;
        background: #94c3e7;
        color: #0f172a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 14px;
    }

    /* Right Column */
    .integral-4-stats-wrapper {
        flex: 1;
        position: relative;
    }

    .integral-4-stats-bg-decoration {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: var(--primary);
        opacity: 0.1;
        border-radius: 50%;
        filter: blur(60px);
        z-index: -1;
    }

    .integral-4-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .integral-4-stat-card {
        background: #94c3e7;
        padding: 35px 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .integral-4-stat-card:nth-child(3) {
        grid-column: span 2;
    }

    .integral-4-stat-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--primary);
        box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    }

    .integral-4-stat-icon {
        font-size: 32px;
        color: var(--primary);
        margin-bottom: 15px;
        background: #eff6ff;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
    }

    .integral-4-stat-card:hover .integral-4-stat-icon {
        background: var(--primary);
        color: white;
    }

    .integral-4-stat-number {
        font-size: 40px;
        font-weight: 800;
        background: #0f172a;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 5px;
        line-height: 1;
    }

    .integral-4-stat-label {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-body);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .integral-4-container {
            flex-direction: column;
            gap: 50px;
        }

        .integral-4-content-wrapper {
            text-align: center;
            max-width: 100%;
        }

        .integral-4-benefits-list li {
            justify-content: flex-start;
            text-align: left;
        }
    }

    @media (max-width: 600px) {
        .integral-4-content-wrapper h2 {
            font-size: 32px;
        }

        .integral-4-stats-grid {
            grid-template-columns: 1fr;
        }

        .integral-4-stat-card:nth-child(3) {
            grid-column: span 1;
        }
    }

/*--------------------------Our Benefits End -----------------*/


/*--------------------------What We Do Start -----------------*/
    /* ============================= */
    /* SECTION BACKGROUND */
    /* ============================= */

    .integral-2-section{
        position:relative;
        background:url('img/bg3.jpg') center/cover no-repeat;
        padding:100px 0;
        color:#fff;
    }

    .integral-2-overlay{
        position:absolute;
        inset:0;
        background:rgba(0, 0, 0, 0);
    }

    .integral-2-container{
        position:relative;
        z-index:2;
    }

    /* ============================= */
    /* TITLE */
    /* ============================= */

    .integral-2-title{
        text-align:center;
        margin-bottom:70px;
    }

    .integral-2-title h2{
        font-size:38px;
        font-weight:300;
        color: #fff;
    }

    .integral-2-title span{
        font-weight:700;
    }

    .integral-2-underline{
        width:80px;
        height:3px;
        background:#4a90e2;
        margin:15px auto 0;
    }

    /* ============================= */
    /* SERVICE BOX */
    /* ============================= */

    .integral-2-service{
        margin-bottom:50px;
        display:flex;
        gap:20px;
    }

    .integral-2-icon{
        min-width:60px;
        height:60px;
        border:1px solid rgba(255,255,255,0.5);
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:22px;
        color:#FFF;
        transition:0.3s;
    }

    .integral-2-service:hover .integral-2-icon{
        background:#94c3e7;
        color:#fff;
    }

    .integral-2-content h4{
        font-size:20px;
        font-weight:600;
        margin-bottom:10px;
        color: #fff;
    }

    .integral-2-content p{
        font-size:15px;
        color:#ccc;
        line-height:1.7;
        margin-bottom:10px;
    }

    .integral-2-content a{
        color:#fff;
        text-decoration:none;
        font-size:16px;
    }

    .integral-2-content a:hover{
        text-decoration:none;
    }

    /* ============================= */
    /* RESPONSIVE */
    /* ============================= */

    @media(max-width:991px){
        .integral-2-title h2{
            font-size:32px;
        }
    }

    @media(max-width:576px){
        .integral-2-service{
            flex-direction:column;
            align-items:flex-start;
        }
    }

/*--------------------------What We Do End -----------------*/


/*-------------------------- Upcoming Training Programs Start -----------------*/
    .event-card{
        background:#fff;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,0.06);
        transition:0.3s ease;
        height:100%;
    }

    .event-card:hover{
        transform:translateY(-6px);
    }

    /* Image */
    .event-img{
        position:relative;
    }

    .event-img img{
        width:100%;
        height:230px;
        object-fit:cover;
        display:block;
    }

    /* Mobile image height */
    @media (max-width:767px){
        .event-img img{
            height:200px;
        }
    }

    /* Date Badge */
    .date-badge{
        position:absolute;
        top:15px;
        right:15px;
        background:#0067b8;
        color:#fff;
        padding:6px 14px;
        font-size:13px;
        font-weight:600;
        border-radius:20px;
    }

    /* Meta Overlay */
    .event-meta{
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
        background:rgba(243, 213, 115, 0.9);
        display:flex;
        justify-content:space-between;
        padding:8px 15px;
        font-size:13px;
        color:#333;
    }

    /* Content */
    .event-content{
        padding:15px;
    }

    .event-title{
        font-size:15px;
        font-weight:700;
        margin-bottom:12px;
    }

    .event-desc{
        font-size:14px;
        color:#6c757d;
        margin-bottom:20px;
        line-height:1.6;
    }

    .watch-btn{
        background:#0067b8;
        color:#fff;
        padding:5px 12px;
        border-radius:30px;
        font-weight:600;
        text-decoration:none;
        display:inline-block;
        transition:0.3s;
    }


    .watch-btn:hover{
        background:#0067b8;
        color:#fff;
    }

    /* Video */
    .video-box video{
        width:100%;
        border-radius:15px;
    }
/*-------------------------- Upcoming Training Programs End -----------------*/

/*-------------------------- Footer Programs Start -----------------*/
    /* ============================= */
    /* FOOTER MAIN */
    /* ============================= */

    .integral-1-footer{
    position:relative;
    background:url('img/bg3.jpg') center/cover no-repeat;
    padding:90px 0 0;
    color:#fff;
    }

    .integral-1-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0);
    }

    .integral-1-container{
    position:relative;
    z-index:2;
    }

    /* ============================= */
    /* TITLES */
    /* ============================= */

    .integral-1-title{
    font-size:34px;
    font-weight:300;
    margin-bottom:35px;
    color: #fff;
    }

    .integral-1-title span{
    font-weight:700;
    }

    /* ============================= */
    /* MAP SECTION */
    /* ============================= */

    .integral-1-map-wrapper{
    position:relative;
    }

    .integral-1-map-wrapper iframe{
    width:100%;
    height:380px;
    border:0;
    }

    /* Address Card Overlay */
    .integral-1-address-box{
    position:absolute;
    bottom:30px;
    right:-50px;
    background: linear-gradient(135deg, #0067b8, #94c3e7);
    padding:40px;
    width:330px;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    }

    .integral-1-address-box h4{
    margin-bottom:15px;
    font-size:24px;
    color: #fff;
    }

    .integral-1-address-box p{
    font-size:15px;
    line-height:1.7;
    }

    /* ============================= */
    /* RIGHT SIDE */
    /* ============================= */

    .integral-1-desc{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
    }

    .integral-1-news-title{
    margin-bottom:15px;
    font-weight:600;
    font-size:18px;
    color: #fff;
    }

    /* Newsletter */
    .integral-1-newsletter{
    display:flex;
    margin-bottom:35px;
    }

    .integral-1-newsletter input{
    flex:1;
    padding:15px;
    border:none;
    outline:none;
    font-size:14px;
    }

    .integral-1-newsletter button{
    padding:15px 35px;
    background:#0067b8;
    border:none;
    color:#fff;
    font-weight:600;
    transition:0.3s;
    }

    .integral-1-newsletter button:hover{
    background:#94c3e7;
    }

    /* Contact Info */
    .integral-1-contact p{
    margin-bottom:12px;
    color:#ddd;
    font-size:18px;
    }

    /* ============================= */
    /* BOTTOM BAR */
    /* ============================= */

    .integral-1-bottom{
    margin-top:80px;
    background:#0067b8;
    text-align:center;
    padding:22px;
    font-size:18px;
    }

    .integral-1-bottom span{
    color:#fff;
    }

    /* ============================= */
    /* RESPONSIVE */
    /* ============================= */

    @media(max-width:991px){

    .integral-1-address-box{
        position:relative;
        right:0;
        bottom:0;
        width:100%;
        margin-top:20px;
    }

    .integral-1-map-wrapper iframe{
        height:300px;
    }

    .integral-1-newsletter{
        flex-direction:column;
        gap:12px;
    }

    .integral-1-newsletter button{
        width:100%;
    }

    .integral-1-title{
        font-size:28px;
    }
    }

    @media(max-width:576px){

    .integral-1-map-wrapper iframe{
        height:250px;
    }

    .integral-1-address-box{
        padding:25px;
    }
    }
/*-------------------------- Footer Programs End -----------------*/
 
/*-------------------------- TRAINING CALENDAR START 

        /* ===== TRAINING CALENDAR ===== */

        .training-header h1 {
            font-weight: 700;
            font-family: 'Times New Roman', Times, serif;
            letter-spacing: 1px;
            color: #450052;
        }

        .training-header h5 {
            font-size: 30px;
            font-family: 'Times New Roman', Times, serif;
            font-weight: bold;
            
            color: #555;
        }

        .training-header p {
            
            font-size: 20px;
            font-weight: bold;
            font-family: 'Times New Roman', Times, serif;
            color: #555;
        }
        p {
            
            font-size: 18px;
           /* font-weight: bold; */
            font-family: 'Times New Roman', Times, serif;
            color: black;
        }

        /* Section Titles */
        .training-section-title {
            background: #cfe2f3;
            display: inline-block;
            padding: 10px 25px;
            border-radius: 10px;
            color: red;
            font-weight: 600;
            font-family: 'Times New Roman', Times, serif;
        }

        /* Table Styling */


        .training-table thead {
            background: #6fa8dc;
            color: #000;
            font-family: 'Times New Roman', Times, serif;
            
        }

        .training-table th,
        .training-table td {
            vertical-align: middle !important;
            font-family: 'Times New Roman', Times, serif;
            color: black;
        }

        /* Buttons */
        .btn-view {
            background-color: #28689c;
            color: #fff;
            padding: 5px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 16px;
            font-family: 'Times New Roman', Times, serif;
            display: inline-block;
        }


        .btn-register {
            background-color: #28689c;
            color: #fff;
            padding: 5px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 16px;
            font-family: 'Times New Roman', Times, serif;
            display: inline-block;
        }



        /* Status Colors */
        .status-completed {
            color: green;
            font-weight: 600;
        }

        .status-progress {
            color: red;
            font-weight: 600;
        }
/* -------------------------- TRAINING CALENDAR END ----------------- */


            *{
                margin:0;
                padding:0;
                box-sizing:border-box;
                font-family:Times New Roman, Times, serif;
            }

            body{
                background:#f7f9fc;
            }

            .certificate-section{
                padding:70px 8%;
                background:#ffffff;
            }

            .section-title{
                text-align:center;
                margin-bottom:50px;
            }

            .section-title h2{
                font-size:38px;
                color:#0d2b5b;
                margin-bottom:12px;
                font-weight:700;
            }

            .section-title p{
                color:#000;
                max-width:900px;
                margin:auto;
                font-size:17px;
                line-height:1.6;
            }

            .certificate-grid{
                display:grid;
                grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
                gap:35px;
            }

            .certificate-card{
                background:#fff;
                border-radius:12px;
                overflow:hidden;
                box-shadow:0 12px 30px rgba(0,0,0,.08);
                transition:.35s;
                border:1px solid #eee;
            }

            .certificate-card:hover{
                transform:translateY(-8px);
                box-shadow:0 18px 40px rgba(0,0,0,.15);
            }

            .certificate-card img{
                width:100%;
                display:block;
            }

            .certificate-content{
                padding:25px;
                text-align:center;
            }

            .certificate-content h3{
                color:#0d2b5b;
                margin-bottom:12px;
                font-size:24px;
            }

            .certificate-content p{
                color:#666;
                line-height:1.7;
                font-size:15px;
            }

            @media(max-width:768px){
                .section-title h2{
                    font-size:30px;
                }

                .certificate-grid{
                    grid-template-columns:1fr;
                }
            }
    