*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#1f2937;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* ================= HEADER ================= */
/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
    z-index:999;
}

nav{
    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==========================================
   LOGO
========================================== */

.logo-wrapper{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:4px solid #0d6efd;
    background:#fff;
    overflow:hidden;
    box-shadow:0 0 12px rgba(255,122,0,.25);
}

.logo-img{
    width:90%;
    height:90%;
    object-fit:contain;
    transition:.3s;
}

.logo:hover .logo-img{
    transform:scale(1.08);
}

.logo-text{
    font-size:24px;
    font-weight:700;
}

.blue{
    color:#0d6efd;
}

.orange{
    color:#ff6b00;
}

/* ==========================================
   NAVIGATION
========================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;

    /* REMOVE DOTS */
    list-style:none;

    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
    margin:0;
    padding:0;
}

/* Safety */
.nav-links li::before{
    content:none !important;
}

.nav-links a::before{
    content:none !important;
}

.nav-links a{
    text-decoration:none;   /* underline remove */
    color:#111827;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff6b00;
}

/* ==========================================
   BUTTON
========================================== */

.nav-btn{
    display:inline-block;
    padding:12px 24px;
    background:#ff6b00;
    color:#fff !important;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    background:#e85f00;
}

.mobile-btn{
    display:none;
}

/* ==========================================
   MENU
========================================== */

.menu-toggle{
    display:none;
    font-size:34px;
    cursor:pointer;
    color:#111827;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

nav{
    height:80px;
}

.logo{
    width:55px;
    height:55px;
}

.logo-text{
    font-size:20px;
}

.desktop-btn{
    display:none;
}

.menu-toggle{
    display:block;
}

.nav-links{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:30px 0;

    box-shadow:0 12px 25px rgba(0,0,0,.08);

    list-style:none;
}

.nav-links.active{
    display:flex;
}

.mobile-btn{
    display:block;
}

}

@media(max-width:480px){

.logo{
    width:50px;
    height:50px;
}

.logo-text{
    font-size:18px;
}

}

/* ================= HERO ================= */

.hero{
padding-top:150px;
padding-bottom:100px;
background:linear-gradient(
180deg,
#fff7ed,
#ffffff
);
}

.hero .container{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.hero-content h1{
font-size:62px;
line-height:1.15;
font-weight:800;
margin-bottom:25px;
color:#111827;
}

.hero-content p{
font-size:25px;
line-height:1.9;
color:#6b7280;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.primary-btn{
background:#ff6b00;
color:white;
padding:15px 32px;
text-decoration:none;
border-radius:10px;
font-weight:600;
}

.secondary-btn{
border:2px solid #ff6b00;
color:#ff6b00;
padding:15px 32px;
text-decoration:none;
border-radius:10px;
font-weight:600;
}

.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,.15);


}

/*==============================
BLOG SECTION
==============================*/

.blog-section{
    padding:120px 0 100px;
    background:#f8fafc;
}

.blog-header{
    text-align:center;
    margin-bottom:50px;
}

.blog-header h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.blog-header p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

/*==============================
SEARCH BOX
==============================*/

.blog-search{
    max-width:700px;
    margin:0 auto 60px;
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.blog-search input{
    flex:1;
    border:none;
    outline:none;
    padding:18px 22px;
    font-size:16px;
}

.blog-search button{
    width:70px;
    height:60px;
    border:none;
    background:#ff6b00;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    transition:.3s;
}

.blog-search button:hover{
    background:#e65f00;
}

/*==============================
BLOG GRID
==============================*/

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
}

/*==============================
BLOG CARD
==============================*/

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

/*==============================
IMAGE
==============================*/

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.blog-card:hover .blog-image img{
    transform:scale();
}

/*==============================
CATEGORY
==============================*/

.category{
    position:absolute;
    top:18px;
    left:18px;
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==============================
CONTENT
==============================*/

.blog-content{
    padding:28px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:14px;
    color:#6b7280;
}

.blog-content h3{
    font-size:25px;
    color:#111827;
    line-height:1.45;
    margin-bottom:18px;
    font-weight:700;
}

.blog-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
    font-size:16px;
}

/*==============================
BUTTON
==============================*/

.read-btn{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#e65f00;
}

/*==============================
AUTHOR
==============================*/

.author{
    display:flex;
    align-items:center;
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #ececec;
}

.author img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
    border:3px solid #ff6b00;
}

.author h4{
    font-size:18px;
    color:#111827;
    margin-bottom:5px;
}

.author span{
    font-size:14px;
    color:#6b7280;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

.blog-header h2{
    font-size:36px;
}

}

@media(max-width:768px){

.blog-grid{
    grid-template-columns:1fr;
}

.blog-search{
    flex-direction:column;
    border-radius:12px;
}

.blog-search input{
    width:100%;
}

.blog-search button{
    width:100%;
}

.blog-header h2{
    font-size:32px;
}

.blog-content h3{
    font-size:22px;
}

.blog-image img{
    height:220px;
}

}

@media(max-width:480px){

.blog-section{
    padding:80px 0;
}

.blog-header h2{
    font-size:28px;
}

.blog-header p{
    font-size:16px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:20px;
}

.blog-content p{
    font-size:15px;
}

.read-btn{
    width:100%;
    text-align:center;
}

.author img{
    width:50px;
    height:50px;
}

.author h4{
    font-size:16px;
}

}

/* ================= FOOTER ================= */

footer{
background:#111827;
color:white;
padding: 80px 0   30px;
margin-top:100px;
bottom: 10px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-bottom:4px;
}

.footer-grid h3{
margin-bottom:20px;
font-size:22px;
}

.footer-grid ul{
list-style:none;
}

.footer-grid ul li{
margin-bottom:10px;
color:#d1d5db;
}

.footer-grid p{
color:#d1d5db;
line-height:1.8;
}

footer hr{
border:none;
height:1px;
background:#374151;
margin-bottom:25px;
}

.copyright{
text-align:center;
color:#9ca3af;
font-size:15px;
}

/* ================= MOBILE FIXES ================= */

@media(max-width:768px){

section{
padding:70px 0;
}

.hero{
padding-top:120px;
}

.hero-content h1{
font-size:36px;
line-height:1.2;
}

.hero-content p{
font-size:18px;
line-height:1.7;
}

.trust h2,
.section-heading h2,
.brands-heading h2{
font-size:32px;
}

.trust p,
.service-card p,
.why-card p{
font-size:18px;
}

.logo-img{
height:120px;
}

.nav-btn{
padding:10px 18px;
font-size:14px;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.faq-question{
font-size:16px;
padding:18px;
}

.price{
font-size:34px;
}

}

@media(max-width:480px){

.container{
width:95%;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:16px;
}

.primary-btn,
.secondary-btn,
.plan-btn{
width:100%;
text-align:center;
}

.logo-img{
height:90px;
}

.section-heading h2{
font-size:28px;
}

}
