body{
    font-family:'Poppins',sans-serif;
    color:#222;
}
.logo{
    height:45px;
    width:auto;
    transition:.3s;
}

.logo:hover{
    transform:scale(1.05);
}
.hero{
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.90)),
    url("../images/hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.navbar-brand{
    font-weight:800;
}
/* Decorative shapes */

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#0d6efd;
    opacity:.08;
    border-radius:50%;
    left:-180px;
    top:-150px;
}

.hero::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#0d6efd;
    opacity:.05;
    border-radius:50%;
    right:-220px;
    bottom:-250px;
}

.hero-right{
    position:relative;
    min-height:400px;
}

/* ================= FORM ================= */

.hero-form{

    position:absolute;
    right:0;
   

    width:400px;

    border-radius:30px;

    background:#fff;

    z-index:20;

}

/* ================= STUDENT ================= */

.hero-student{

    position:absolute;

    width:430px;

    left:-300px;

    bottom:0;

    z-index:15;

}
.text-primary {
   
    color: #ee681a!important;
}
.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ee681a;
    --bs-btn-border-color: #ee681a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ee681a;
    --bs-btn-hover-border-color: #ee681a;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ee681a;
    --bs-btn-active-border-color: #ee681a;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ee681a;
    --bs-btn-disabled-border-color: #ee681a;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

/* ================= FLOATING ICONS ================= */

.float-icon{

    position:absolute;

    width:72px;

    height:72px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    animation:float 4s ease-in-out infinite;

    z-index:100;

}

.float-icon img{

    width:42px;

}

/* Google */

.icon-google{

    top:20px;

    left:-60px;

}

/* Meta */

.icon-meta{

    top:300px;

    left:-110px;

}

/* ChatGPT */

.icon-chatgpt{

    bottom:90px;

    left:-40px;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@media(max-width:991px){

.hero-right{

min-height:auto;

margin-top:60px;

}

.hero-form{

position:relative;

width:100%;

right:auto;

top:auto;

}

.hero-student{

display:none;

}

.float-icon{

display:none;

}

}

.mini-card{
    background:#fff;
    border-radius:18px;
    padding:20px 15px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.mini-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.15);
}

.mini-card i{
    font-size:32px;
    color:#0d6efd;
    margin-bottom:12px;
}

.mini-card h6{
    font-weight:600;
    margin:0;
}
.nav-link{
    font-weight:500;
    margin-left:15px;
}

.hero h1{
    line-height:1.2;
    font-size: 2.5rem;
}

.card{
    border-radius:20px;
}

.form-control,
.form-select{
    border-radius:10px;
    padding:10px;
        font-size: 1.01rem;
}

.btn{
    border-radius:10px;
    font-weight:600;
}

.shadow-lg{
    box-shadow:0 15px 40px rgba(0,0,0,.08)!important;
}

.hero .btn-primary{
    padding:10px 35px;
}

.hero .btn-warning{
    padding:14px;
}

.badge{
    font-size:14px;
}

@media(max-width:991px){

.hero{
text-align:center;
padding:60px 0;
}

.card{
margin-top:40px;
}

}
.hero-form h3{
    font-size: 1.05rem;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.icon-box{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#0d6efd;
}

.course-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.course-box:hover{
    transform:translateY(-8px);
}

.course-box i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.stats{
    background:#0d6efd;
    color:#fff;
}

.stats h2{
    font-size:45px;
    color:#fff !important;
}

.tool-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.tool-card:hover{
    transform:translateY(-8px);
}

.tool-card i{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:15px;
}

.journey-box{
padding:30px;
background:#fff;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
transition:.3s;
}

.journey-box:hover{
transform:translateY(-8px);
}

.journey-number{
width:70px;
height:70px;
margin:auto;
background:#0d6efd;
color:#fff;
font-size:28px;
font-weight:700;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-bottom:20px;
}

.testimonial-card{
background:#fff;
padding:40px;
border-radius:20px;
text-align:center;
max-width:700px;
margin:auto;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.cta-section {
    background: linear-gradient(135deg, #bb4500, #ee681a);
}

.mobile-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
background:#ee681a;
box-shadow:0 -5px 20px rgba(0,0,0,.1);
z-index:9999;
}

.mobile-bar a{
flex:1;
padding:10px;
text-align:center;
text-decoration:none;
color:#fff;
font-weight:600;
}

.mobile-bar i{
display: block;
    font-size: 15px;
    margin-bottom: 4px;
}


.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ee681a;
}

.course-box i {
    font-size: 45px;
    color: #ee681a;
    margin-bottom: 20px;
}

.stats {
    background: #ff5e00;
    color: #fff;
}

.tool-card i {
    font-size: 42px;
    color: #ee681a;
    margin-bottom: 15px;
}

.journey-number {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #343a40;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.nav-contact{
    color:#222;
    font-weight:500;
    transition:.3s;
}

.nav-contact:hover{
    color:#0d6efd;
}

.navbar{
    padding:15px 0;
}

.btn-warning{
    font-weight:600;
    border-radius:10px;
}

.faq-section{
    background:#f8fbff;
}

.custom-faq{

    max-width:900px;
    margin:auto;

}

.custom-faq .accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.custom-faq .accordion-button{

    padding:22px 25px;
    font-size:20px;
    font-weight:600;
    background:#fff;
    color:#222;
    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#0d6efd;
    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-body{

    padding:25px;
    font-size:17px;
    line-height:1.8;

}

.custom-faq .accordion-button:not(.collapsed) {
    background: #495057;
    color: #fff;
}
.custom-faq .accordion-button {
    padding: 15px 15px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    color: #222;
    box-shadow: none;
}

.placed-students{
    background:#f8fbff;
}

.student-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.student-card:hover{

    transform:translateY(-10px);

}

.student-img{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #6c757d;

    margin-bottom:20px;

}

.course{

    color:#666;

}

.company{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:20px 0;

}

.company img{

    width:35px;

}

.salary{

    color:#28a745;

    font-weight:700;

}

/* Sticky Social */

.sticky-social{

    position:fixed;

    top:50%;

    right:10px;

    transform:translateY(-50%);

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.sticky-social a{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    font-size:22px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.3s;

}

.sticky-social a:hover{

    transform:translateX(-8px) scale(1.08);

}

.call{
    background:#0d6efd;
}

.whatsapp{
    background:#25D366;
}

.email{
    background:#ff5722;
}

.instagram{
    background:linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45);
}

.facebook{
    background:#1877F2;
}

/* Mobile */

@media(max-width:768px){

.sticky-social{

right:10px;

}

.sticky-social a{

width:48px;

height:48px;

font-size:18px;

}

}
