/* =========================
   GLOBAL
========================= */

body{
    font-family:Arial,sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    padding:14px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.navbar-brand img{
    height:60px;
    width:auto;
    object-fit:contain;
}

.nav-link{
    color:#222 !important;
    font-weight:600;
    margin:0 8px;
    transition:.3s;
    position:relative;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#0d6efd;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    background:#0d6efd;
    border:none;
    border-radius:50px;
    padding:10px 24px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#084298;
    transform:translateY(-2px);
}

.btn-outline-primary{
    border-radius:50px;
    padding:10px 24px;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background:linear-gradient(135deg,#0d6efd,#00b4d8);
    color:#fff;
    padding:120px 0;
    position:relative;
}

.hero h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    margin-top:20px;
}

.hero img{
    max-height:500px;
}

/* =========================
   PAGE BANNER
========================= */

.page-banner{
    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5');

    background-size:cover;
    background-position:center;

    padding:110px 0;

    color:white;
}

.page-title{
    font-size:52px;
    font-weight:700;
}

.breadcrumb-nav{
    margin-top:15px;
    font-size:18px;
}

.breadcrumb-nav a,
.breadcrumb-nav span{
    color:#fff;
}

/* =========================
   CARDS
========================= */

.course-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    background:#fff;
}

.course-card:hover{
    transform:translateY(-8px);
}

.course-card img{
    height:220px;
    object-fit:cover;
}

/* =========================
   SECTION SPACING
========================= */

.section-padding{
    padding:80px 0;
}

/* =========================
   TITLES
========================= */

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.section-subtitle{
    color:#666;
    margin-bottom:50px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#06142e;
    color:white;
}

footer h5{
    font-weight:700;
}

footer a{
    color:white;
    transition:.3s;
}

footer a:hover{
    color:#0d6efd;
}

footer p{
    color:#cbd5e1;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.whatsapp img{
    width:60px;
    transition:.3s;
}

.whatsapp img:hover{
    transform:scale(1.1);
}

/* =========================
   FORM
========================= */

.form-control{
    border-radius:12px;
    padding:12px 15px;
    border:1px solid #ddd;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#0d6efd;
}

/* =========================
   TABLE
========================= */

.table{
    background:#fff;
}

.table th{
    background:#f8fafc;
}

/* =========================
   ALERTS
========================= */

.alert{
    border-radius:12px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.navbar{
    padding:10px 0;
}

.navbar-brand img{
    height:50px;
}

.hero{
    padding:80px 0;
    text-align:center;
}

.hero h1{
    font-size:38px;
}

.page-banner{
    padding:80px 0;
}

.page-title{
    font-size:36px;
}

.section-title{
    font-size:32px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.page-title{
    font-size:30px;
}

.section-title{
    font-size:28px;
}

.section-padding{
    padding:60px 0;
}

.btn-primary{
    width:100%;
}

.nav-link{
    margin:8px 0;
}

footer{
    text-align:center;
}

.whatsapp img{
    width:50px;
}

}