/* ===================================
   REDZ TRADING LLC
   Premium Sisal Fibre Website
   =================================== */

/* Google Font Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
}

/* Containers */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Links */

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ======================
   Header
====================== */

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:1000;

    background:#fff;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:70px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links li a{

    color:#222;

    font-weight:500;

    transition:.3s;

}

.nav-links li a:hover{

    color:#d21c23;

}

.btn{

    display:inline-block;

    padding:14px 32px;

    background:#d21c23;

    color:#fff;

    border-radius:6px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#a9151b;

}

.btn-outline{

    display:inline-block;

    margin-left:15px;

    padding:14px 32px;

    border:2px solid #d21c23;

    color:#d21c23;

    border-radius:6px;

    transition:.3s;

}

.btn-outline:hover{

    background:#d21c23;

    color:white;

}

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

}

/* ======================
   Hero
====================== */

.hero{

    padding-top:140px;

    padding-bottom:80px;

    background:#f8f8f8;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.hero-text h4{

    color:#d21c23;

    letter-spacing:2px;

    font-size:18px;

    margin-bottom:20px;

}

.hero-text h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

.hero-text span{

    color:#d21c23;

}

.hero-text p{

    font-size:18px;

    margin-bottom:35px;

    color:#666;

}

.hero-image img{

    border-radius:12px;

    box-shadow:0 10px 35px rgba(0,0,0,.15);

}

/* ======================
   Features
====================== */

.features{

    padding:80px 0;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-box{

    text-align:center;

    padding:40px 25px;

    background:white;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    font-size:45px;

    color:#d21c23;

    margin-bottom:20px;

}

.feature-box h3{

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

}

/* ==============================
   ABOUT SECTION
================================= */

.about-home{
    padding:100px 0;
    background:#ffffff;
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-home img{
    width:100%;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.about-home h2{
    font-size:42px;
    color:#222;
    margin-bottom:20px;
}

.about-home p{
    color:#666;
    margin-bottom:20px;
}

.check-list{
    list-style:none;
    margin:30px 0;
}

.check-list li{
    margin-bottom:15px;
    padding-left:35px;
    position:relative;
    font-weight:500;
}

.check-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d21c23;
    font-size:20px;
    font-weight:bold;
}

/* ==============================
   PRODUCTS
================================= */

.products{
    background:#f8f8f8;
    padding:100px 0;
}

.products h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.section-text{
    text-align:center;
    color:#777;
    margin-bottom:50px;
}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:white;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.card h3{

    padding:25px;

    text-align:center;

    color:#222;

}

/* ==============================
   CTA SECTION
================================= */

.cta{

    background:#d21c23;

    color:white;

    padding:90px 0;

    text-align:center;

}

.cta h2{

    font-size:44px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    font-size:18px;

}

.cta .btn{

    background:white;

    color:#d21c23;

}

.cta .btn:hover{

    background:#222;

    color:white;

}

/* ==============================
   FOOTER
================================= */

footer{

    background:#1b1b1b;

    color:#ddd;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

}

.footer-logo{

    height:70px;

    margin-bottom:20px;

}

footer h3{

    color:white;

    margin-bottom:20px;

}

footer p{

    margin-bottom:12px;

    line-height:1.8;

}

footer i{

    color:#d21c23;

    margin-right:10px;

}

footer a{

    color:#ddd;

    transition:.3s;

}

footer a:hover{

    color:white;

}

.copyright{

    margin-top:50px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:#999;

}

/* ==============================
   UTILITIES
================================= */

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-50{
    margin-bottom:50px;
}

.shadow{
    box-shadow:0 12px 35px rgba(0,0,0,.10);
}

.rounded{
    border-radius:12px;
}

/* =====================================
   ANIMATIONS
===================================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.hero-text{
    animation:fadeUp 1s ease;
}

.hero-image img{
    animation:zoomIn 1.2s ease;
}

.card,
.feature-box{
    transition:all .35s ease;
}

/* =====================================
   SCROLL TO TOP BUTTON
===================================== */

#topBtn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#d21c23;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

    font-size:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

#topBtn:hover{

    background:#222;

}

/* =====================================
   TABLET
===================================== */

@media (max-width:992px){

.hero-grid,
.two-column{

grid-template-columns:1fr;

text-align:center;

}

.hero-image{
margin-top:40px;
}

.features .container{

grid-template-columns:repeat(2,1fr);

}

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

nav{

height:80px;

}

.logo img{

height:60px;

}

.menu-toggle{

display:block;

font-size:28px;

color:#222;

cursor:pointer;

}

.nav-links{

position:absolute;

top:80px;

left:-100%;

width:100%;

background:#fff;

flex-direction:column;

text-align:center;

padding:30px 0;

box-shadow:0 8px 18px rgba(0,0,0,.1);

transition:.4s;

gap:25px;

}

.nav-links.active{

left:0;

}

.btn{

display:none;

}

.hero{

padding-top:120px;

}

.hero-text h1{

font-size:38px;

}

.hero-text p{

font-size:16px;

}

.hero-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.hero-buttons .btn,

.hero-buttons .btn-outline{

display:inline-block;

margin:0;

}

.features .container{

grid-template-columns:1fr;

}

.product-grid{

grid-template-columns:1fr;

}

.card img{

height:230px;

}

.about-home h2,

.products h2,

.cta h2{

font-size:32px;

}

.cta{

padding:70px 20px;

}

.footer-grid{

gap:35px;

}

}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width:480px){

.container{

width:92%;

}

.hero-text h1{

font-size:30px;

}

.hero-text h4{

font-size:15px;

}

.hero-text p{

font-size:15px;

}

.card img{

height:200px;

}

.feature-box{

padding:30px 20px;

}

.about-home{

padding:70px 0;

}

.products{

padding:70px 0;

}

footer{

padding:60px 0 20px;

}

}

/* =====================================
   END OF STYLE SHEET
===================================== */
/* Contact Form */

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
font-family:Poppins,sans-serif;
width:100%;
}

input:focus,
textarea:focus{
outline:none;
border-color:#d21c23;
box-shadow:0 0 5px rgba(210,28,35,.3);
}

textarea{
resize:vertical;
}

iframe{
margin-top:40px;
}