*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
}

.custom-navbar{
    background:#0d1b2a;
}

.navbar-brand{
    font-size:28px;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
}

.hero-section{
    background:linear-gradient(
    135deg,
    #0d1b2a,
    #1b263b,
    #415a77);
    color:white;
    padding-top:100px;
}

.hero-title{
    font-size:55px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-text{
    font-size:20px;
    margin-bottom:30px;
}

.hero-btns a{
    margin-right:15px;
}

.hero-image{
    max-width:90%;
}

@media(max-width:768px){

.hero-title{
    font-size:36px;
}

.hero-text{
    font-size:16px;
}

.hero-section{
    text-align:center;
}

}


/* Sections */
.section-title{
    font-size:40px;
    font-weight:700;
    color:#0d1b2a;
}

.section-subtitle{
    color:#666;
}

.services-section{
    background:#f8f9fa;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.plan-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.featured{
    transform:scale(1.05);
}

.price{
    font-size:40px;
    font-weight:bold;
    color:#198754;
    margin:20px 0;
}

.plan-card ul{
    list-style:none;
    padding:0;
}

.plan-card ul li{
    padding:10px 0;
}

.why-us{
    background:#f8f9fa;
}

.why-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.why-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:15px;
}

.cta-section{
    background:linear-gradient(135deg,#0d1b2a,#415a77);
    color:white;
    padding:80px 0;
}

.footer{
    background:#0d1b2a;
    color:white;
    padding:40px 0;
}

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:white;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    font-size:30px;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.whatsapp-float:hover{
    color:white;
}

.service-card,
.plan-card,
.why-card{
    transition:all .4s ease;
}


/* Stat Section css */
.stats-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.stat-box{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h2{
    color:var(--gold);
    font-size:42px;
    font-weight:800;
}

/* Stat Section Ends */
