/* ==========================
   GLOBAL CSS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    background:#fff;
}
body{
    font-family:'Poppins',sans-serif;
}
img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* ==========================
   COLORS
========================== */

:root{

    --primary:#0A1D6D;
    --secondary:#F9A11B;
    --white:#ffffff;
    --dark:#1f2937;
    --light:#f8f9fa;

}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:var(--primary);
    padding:10px 0;
    font-size:14px;
}

.top-bar a{
    color:#fff;
    margin-right:20px;
    transition:.3s;
}

.top-bar a:hover{
    color:var(--secondary);
}

.top-bar i{
    color:var(--secondary);
    margin-right:8px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-right{
    display:flex;
    justify-content:end;
    align-items:center;
    gap:20px;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    background:#fff;
    min-height:85px;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:70px;
}

.navbar-nav .nav-link{
    color:var(--dark);
    font-weight:600;
    padding:10px 15px !important;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:var(--secondary);
}

.demo-btn{
    background:var(--secondary);
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.demo-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ==========================
   SECTION COMMON
========================== */

section{
    padding:80px 0;
}

.section-title{
    font-size:40px;
    font-weight:700;
    color:var(--primary);
}

.section-subtitle{
    color:#666;
    margin-top:10px;
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 20px;
}

.footer h5{
    color:var(--secondary);
    margin-bottom:20px;
}

.footer p,
.footer li{
    color:#ddd;
}

.footer a{
    color:#ddd;
    transition:.3s;
}

.footer a:hover{
    color:var(--secondary);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:30px;
    padding-top:20px;
    text-align:center;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .navbar-brand img{
        height:60px;
    }

    .navbar-nav{
        padding-top:15px;
    }

    .demo-btn{
        display:inline-block;
        margin-top:15px;
    }

}

@media(max-width:768px){

    .top-contact{
        flex-direction:column;
        gap:5px;
        text-align:center;
    }

    .top-right{
        justify-content:center;
        margin-top:5px;
    }

    section{
        padding:60px 0;
    }

    .section-title{
        font-size:30px;
    }

}

@media(max-width:576px){

    .navbar-brand img{
        height:50px;
    }

    .section-title{
        font-size:26px;
    }

}

/*====================hero section==============*/
/* ==========================
   HERO SECTION
========================== */

.hero-section{

    padding:60px 0;

    background:linear-gradient(
    135deg,
    #ffffff,
    #f4f7ff
    );

    overflow:hidden;

}

.hero-tag{

    display:inline-block;

    background:#e9f0ff;

    color:#0A1D6D;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-title{

    font-size:4rem;

    font-weight:700;

    line-height:1.15;

    color:#0A1D6D;

    margin-bottom:20px;

}

.hero-title span{

    color:#F9A11B;

}

.hero-text{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

    max-width:600px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px 20px;

    margin-bottom:30px;

}

.hero-features span{

    font-size:15px;

    font-weight:600;

    color:#333;

}

.hero-features i{

    color:#F9A11B;

    margin-right:5px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.hero-btn{

    background:#F9A11B;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#0A1D6D;

    color:#fff;

}

.hero-outline-btn{

    border:2px solid #0A1D6D;

    color:#0A1D6D;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hero-outline-btn:hover{

    background:#0A1D6D;

    color:#fff;

}

.hero-image{

    width:100%;

    max-width:520px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/* Quick Stats */

.hero-stats{

    margin-top:35px;

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.hero-stat h3{

    color:#0A1D6D;

    font-size:28px;

    font-weight:700;

    margin-bottom:5px;

}

.hero-stat p{

    margin:0;

    font-size:14px;

    color:#666;

}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .hero-section{

        padding:50px 0;

        text-align:center;

    }

    .hero-title{

        font-size:3rem;

    }

    .hero-text{

        margin:auto auto 25px;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .hero-image{

        margin-top:40px;

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .hero-section{

        padding:40px 0;

    }

    .hero-title{

        font-size:2.3rem;

        line-height:1.2;

    }

    .hero-text{

        font-size:16px;

    }

    .hero-btn,
    .hero-outline-btn{

        width:100%;

        text-align:center;

    }

    .hero-features{

        gap:10px;

        justify-content:center;

    }

    .hero-stats{

        gap:20px;

    }

    .hero-stat h3{

        font-size:22px;

    }

}
/*==========courses=======*/
/* ==========================
   COURSES SECTION
========================== */

.courses-section{
    padding:80px 0;
    background:#ffffff;
}

.section-tag{
    display:inline-block;
    background:#e9f0ff;
    color:#0A1D6D;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.course-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    height:100%;

    transition:.3s;

    border:1px solid #edf0f7;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    position:relative;

}

.course-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.course-icon{

    width:70px;

    height:70px;

    background:#f4f7ff;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.course-icon i{

    font-size:30px;

    color:#0A1D6D;

}

.course-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#0A1D6D;

}

.course-card p{

    color:#666;

    margin:0;

    line-height:1.8;

}

.coming-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:#F9A11B;

    color:#fff;

    padding:5px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:600;

}

.coming-soon{

    border:2px dashed #F9A11B;

}

/*======why chose us =======*/
/* ==========================
   WHY CHOOSE US
========================== */

.why-choose-section{

    padding:80px 0;

    background:#f8faff;

}

.why-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.3s;

    border:1px solid #edf0f7;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.why-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    background:#eef3ff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.why-icon i{

    font-size:34px;

    color:#0A1D6D;

}

.why-card h4{

    color:#0A1D6D;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}
/*.why-icon{*/
/*    background:#fff7eb;*/
/*}*/

/*.why-icon i{*/
/*    color:#F9A11B;*/
/*}*/
/*=======About us ==========*/
/* ==========================
   ABOUT SECTION
========================== */

.about-section{

    padding:90px 0;

    background:#fff;

}

.about-image{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.about-text{

    color:#666;

    line-height:1.9;

    margin-bottom:15px;

}

.about-features{

    margin-top:25px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.about-feature{

    font-weight:600;

    color:#333;

}

.about-feature i{

    color:#F9A11B;

    margin-right:8px;

}

@media(max-width:768px){

    .about-features{

        grid-template-columns:1fr;

    }

}
/*=========college free collabration========*/
/* ==========================
   WORKSHOPS SECTION
========================== */

.workshop-section{

    padding:90px 0;

    background:#f8faff;

}

.workshop-card{

    background:#fff;

    padding:30px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.3s;

    border:1px solid #edf0f7;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.workshop-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.workshop-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    background:#eef3ff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.workshop-icon i{

    font-size:34px;

    color:#0A1D6D;

}

.workshop-card h4{

    color:#0A1D6D;

    font-weight:700;

    margin-bottom:15px;

}

.workshop-card p{

    color:#666;

    margin:0;

    line-height:1.8;

}

.workshop-benefits{

    background:#fff;

    padding:25px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.benefit-item{

    font-weight:600;

    color:#333;

}

.benefit-item i{

    color:#F9A11B;

    margin-right:8px;

}

@media(max-width:768px){

    .workshop-benefits{

        gap:15px;

        justify-content:flex-start;

    }

}

/*=======how we can teach =======*/
.gallery-section{
    padding:90px 0;
    background:#fff;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-large{
    height:100%;
    min-height:620px;
}

.gallery-large img{
    min-height:620px;
}

.training-highlights{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    background:#f8faff;
    padding:25px;
    border-radius:20px;
}

.highlight-item{
    font-weight:600;
}

.highlight-item i{
    color:#F9A11B;
    margin-right:8px;
}

@media(max-width:991px){

    .gallery-large,
    .gallery-large img{
        min-height:350px;
    }

}

@media(max-width:768px){

    .gallery-section{
        padding:70px 0;
    }

    .gallery-large,
    .gallery-large img{
        min-height:280px;
    }

}

/*====================================*/
/*=============About page============*/
/*====================================*/
/* ==========================
   PAGE BANNER
========================== */

.page-banner{

    background:linear-gradient(
    135deg,
    #0A1D6D,
    #1d4ed8,
    #F9A11B
    );

    padding:90px 0;

    color:#fff;

    text-align:center;

}

.page-banner h1{

    font-size:3rem;

    font-weight:700;

    margin-bottom:10px;

}

.page-banner p{

    font-size:18px;

    margin:0;

    opacity:.9;

}

@media(max-width:768px){

    .page-banner{

        padding:70px 0;

    }

    .page-banner h1{

        font-size:2rem;

    }

}
/* ==========================
   ABOUT MAIN
========================== */

.about-main-section{

    padding:90px 0;

}

.about-main-image{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.about-main-text{

    color:#666;

    line-height:1.9;

    margin-bottom:15px;

}

/*========mission & vision ===========*/
.mission-section{

    padding-bottom:90px;

}

.mission-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    height:100%;

}

.mission-card i{

    font-size:40px;

    color:#F9A11B;

    margin-bottom:20px;

}

.mission-card h3{

    color:#0A1D6D;

    margin-bottom:15px;

}

/*==========courses ===========*/
.courses-page-section{
    padding:90px 0;
}

.course-grid-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

    position:relative;

}

.course-grid-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.course-grid-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.course-grid-content{

    padding:25px;

}

.course-grid-content h4{

    color:#0A1D6D;

    font-weight:700;

    margin-bottom:15px;

}

.course-grid-content ul{

    padding-left:0;

    margin-bottom:20px;

}

.course-grid-content ul li{

    list-style:none;

    margin-bottom:10px;

    color:#555;

}

.course-grid-content ul li::before{

    content:"✓ ";

    color:#F9A11B;

    font-weight:bold;

}

.course-duration{

    display:block;

    font-weight:600;

    color:#0A1D6D;

}

.coming-soon-card{

    border:2px dashed #F9A11B;

}

.coming-soon-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:#F9A11B;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    z-index:2;

}