/* ===========================
   BIZBOOST LOCAL
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0d0d0d;
color:#ffffff;
line-height:1.6;
overflow-x:hidden;
}

/* NAVBAR */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:#111;
z-index:1000;
box-shadow:0 5px 20px rgba(0,0,0,.4);
}

.logo h2{
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.logo span{
    color: #ff8c00;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav ul li a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#ff8c00;
}

.btn{
background:#ff8c00;
color:#fff;
padding:12px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#ff6b00;
transform:translateY(-3px);
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:120px 8%;
}

.hero-left{
width:50%;
}

.hero-left h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
}

.hero-left h1 span{
color:#ff8c00;
}

.hero-left p{
font-size:18px;
color:#bbb;
margin-bottom:30px;
}

.buttons{
display:flex;
gap:20px;
}

.btn2{
padding:12px 30px;
border:2px solid #ff8c00;
border-radius:50px;
text-decoration:none;
color:#ff8c00;
font-weight:600;
transition:.3s;
}

.btn2:hover{
background:#ff8c00;
color:#fff;
}

.hero-right{
width:45%;
text-align:center;
}

.hero-right img{
width:100%;
max-width:500px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}
/* ===========================
ABOUT
=========================== */

section{
padding:90px 8%;
}

.container{
max-width:1200px;
margin:auto;
}

section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#ff8c00;
}

.about p{
text-align:center;
max-width:850px;
margin:auto;
color:#cfcfcf;
font-size:18px;
line-height:1.8;
}

.about-boxes{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.box{
background:#181818;
padding:35px;
border-radius:15px;
text-align:center;
transition:.4s;
border:1px solid #2a2a2a;
}

.box:hover{
transform:translateY(-10px);
border-color:#ff8c00;
}

.box h3{
font-size:38px;
color:#ff8c00;
margin-bottom:10px;
}

.box p{
color:#ddd;
}

/* ===========================
SERVICES
=========================== */

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:#181818;
padding:35px;
border-radius:15px;
transition:.4s;
border:1px solid #2a2a2a;
}

.card:hover{
transform:translateY(-10px);
border-color:#ff8c00;
box-shadow:0 15px 40px rgba(255,140,0,.25);
}

.card h3{
margin-bottom:15px;
color:#ff8c00;
}

.card p{
color:#d5d5d5;
}

/* ===========================
WHY US
=========================== */

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.why-card{
background:#181818;
padding:30px;
border-radius:15px;
text-align:center;
font-size:20px;
font-weight:600;
transition:.3s;
border:1px solid #2a2a2a;
}

.why-card:hover{
background:#ff8c00;
color:#fff;
transform:scale(1.05);
}

/* ===========================
PORTFOLIO
=========================== */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.portfolio-card{
background:#181818;
padding:60px 20px;
border-radius:15px;
text-align:center;
font-size:24px;
font-weight:700;
transition:.4s;
border:1px solid #2a2a2a;
}

.portfolio-card:hover{
background:#ff8c00;
transform:translateY(-10px);
}
/* ===========================
TESTIMONIALS
=========================== */

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
background:#181818;
padding:30px;
border-radius:15px;
border:1px solid #2a2a2a;
transition:.3s;
}

.testimonial-card:hover{
transform:translateY(-10px);
border-color:#ff8c00;
}

.testimonial-card p{
margin:20px 0;
color:#ddd;
}

.testimonial-card h4{
color:#ff8c00;
}

/* ===========================
PRICING
=========================== */

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.price-card{
background:#181818;
padding:40px;
text-align:center;
border-radius:15px;
border:1px solid #2a2a2a;
transition:.3s;
}

.price-card:hover{
transform:translateY(-10px);
border-color:#ff8c00;
}

.featured{
border:2px solid #ff8c00;
}

.price-card h1{
font-size:45px;
color:#ff8c00;
margin:20px 0;
}

.price-card ul{
list-style:none;
margin:30px 0;
}

.price-card ul li{
margin:12px 0;
}

/* ===========================
CONTACT
=========================== */

.contact form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact input,
.contact textarea{
padding:18px;
background:#181818;
border:1px solid #333;
border-radius:10px;
color:#fff;
font-size:16px;
}

.contact textarea{
height:160px;
resize:none;
}

.contact button{
border:none;
cursor:pointer;
}

/* ===========================
FOOTER
=========================== */

footer{
background:#111;
padding:50px 20px;
text-align:center;
}

footer h2{
font-size:34px;
margin-bottom:15px;
}

footer span{
color:#ff8c00;
}

footer p{
color:#bbb;
margin:10px 0;
}

/* ===========================
WHATSAPP
=========================== */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
color:#fff;
box-shadow:0 10px 25px rgba(0,0,0,.4);
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero,
header{
flex-direction:column;
text-align:center;
}

.hero-left,
.hero-right{
width:100%;
}

nav ul{
margin:20px 0;
flex-wrap:wrap;
justify-content:center;
}

.about-boxes,
.service-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid,
.pricing-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-left h1{
font-size:42px;
}

.about-boxes,
.service-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid,
.pricing-grid{
grid-template-columns:1fr;
}

.btn,
.btn2{
display:block;
margin:10px auto;
}

section{
padding:70px 20px;
}

header{
padding:20px;
}

nav ul{
gap:15px;
}

}
/* ===========================
   FOUNDER SECTION
=========================== */

.founder{
    padding:100px 8%;
    background:#111;
}

.founder-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.founder-image{
    flex:1;
    text-align:center;
}

.founder-image img{
    width:320px;
    height:320px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #ff8c00;
    box-shadow:0 0 30px rgba(255,140,0,.4);
    transition:.4s;
}

.founder-image img:hover{
    transform:scale(1.05);
}

.founder-content{
    flex:1;
}

.founder-content h2{
    color:#ff8c00;
    font-size:42px;
    margin-bottom:10px;
}

.founder-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:5px;
}

.founder-content h4{
    color:#bbb;
    margin-bottom:25px;
    font-size:18px;
}

.founder-content p{
    color:#ddd;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.founder-content blockquote{
    border-left:4px solid #ff8c00;
    padding-left:20px;
    color:#ff8c00;
    font-size:22px;
    font-style:italic;
    margin:30px 0;
}

.founder-content .btn{
    display:inline-block;
    background:#ff8c00;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.founder-content .btn:hover{
    background:#ffa733;
    transform:translateY(-3px);
}

/* Mobile Responsive */

@media(max-width:768px){

    .founder-container{
        flex-direction:column;
        text-align:center;
    }

    .founder-image img{
        width:220px;
        height:220px;
    }

    .founder-content h2{
        font-size:34px;
    }

    .founder-content h3{
        font-size:26px;
    }

    .founder-content p{
        font-size:16px;
    }

}
/* ===========================
   Founder Section
=========================== */

.founder{
    padding:80px 10%;
    background:#111;
    color:white;
}

.founder-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.founder-image img{
    width:320px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
}

.founder-content{
    max-width:650px;
}

.founder-content h2{
    color:#ff9900;
    font-size:36px;
    margin-bottom:10px;
}

.founder-content h3{
    font-size:28px;
    margin-bottom:5px;
}

.founder-content h4{
    color:#ccc;
    margin-bottom:20px;
}

.founder-content p{
    line-height:1.9;
    color:#ddd;
    font-size:17px;
}

.founder-content strong{
    color:#ff9900;
}
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:700px;
    height:auto;
    object-fit:contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}
.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h2{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.logo span{
    color: #ff8c00;
}
