*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--text:#111111;
--text-light:#666666;
--bg:#ffffff;
--soft:#f8f8f6;
--accent:#e66f2a;
--border:#ececec;
}

body{
font-family:'Manrope',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

.container{
width:92%;
max-width:1200px;
margin:auto;
}

.navbar{
background:#fff;
border-bottom:1px solid var(--border);
padding:18px 0;
}

.logo-wrap{
display:flex;
justify-content:center;
margin-bottom:15px;
}

.logo-img{
height:55px;
width:auto;
display:block;
}

.nav-links{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:var(--text);
font-weight:600;
font-size:15px;
transition:.3s;
}

.nav-links a:hover{
opacity:.6;
}

.hero{
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.hero-tag{
display:inline-block;
padding:10px 18px;
background:#f4f4f4;
border-radius:999px;
font-size:14px;
margin-bottom:20px;
}

.hero h1{
font-size:clamp(3rem,5vw,5.5rem);
line-height:1;
font-weight:800;
margin-bottom:24px;
}

.hero p{
font-size:18px;
color:var(--text-light);
margin-bottom:30px;
max-width:550px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;
}

.primary-btn{
padding:16px 26px;
background:#111;
color:#fff;
text-decoration:none;
border-radius:14px;
font-weight:700;
}

.secondary-btn{
padding:16px 26px;
border:1px solid var(--border);
color:#111;
text-decoration:none;
border-radius:14px;
font-weight:700;
}

.trust-points{
display:flex;
flex-wrap:wrap;
gap:20px;
font-size:14px;
color:var(--text-light);
}

.hero-image img{
width:100%;
display:block;
border-radius:30px;
}
 

@media(max-width:900px){

 

.hero{
padding:50px 0;
}

.hero-grid{
grid-template-columns:1fr;
gap:40px;
}

.hero h1{
font-size:2.8rem;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.primary-btn,
.secondary-btn{
text-align:center;
width:100%;
}

.trust-points{
flex-direction:column;
gap:12px;
}

}
@media(max-width:768px){

.navbar{
padding:16px 0;
}

.logo-wrap{
margin-bottom:12px;
}

.logo-img{
height:48px;
}

.nav-links{
gap:18px;
flex-wrap:wrap;
}

.nav-links a{
font-size:14px;
}

}@media(max-width:768px){

.nav-links{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.nav-links a{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 16px;
background:#f7f7f7;
border-radius:999px;
font-size:14px;
font-weight:600;
}

}


.problem-section{
padding:120px 0;
}

.section-tag{
    display:inline-block;
    font-family:'Caveat', cursive;
    font-size:32px;
    font-weight:700;
    color:#d86b2c;
    line-height:1;
    margin-bottom:5px;
    letter-spacing:.5px;
    transform:rotate(-2deg);
}

.problem-section h2{
font-size:clamp(2rem,4vw,4rem);
line-height:1.1;
margin-bottom:20px;
max-width:700px;
}

.section-intro{
font-size:18px;
color:#666;
max-width:700px;
margin-bottom:60px;
}

.comparison-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.comparison-card{
border:1px solid #ececec;
border-radius:24px;
padding:24px;
background:#fff;
}

.card-label{
font-weight:700;
margin-bottom:20px;
font-size:18px;
}

.comparison-card img{
width:100%;
border-radius:18px;
margin-bottom:20px;
display:block;
}

.comparison-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
}

.comparison-card li{
color:#555;
}

.comparison-right{
background:#ffffff;
}

@media(max-width:900px){

.comparison-grid{
grid-template-columns:1fr;
}

.problem-section{
padding:80px 0;
}

}

.projects-section{
    padding:120px 0;
    background:#ffffff;
}

.projects-wrapper{
    position:relative;
    margin-top:60px;
}

.projects-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.projects-slider::-webkit-scrollbar{
    display:none;
}

.project-card{
    flex:0 0 calc(25% - 18px);
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    overflow:hidden;
    transition:.3s ease;
    
}

.project-card:hover{
    transform:translateY(-2px);
}

.project-image{
    position:relative;
    overflow:hidden;
        aspect-ratio:4/5;
}

.project-image img,
.project-image video{
    width:100%;
    position:relative;
    overflow:hidden;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
}
.project-image img,
.project-image video{
    transition:transform .5s ease;    
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.project-image::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.15),
        transparent
    );

    pointer-events:none;
}
.project-card:hover .project-image img,
.project-card:hover .project-image video{
    transform:scale(1.04);
}
.project-content{
    padding:18px;
}

.project-category{
    font-size:12px;
    margin-bottom:6px;
    font-weight:700;
    color:#777;
    letter-spacing:1px;
    text-transform:uppercase;
}

.project-content h3{
    margin:8px 0 10px;
    font-size:20px;
 }

.project-content p{
    font-size:14px;
    line-height:1.5;
    color:#666;
}

.project-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    cursor:pointer;
    z-index:2;
    font-size:18px;
}

.prev-btn{
    left:-24px;
}

.next-btn{
    right:-24px;
}
@media (max-width:1024px){

    .project-card{
        flex:0 0 calc(50% - 12px);
    }

}
@media (max-width:768px){

    .projects-section{
        padding:80px 0;
    }

    .project-card{
        flex:0 0 100%;
    }

    .project-nav{
        display:flex;
        align-items:center;
        justify-content:center;

        width:42px;
        height:42px;

        top:auto;
        bottom: 30px;

        transform:none;
    }

    .prev-btn{
        left:calc(50% - 55px);
    }

    .next-btn{
        left:calc(50% + 10px);
        right:auto;
    }

    .projects-wrapper{
        padding-bottom:90px;
    }

}
.process-section{
padding:120px 0;
}

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.process-card{
padding:40px;
border:1px solid #ececec;
border-radius:24px;
background:#fff;
}

.process-number{
font-size:14px;
font-weight:800;
margin-bottom:20px;
color:#999;
}

.process-card h3{
font-size:26px;
margin-bottom:15px;
}

.process-card p{
color:#666;
line-height:1.7;
}

@media(max-width:900px){

.process-grid{
grid-template-columns:1fr;
}

}

.wearable-section{
padding:120px 0;
background:#ffffff;
}

.wearable-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:60px;
}

.wearable-card{
background:#fff;
border:1px solid #ececec;
border-radius:24px;
overflow:hidden;
transition:.3s ease;
}

.wearable-card:hover{
transform:translateY(-6px);
}

.wearable-card img{
width:100%;
aspect-ratio:4/3;
object-fit:cover;
display:block;
}

.wearable-content{
padding:28px;
}

.wearable-content h3{
font-size:28px;
margin-bottom:12px;
}

.wearable-content p{
color:#666;
line-height:1.7;
}
.wearable-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
}

.wearable-heading-content{
    max-width:700px;
}

.catalogue-btn{
    flex-shrink:0;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;
    margin-top: 25px;

    border:1px solid #111;
    border-radius:999px;

    background:#fff;
    color:#111;

    text-decoration:none;
    font-size:12px;
    font-weight:600;

    transition:.3s ease;
}

.catalogue-btn svg{
    width:16px;
    height:16px;
}

.catalogue-btn:hover{
    background:#111;
    color:#fff;
}
@media(max-width:768px){

    .wearable-heading{
        flex-direction:column;
        gap:16px;
    }

    .catalogue-btn{
        width:100%;
        margin-top: -50px;
        max-width:136px;
    }

}
.color-picker{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.color-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid transparent;
    cursor:pointer;
    transition:.25s;
}

.color-dot:hover{
    transform:scale(1.15);
}

.color-dot.active{
    border:1px solid #3216ff;
    transform:scale(1.02);
}

.available-colors{
    display:block;
    font-size:12px;
    color:#888;
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.color-dot[style*="#ffffff"]{
    border:1px solid #ddd;
}
.all-color{
    background:
    conic-gradient(
        #111111,
        #7f1d1d,
        #1d3557,
        #F5F0E6,
        #ffffff,
        #2d6a4f,
        #87CEEB,
        #111111
    );

    border:1px solid #ddd;
}
.wearable-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
}

.catalogue-btn{
    text-decoration:none;
    background:#111;
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
    transition:.3s ease;
}
 
@media(max-width:768px){

    .wearable-title-row{
        flex-direction:column;
        align-items:flex-start;
    }

}
.wearable-image{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    transition:.3s ease;
}
@media(max-width:900px){

.wearable-section{
padding:80px 0;
}

.wearable-grid{
grid-template-columns:1fr;
gap:20px;
}

}



.am-testimonial-section{
    padding:120px 0;
    background:#ffffff;
}

.am-testimonial-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:50px;
    margin-bottom:60px;
}

.am-testimonial-title{
    max-width:700px;
}

.am-testimonial-title h2{
    font-size:clamp(2rem,4vw,4rem);
    line-height:1.1;
    margin:20px 0;
}

.am-testimonial-title p{
    color:#666;
    max-width:600px;
}

.am-stats-wrap{
    display:flex;
    gap:35px;
    flex-shrink:0;
}

.am-stat{
    text-align:center;
}

.am-stat strong{
    display:block;
    font-size:34px;
    line-height:1;
    margin-bottom:6px;
}

.am-stat span{
    color:#777;
    font-size:14px;
}

.am-slider-wrapper{
    position:relative;
}

.am-testimonial-track{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.am-review-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:30px;
    transition:0.3s ease;
}

/* .am-review-card:hover{
    transform:translateY(-1px);
} */

.am-review-type{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;
    background:#f5f5f5;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.am-review-card p{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:24px;
}

.am-review-author strong{
    display:block;
    margin-bottom:4px;
}

.am-review-author span{
    color:#777;
    font-size:14px;
}

.am-slider-btn{
    display:none;
}

@media(max-width:1024px){

.am-testimonial-track{
    grid-template-columns:repeat(2,1fr);
}

.am-testimonial-header{
    flex-direction:column;
    align-items:flex-start;
}

}
@media(max-width:767px){

.am-testimonial-section{
    padding:80px 0;
}

.am-stats-wrap{
    gap:20px;
}

.am-slider-wrapper{
    overflow:hidden;
}

.am-testimonial-track{
    display:flex;
    gap:16px;
    transition:0.4s ease;
}

.am-review-card{
    min-width:100%;
    flex:0 0 100%;
}

.am-slider-btn{
    display:flex;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
}

.am-prev{
    left:10px;
}

.am-next{
    right:10px;
}

}
.cta-section{
padding:120px 0;
}

.cta-box{
background:#111;
color:#fff;
padding:80px 40px;
border-radius:32px;
text-align:center;
}

.cta-box .section-tag{
background:rgba(255,255,255,.08);
color:#fff;
}

.cta-box h2{
max-width:800px;
margin:20px auto;
font-size:clamp(2rem,4vw,4rem);
line-height:1.1;
}

.cta-box p{
max-width:650px;
margin:0 auto 40px;
color:rgba(255,255,255,.75);
}

.cta-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.cta-buttons .primary-btn{
background:#fff;
color:#111;
}

.cta-buttons .secondary-btn{
border:1px solid rgba(255,255,255,.2);
color:#fff;
}

@media(max-width:900px){

.cta-section{
padding:80px 0;
}

.cta-box{
padding:50px 24px;
}

.cta-buttons{
flex-direction:column;
}

.cta-buttons a{
width:100%;
text-align:center;
}

}
/* =========================
   FOOTER
========================= */

.site-footer{
    background:#111111;
    color:#ffffff;
    padding:90px 0 40px;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:80px;
}

.footer-brand{
    max-width:420px;
}

.footer-brand h2{
    font-size:38px;
    line-height:1;
    margin-bottom:20px;
    font-weight:800;
}

.footer-brand p{
    color:rgba(255,255,255,.70);
    line-height:1.8;
}

.footer-links{
    display:flex;
    gap:70px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column h4{
    margin-bottom:18px;
    font-size:16px;
    font-weight:700;
}

.footer-column a{
    color:rgba(255,255,255,.70);
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:#ffffff;
}

.footer-divider{
    height:1px;
    background:rgba(255,255,255,.10);
    margin:50px 0 30px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:rgba(255,255,255,.55);
    font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .site-footer{
        padding:70px 0 30px;
    }

    .footer-top{
        flex-direction:column;
        gap:50px;
    }

    .footer-brand h2{
        font-size:30px;
    }

    .footer-links{
        flex-direction:column;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

}
.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:
    0 10px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:.3s ease;

    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-4px);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.45);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}
@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;

        right:16px;
        bottom:16px;
    }

}