*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f7fb;
overflow-x:hidden;
}

/* HEADER */

.header{
background:linear-gradient(90deg,#ff4da6,#ff66b3);
padding:10px 0;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:28px;
font-weight:700;
color:white !important;
text-decoration:none;
}

/* MENU */

.navbar-nav{
gap:8px;
}

.nav-link{
color:white !important;
padding:12px 15px !important;
font-weight:500;
border-radius:8px;
transition:0.3s;
}

.nav-link:hover{
background:rgba(255,255,255,0.15);
}

/* DROPDOWN */

.custom-dropdown{
position:relative;
}

.dropdown-menu-custom{
display:none;
position:absolute;
top:48px;
left:0;
background:white;
width:250px;
padding:12px;
border-radius:14px;
list-style:none;
box-shadow:0 5px 20px rgba(0,0,0,0.12);
z-index:999;
}

.dropdown-menu-custom li{
margin-bottom:8px;
}

.dropdown-menu-custom a{
display:block;
padding:10px 12px;
color:#333;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.dropdown-menu-custom a:hover{
background:#ffe6f2;
color:#ff0080;
}

@media(min-width:992px){

.custom-dropdown:hover .dropdown-menu-custom{
display:block;
}

}

/* MOBILE MENU */

@media(max-width:991px){

.navbar-collapse{
background:white;
padding:20px;
border-radius:15px;
margin-top:15px;
}

.nav-link{
color:#333 !important;
}

.dropdown-menu-custom{
position:relative;
display:block;
width:100%;
top:0;
box-shadow:none;
background:#fff5fa;
margin-bottom:10px;
}

}

/* HERO */

.hero{
padding:80px 20px;
background:white;
text-align:center;
margin-bottom:30px;
}

.hero h1{
font-size:52px;
font-weight:700;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#666;
max-width:750px;
margin:auto;
}

/* MAIN LAYOUT */

.main-layout{
display:flex;
gap:25px;
}

/* SIDEBAR */

.sidebar{
width:280px;
}

.sidebar-box{
background:white;
padding:20px;
border-radius:16px;
margin-bottom:25px;
box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.sidebar-box h3{
font-size:22px;
margin-bottom:15px;
font-weight:600;
}

.sidebar-box ul{
list-style:none;
padding:0;
}

.sidebar-box li{
margin-bottom:12px;
}

.sidebar-box a{
text-decoration:none;
color:#333;
transition:0.3s;
}

.sidebar-box a:hover{
color:#ff0080;
}

/* ADS */

.ad-box{
height:250px;
border:2px dashed #ccc;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:#f1f1f1;
color:#999;
}

/* CONTENT */

.content{
flex:1;
}

.section-title{
font-size:38px;
font-weight:700;
margin-bottom:35px;
}

/* CARDS */

.calculator-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,0.06);
transition:0.3s;
height:100%;
}

.calculator-card:hover{
transform:translateY(-8px);
}

.calculator-card h3{
font-size:24px;
margin-bottom:15px;
}

.calculator-card p{
color:#666;
margin-bottom:20px;
}

.btn-custom{
background:#ff4da6;
padding:12px 22px;
border-radius:10px;
color:white;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn-custom:hover{
background:#e60073;
color:white;
}

/* FOOTER */

.footer{
margin-top:70px;
background:linear-gradient(90deg,#ff4da6,#ff66b3);
padding:50px 20px;
color:white;
}

.footer a{
color:white;
text-decoration:none;
margin-right:18px;
}

.footer a:hover{
color:#ffe6f2;
}

/* RESPONSIVE */

@media(max-width:992px){

.main-layout{
flex-direction:column;
}

.sidebar{
width:100%;
}

.hero h1{
font-size:36px;
}

.section-title{
font-size:30px;
}

}