/*
===========================================
WB Land Pro Theme
Main CSS
Version : 1.0
===========================================
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fb;
    color:#222;
    font-size:16px;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    height:auto;
}

/*========================
Header
========================*/

.site-header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:9999;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

.header-container{

    max-width:1400px;

    margin:auto;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

}

.site-logo{

    font-size:28px;

    font-weight:700;

    color:#0057FF;

}

/*========================
Desktop Menu
========================*/

.primary-menu{

    list-style:none;

    display:flex;

    gap:25px;

}

.primary-menu li{

    position:relative;

}

.primary-menu li a{

    font-size:15px;

    font-weight:600;

    color:#333;

    transition:.3s;

}

.primary-menu li a:hover{

    color:#0057FF;

}

/*========================
Header Right
========================*/

.header-right{

    display:flex;

    align-items:center;

    gap:12px;

}

.search-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    background:#EEF3FF;

    font-size:18px;

}

.login-btn{

    padding:12px 22px;

    border-radius:12px;

    background:#0057FF;

    color:#fff;

    font-weight:600;

}

/*========================
Hamburger
========================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:30px;

    cursor:pointer;

}

/*========================
Mobile Drawer
========================*/

.mobile-drawer{

    position:fixed;

    top:0;

    left:-320px;

    width:300px;

    height:100vh;

    background:#fff;

    box-shadow:0 0 30px rgba(0,0,0,.15);

    transition:.35s;

    z-index:99999;

    overflow:auto;

}

.mobile-drawer.active{

    left:0;

}

.drawer-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    background:#0057FF;

    color:#fff;

    font-size:18px;

    font-weight:bold;

}

#closeDrawer{

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

.mobile-menu{

    list-style:none;

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu li a{

    display:block;

    padding:16px 20px;

    font-size:16px;

}

/*========================
Footer
========================*/

.site-footer{

    background:#111827;

    color:#fff;

    text-align:center;

    padding:35px 15px;

    margin-top:60px;

}

/*========================
Responsive
========================*/

@media(max-width:991px){

.main-navigation{

display:none;

}

.menu-toggle{

display:block;

}

.login-btn{

display:none;

}

.header-container{

height:68px;

}

.site-logo{

font-size:24px;

}

}
/* ===========================
   HERO
=========================== */

.hero-section{
padding:100px 20px;
background:linear-gradient(135deg,#0d47a1,#1976d2,#42a5f5);
color:#fff;
text-align:center;
}

.hero-section h1{
font-size:52px;
font-weight:700;
margin:20px 0;
}

.hero-section p{
max-width:700px;
margin:auto;
font-size:18px;
opacity:.95;
}

.hero-search{
max-width:700px;
margin:35px auto 0;
display:flex;
background:#fff;
padding:8px;
border-radius:60px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.hero-search input{
flex:1;
border:none;
outline:none;
padding:16px;
font-size:16px;
background:none;
}

.hero-search button{
background:#0057ff;
color:#fff;
border:none;
padding:16px 35px;
border-radius:50px;
cursor:pointer;
font-weight:600;
}

/* ===========================
SERVICE CARD
=========================== */

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

margin-top:40px;

}

.service-card{

background:#fff;

border-radius:18px;

padding:30px;

transition:.3s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.service-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.service-card h3{

margin:15px 0;

color:#0057ff;

}

/* ===========================
STATS
=========================== */

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.stat-box{

background:#0057ff;

color:#fff;

padding:40px;

border-radius:18px;

text-align:center;

}

.stat-box h2{

font-size:42px;

margin-bottom:10px;

}

/* ===========================
SECTION
=========================== */

.services-section,

.stats-section,

.updates-section{

padding:80px 20px;

}

.section-title{

font-size:36px;

text-align:center;

margin-bottom:15px;

font-weight:700;

}

/* ===========================
Responsive
=========================== */

@media(max-width:768px){

.hero-section h1{

font-size:36px;

}

.hero-search{

flex-direction:column;

border-radius:20px;

}

.hero-search button{

width:100%;

}

}
/*==========================
Premium Header
==========================*/

.header-flex{

display:flex;

justify-content:space-between;

align-items:center;

height:75px;

}

.logo-area{

font-size:28px;

font-weight:700;

}

.header-actions{

display:flex;

align-items:center;

gap:15px;

}

.header-icon{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

background:#f2f4f8;

border-radius:12px;

font-size:20px;

}

.login-button{

background:#0057ff;

color:#fff;

padding:12px 24px;

border-radius:12px;

font-weight:600;

}

.mobile-menu-btn{

display:none;

border:none;

background:none;

font-size:28px;

cursor:pointer;

}

.mobile-menu{

display:none;

background:#fff;

padding:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.mobile-nav{

list-style:none;

padding:0;

margin:0;

}

.mobile-nav li{

padding:12px 0;

border-bottom:1px solid #eee;

}

@media(max-width:991px){

.main-navigation{

display:none;

}

.mobile-menu-btn{

display:block;

}

.login-button{

display:none;

}

.mobile-menu.active{

display:block;

}

}


/* ==========================
Featured Services
========================== */

.featured-services{

padding:80px 20px;

background:#ffffff;

}

.section-header{

text-align:center;

margin-bottom:40px;

}

.section-header h2{

font-size:36px;

margin-bottom:10px;

color:#1e293b;

}

.section-header p{

color:#64748b;

}

.featured-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.featured-card{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.3s;

display:block;

}

.featured-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.featured-card .icon{

font-size:48px;

margin-bottom:15px;

}

.featured-card h3{

margin-bottom:10px;

color:#0057ff;

}

.featured-card p{

color:#666;

font-size:15px;

}


