/* ==========================
   GLOBAL STYLES
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f8fc;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
    border-radius:10px;
}

.logo h2{
    font-size:28px;
    color:#0c4da2;
    margin:0;
}

.logo span{
    color:#19b76a;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

nav a:hover{
    color:#0c4da2;
}

/* ==========================
BUTTONS
========================== */

.btn{
    background:#0c4da2;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    display:inline-block;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:#08306b;
}

.btn-outline{
    border:2px solid #0c4da2;
    color:#0c4da2;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    margin-left:10px;
    transition:.3s;
}

.btn-outline:hover{
    background:#0c4da2;
    color:white;
}

/* ==========================
HERO
========================== */

.hero{
    padding-top:130px;
    padding-bottom:80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:55px;
    line-height:1.2;
    color:#0c4da2;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
    color:#555;
}

.hero-image img{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* ==========================
STATS
========================== */

.stats{
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:white;
    text-align:center;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card h2{
    font-size:42px;
    color:#19b76a;
}

.card p{
    margin-top:10px;
}


/* ==========================
SERVICES
========================== */

.services{
    padding:90px 0;
    background:white;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0c4da2;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#f7faff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.service-card i{
    font-size:55px;
    color:#19b76a;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:#0c4da2;
}

/* ==========================
RESOURCES
========================== */

.resources{
    padding:90px 0;
    background:white;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0c4da2;
    margin-bottom:50px;
}

.resources-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.resources-card{
    background:#f7faff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.resources-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.resources-card i{
    font-size:55px;
    color:#19b76a;
    margin-bottom:20px;
}

.resources-card h3{
    margin-bottom:15px;
    color:#0c4da2;
}

/* ==========================
OUTCOMES
========================== */

.outcome{
    padding:90px 0;
    background:white;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0c4da2;
    margin-bottom:50px;
}

.outcome-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.outcome-card{
    background:#f7faff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.outcome-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.outcome-card i{
    font-size:55px;
    color:#19b76a;
    margin-bottom:20px;
}

.outcomes-card h3{
    margin-bottom:15px;
    color:#0c4da2;
}


/* ==========================
PRICING
========================== */

.pricing{
    padding:90px 0;
    background:white;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0c4da2;
    margin-bottom:50px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.pricing-card{
    background:#f7faff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.pricing-card i{
    font-size:55px;
    color:#19b76a;
    margin-bottom:20px;
}

.pricing-card h3{
    margin-bottom:15px;
    color:#0c4da2;
}
/* ==========================
ABOUT
========================== */

.about{
    padding:90px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img{
    border-radius:20px;
}

.about h2{
    color:#0c4da2;
    font-size:40px;
    margin-bottom:25px;
}

.about p{
    margin-bottom:15px;
    font-size:18px;
}

/* ==========================
CONTACT
========================== */

.contact{
    padding:90px 0;
    background:#eef5ff;
}

.contact h2{
    text-align:center;
    color:#0c4da2;
    margin-bottom:40px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:16px;
}

textarea{
    height:160px;
}

/* ==========================
FOOTER
========================== */

footer{
    background:#0c4da2;
    color:white;
    text-align:center;
    padding:25px;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:900px){

.hero-grid,
.about-grid,
.service-grid,
.stats-grid{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

nav{

display:none;

}

.hero h1{

font-size:38px;

}

.section-title{

font-size:32px;

}

}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.floating-home-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: #b7d98c;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 99999;
    cursor: pointer;
}

.floating-home-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Floating Button */

.whatsapp-float{
    position:fixed;
    width:50px;
    height:50px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    z-index:9999;
    transition:0.3s;
}

.whatsapp-float:hover{
    background:#1EBE5D;
    transform:scale(1.1);
}

<a href="https://wa.me/917715819994" target="_blank">
    💬 Chat on WhatsApp
</a>

