/*=========================
GENERAL
=========================*/

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
font-size:16px;
color:#333;
background:#fff;
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

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

/*=========================
HEADER
=========================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo a{
font-size:34px;
font-weight:700;
color:#222;
}

.logo span{
color:#ff4d00;
}

nav ul{
display:flex;
gap:35px;
}

nav ul li a{
font-size:16px;
font-weight:500;
color:#333;
transition:.3s;
}

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

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
color:#222;
}

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

.hero{
padding:170px 0 100px;
background:linear-gradient(135deg,#fff7f2,#ffffff);
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.hero-text h1{
font-size:56px;
line-height:1.2;
font-weight:700;
margin-bottom:25px;
color:#222;
}

.hero-text p{
font-size:18px;
color:#666;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.btn{
background:#ff4d00;
color:#fff;
padding:15px 35px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#222;
}

.btn-outline{
border:2px solid #ff4d00;
padding:15px 35px;
border-radius:50px;
color:#ff4d00;
font-weight:600;
transition:.3s;
}

.btn-outline:hover{
background:#ff4d00;
color:#fff;
}

.hero-features{
display:flex;
gap:30px;
flex-wrap:wrap;
margin-top:20px;
}

.hero-features div{
display:flex;
align-items:center;
gap:10px;
font-weight:500;
}

.hero-features i{
width:45px;
height:45px;
border-radius:50%;
background:#ff4d00;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}

.hero-image img{
width:100%;
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

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

100%{
transform:translateY(0);
}

}

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

@media(max-width:991px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-image{
order:-1;
}

.hero-buttons{
justify-content:center;
}

.hero-features{
justify-content:center;
}

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

nav{
position:absolute;
top:80px;
left:-100%;
width:100%;
background:#fff;
box-shadow:0 10px 20px rgba(0,0,0,.08);
transition:.4s;
}

nav.active{
left:0;
}

nav ul{
flex-direction:column;
padding:30px;
gap:20px;
}

.menu-btn{
display:block;
}

}

@media(max-width:576px){

.hero{
padding:140px 0 70px;
}

.hero-text h1{
font-size:34px;
}

.hero-text p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.btn,
.btn-outline{
width:100%;
text-align:center;
}

.logo a{
font-size:28px;
}

}

/*==========================
Products
==========================*/

.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:40px;
margin-bottom:15px;
color:#222;
}

.section-title p{
max-width:700px;
margin:auto;
color:#666;
line-height:1.8;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
gap:35px;
}

/* Product Card */
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
}

/* Product Content */
.product-content{
    padding:30px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.product-content ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.product-content ul li{
    margin-bottom:10px;
    color:#555;
}

/* Push Price & Button to Bottom */
.price{
    font-size:32px;
    font-weight:700;
    color:#ff4d00;

    margin-top:auto;
    margin-bottom:20px;
}

.buy-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#ff4d00;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.buy-btn:hover{
    background:#222;
}
.product-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    background:#f5f5f5;
}
.product-buttons{
display:flex;
gap:12px;
margin-top:20px;
}

.amazon-btn,
.whatsapp-btn{
flex:1;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
padding:14px;
border-radius:50px;
text-decoration:none;
font-weight:600;
font-size:15px;
transition:.3s;
}

.amazon-btn{
background:#ff4d00;
color:#fff;
}

.amazon-btn:hover{
background:#232F3E;
color:#fff;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

.whatsapp-btn:hover{
background:#128C7E;
color:#fff;
}

.amazon-btn i,
.whatsapp-btn i{
font-size:18px;
}

@media(max-width:576px){

.product-buttons{
flex-direction:column;
}

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

.services{
background:#fafafa;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:48px;
color:#ff4d00;
margin-bottom:20px;
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
}

.service-card p{
color:#666;
line-height:1.8;
}

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

.why-us{
padding:90px 0;
background:#fff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.why-box{
padding:35px;
background:#fafafa;
border-radius:18px;
text-align:center;
transition:.35s;
}

.why-box:hover{
background:#ff4d00;
color:#fff;
transform:translateY(-8px);
}

.why-box:hover p,
.why-box:hover i{
color:#fff;
}

.why-box i{
font-size:42px;
color:#ff4d00;
margin-bottom:20px;
}

.why-box h3{
margin-bottom:15px;
font-size:22px;
}

.why-box p{
color:#666;
line-height:1.8;
}

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

.about{
background:#fafafa;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about img{
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about h2{
font-size:40px;
margin-bottom:25px;
}

.about p{
margin-bottom:20px;
line-height:1.9;
color:#666;
}

/*=========================
CTA
=========================*/

.cta{
padding:90px 0;
text-align:center;
background:linear-gradient(135deg,#ff4d00,#ff8c00);
color:#fff;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
max-width:700px;
margin:auto auto 35px;
line-height:1.8;
}

.cta .btn{
background:#fff;
color:#ff4d00;
}

.cta .btn:hover{
background:#222;
color:#fff;
}

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

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.about{
text-align:center;
}

.cta h2{
font-size:34px;
}

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

.contact{
background:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info h3{
font-size:32px;
margin-bottom:20px;
}

.contact-info p{
color:#666;
margin-bottom:30px;
line-height:1.8;
}

.contact-item{
display:flex;
gap:20px;
margin-bottom:25px;
align-items:flex-start;
}

.contact-item i{
width:55px;
height:55px;
background:#ff4d00;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}

.contact-item h4{
margin-bottom:5px;
}

.contact-item a{
color:#333;
}

.contact-form{
background:#fafafa;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:8px;
font-family:Poppins,sans-serif;
font-size:15px;
}

.contact-form textarea{
resize:vertical;
}

/*=========================
ONLINE
=========================*/

.online-business{
padding:90px 0;
background:#fafafa;
}

.online-box{
background:#fff;
padding:60px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.online-box i{
font-size:60px;
color:#ff4d00;
margin-bottom:25px;
}

.online-box h2{
font-size:40px;
margin-bottom:20px;
}

.online-box p{
max-width:800px;
margin:auto;
line-height:1.9;
color:#666;
margin-bottom:35px;
}

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

footer{
background:#111;
color:#fff;
padding:70px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
}

.footer-grid h3{
margin-bottom:20px;
font-size:24px;
}

.footer-grid p{
color:#bbb;
line-height:1.8;
}

.footer-grid ul li{
margin-bottom:12px;
}

.footer-grid a{
color:#bbb;
transition:.3s;
}

.footer-grid a:hover{
color:#ff4d00;
}

.copyright{
margin-top:50px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
color:#999;
}

/*=========================
BACK TO TOP
=========================*/

.back-top{
position:fixed;
right:25px;
bottom:25px;
width:50px;
height:50px;
background:#ff4d00;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
box-shadow:0 10px 25px rgba(0,0,0,.2);
transition:.3s;
z-index:999;
}

.back-top:hover{
background:#222;
}

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

@media(max-width:991px){

.contact-grid,
.footer-grid{
grid-template-columns:1fr;
}

.contact-form{
margin-top:20px;
}

.online-box{
padding:40px 25px;
}

.online-box h2{
font-size:32px;
}

footer{
text-align:center;
}

}
/*=========================
HOW IT WORKS
=========================*/

.how-it-works{
background:#fafafa;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.step-card{
background:#fff;
padding:35px 30px;
border-radius:18px;
text-align:center;
position:relative;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.step-card:hover{
transform:translateY(-8px);
}

.step-number{
position:absolute;
top:20px;
right:20px;
width:36px;
height:36px;
background:#ff4d00;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
}

.step-card i{
font-size:50px;
color:#ff4d00;
margin:20px 0;
}

.step-card h3{
font-size:22px;
margin-bottom:15px;
}

.step-card p{
color:#666;
line-height:1.8;
}

.secure-note{
margin-top:60px;
background:#fff3eb;
border-left:5px solid #ff4d00;
padding:25px 30px;
border-radius:12px;
display:flex;
align-items:flex-start;
gap:20px;
}

.secure-note i{
font-size:34px;
color:#ff4d00;
margin-top:3px;
}

.secure-note p{
margin:0;
color:#555;
line-height:1.8;
}

@media(max-width:768px){

.secure-note{
flex-direction:column;
text-align:center;
}

}
/*=========================
SOCIAL ICONS
=========================*/

.social-icons{
display:flex;
gap:15px;
margin-top:25px;
}

.social-icons a{
width:45px;
height:45px;
border-radius:50%;
background:#222;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
transition:.3s;
}

.social-icons a:hover{
background:#ff4d00;
transform:translateY(-4px);
}
/*=========================
WHATSAPP FLOATING BUTTON
=========================*/

.whatsapp-float{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

text-decoration:none;

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

z-index:999;

transition:.3s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

background:#128C7E;

transform:scale(1.1);

color:#fff;

}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}
.copyright{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#999;
    font-size:15px;
    line-height:1.8;
}

.copyright a{
    color:#ff4d00;
    font-weight:600;
    transition:.3s;
}

.copyright a:hover{
    color:#fff;
}
.seo-text{
border-top:1px solid rgba(255,255,255,.08);
margin-top:50px;
padding-top:30px;
color:#999;
font-size:14px;
line-height:1.9;
text-align:center;
max-width:1100px;
margin-left:auto;
margin-right:auto;
}
/* Sticker Type Dropdown */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    height: 58px;
    padding: 0 48px 0 18px;
    border: 1px solid #d9dfe7;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    cursor: pointer;

    /* Remove browser default styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all 0.25s ease;
}

/* Placeholder appearance */
.select-wrapper select:invalid {
    color: #8a919b;
}

/* Focus */
.select-wrapper select:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Custom dropdown arrow */
.select-wrapper::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

/* Hover */
.select-wrapper select:hover {
    border-color: #aaa;
}

/* Dropdown options */
.select-wrapper select option {
    color: #333;
    background: #fff;
    padding: 12px;
}
.select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 600px) {
    .select-wrapper select {
        height: 54px;
        font-size: 15px;
        padding-left: 16px;
        padding-right: 45px;
        border-radius: 9px;
    }

    .select-wrapper::after {
        right: 16px;
    }
}