/* ===============================
   MEERA ONLINE POINT
   STYLE.CSS - PART 1
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#222;
    line-height:1.6;
}

/* Header */

header{
    width:100%;
    background:#0d47a1;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.logo h2{
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff9800;
}

/* Hero Section */

.hero{
    min-height:90vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:linear-gradient(135deg,#1565c0,#42a5f5);
    color:#fff;
}

.hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.hero span{
    color:#ffd54f;
}

.hero p{
    font-size:20px;
    max-width:700px;
    margin-bottom:35px;
}

.btn,
.btn2{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn{
    background:#ff9800;
    color:#fff;
}

.btn:hover{
    background:#fb8c00;
    transform:translateY(-3px);
}

.btn2{
    background:#25D366;
    color:#fff;
}

.btn2:hover{
    background:#1ebc59;
    transform:translateY(-3px);
}/* ===========================
   SERVICES SECTION
=========================== */

#services{
    padding:80px 8%;
    background:#ffffff;
}

#services h2{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
    color:#0d47a1;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.card{
    background:#f8fbff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #1565c0;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/* ===========================
   ABOUT
=========================== */

#about{
    padding:80px 8%;
    background:#eef5ff;
    text-align:center;
}

#about h2{
    font-size:38px;
    color:#0d47a1;
    margin-bottom:20px;
}

#about p{
    max-width:800px;
    margin:auto;
    font-size:18px;
}

/* ===========================
   CONTACT
=========================== */

#contact{
    padding:80px 8%;
    background:#ffffff;
}

#contact h2{
    text-align:center;
    font-size:38px;
    margin-bottom:30px;
    color:#0d47a1;
}

#contact p{
    text-align:center;
    font-size:18px;
    margin:10px 0;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#0d47a1;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

header{
    flex-direction:column;
    padding:15px;
}

nav ul{
    flex-direction:column;
    text-align:center;
    margin-top:15px;
}

nav ul li{
    margin:10px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.logo h2{
    font-size:24px;
}

#services h2,
#about h2,
#contact h2{
    font-size:30px;
}

.btn,
.btn2{
    width:90%;
    max-width:300px;
}

}.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:55px;
height:55px;
border-radius:50%;
background:white;
padding:4px;
}/* Floating Buttons */

.whatsapp-float{

position:fixed;

right:20px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:white;

font-size:30px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.15);

}



.call-float{

position:fixed;

right:20px;

bottom:100px;

width:60px;

height:60px;

background:#ff9800;

color:white;

font-size:28px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.call-float:hover{

transform:scale(1.15);

}