/* ===========================================
   RISHI INTERNATIONAL FZCO
   DESIGN SYSTEM
=========================================== */

:root{

    --primary:#F26A21;
    --primary-dark:#D95B19;
    --secondary:#1F2328;

    --dark:#101418;
    --dark2:#1C2127;

    --light:#F8F9FA;

    --white:#ffffff;

    --text:#555;

    --heading:#101418;

    --radius:14px;

    --shadow:0 20px 60px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/* ===========================================
   RESET
=========================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{
padding: top 100px;
font-family:'Inter',sans-serif;

color:var(--text);

background:#fff;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

h1,h2,h3,h4,h5{

font-family:'Poppins',sans-serif;

color:var(--heading);

font-weight:700;

}

section{

padding:110px 0;

}

.container{

max-width:1320px;

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

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

padding:22px 0;

transition:.4s;

}

.navbar{

padding:0;

}

.navbar-brand img{

height: 85px;

}

.nav-link{

color:#685f5f;

font-weight:500;

margin-left:30px;

}

.nav-link:hover{

color:var(--primary);

}

.quote-btn{

padding:12px 28px;

border-radius:50px;

background:var(--primary);

border:none;

margin-left:30px;

font-weight:600;

}

.quote-btn:hover{

background:var(--primary-dark);

transform:translateY(-3px);

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

.hero{
    position:relative;
    min-height:90vh;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("./images/test.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;
}



.hero .container{

position:relative;

z-index:3;

}

.hero h1{

font-size:55px;

font-weight:900;

line-height:1.05;

color:#f0eaea;
text-shadow:0 8px 25px rgba(0,0,0,.35);

margin-bottom:30px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:22px;

color:#ddd;
line-height:1.8;

max-width:650px;

margin-bottom:45px;

}

.hero-tag{

display:inline-block;

margin-bottom:20px;

color:var(--primary);

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

}

.hero-buttons{

display:flex;

gap:20px;

margin-top:30px;

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

.about-section{
    padding:120px 0;
    background:#ffffff;
}

.section-tag{
    display:inline-block;
    color:#f97316;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:15px;
}

.about-section h2{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#111827;
    margin-bottom:30px;
}

.about-section p{
    font-size:20px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:35px;
}

.about-image{
    width:100%;
    border-radius:22px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
    transition:.5s;
}

.about-image:hover{
    transform:scale(1.02);
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:25px;
    margin-bottom:35px;
}

.about-features div{
    background:#f8fafc;
    padding:16px 20px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.about-features div:hover{
    background:#f97316;
    color:#fff;
    transform:translateY(-4px);
}
/*=================================
SERVICES
=================================*/

.services-section{

    background:#f7f8fa;

    padding:120px 0;

}

.section-title{

font-size:44px;

font-weight:800;

margin-bottom:20px;

}

.section-subtitle{

    max-width:760px;

    margin:auto;

    color:#6b7280;

    font-size:20px;

    line-height:1.8;

}

.services-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-12px);

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

}

.service-icon{

    font-size:60px;

    margin-bottom:25px;

}

.service-card h3{

    position:relative;

    font-size:28px;

    font-weight:700;

    margin-bottom:30px;

    padding-bottom:18px;

}

.service-card h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:4px;

    background:var(--primary);

    border-radius:50px;

}

.service-card p{

    color:#666;

    line-height:1.9;

    font-size:17px;

}


/*=================================
COMPANY STATS
=================================*/

.stats-section{

    background:#111;

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    transition:.35s;

    background:rgba(255,255,255,.02);

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#ff6b1a;

    background:rgba(255,107,26,.08);

}

.stat-card h2{

    font-size:64px;

    font-weight:800;

    color:#ff6b1a;

    margin-bottom:10px;

}

.stat-card p{

    color:#fff;

    font-size:20px;

    letter-spacing:.5px;

}
/*=================================
HERO FEATURES
=================================*/

.hero-features{

    margin-top:55px;

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 22px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    backdrop-filter:blur(8px);

    transition:.35s;

}

.hero-feature:hover{

    background:rgba(255,107,26,.15);

    border-color:#ff6b1a;

    transform:translateY(-3px);

}

.hero-feature span{

    color:#ff6b1a;

    font-size:22px;

    font-weight:700;

}

.hero-feature p{

    margin:0;

    color:#fff;

    font-size:16px;

    font-weight:500;

}

.hero-secondary-btn{

    padding:15px 35px;

}
/*=================================
WHY CHOOSE RISHI
=================================*/

.why-section{

    background:#15191f;

    padding:120px 0;

}

.why-section .section-title{

    color:#fff;

}

.why-section .section-subtitle{

    color:#cfcfcf;

    max-width:760px;

    margin:20px auto 70px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#1e242c;

    padding:40px;

    border-radius:22px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

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

}

.why-number{

    color:var(--primary);

    font-size:46px;

    font-weight:800;

    margin-bottom:20px;

}

.why-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:28px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

}
/*=================================
WHY INDUSTRY TRUSTS RISHI
=================================*/

.why-section{

    background:#15191f;

    padding:120px 0;

}

.why-section .section-tag{

    color:#ff6b1a;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.why-section .section-title{

    color:#ffffff;

    font-size:52px;

    font-weight:800;

    margin-top:15px;

    margin-bottom:20px;

    line-height:1.2;

}

.why-section .section-subtitle{

    color:#cfcfcf;

    font-size:19px;

    max-width:760px;

    margin:0 auto 70px;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#1f252d;

    padding:40px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.06);

    transition:all .35s ease;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#ff6b1a;

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

}

.why-number{

    font-size:52px;

    font-weight:800;

    color:#ff6b1a;

    margin-bottom:20px;

}

.why-card h3{

    color:#ffffff;

    font-size:26px;

    font-weight:700;

    margin-bottom:18px;

    line-height:1.3;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

    font-size:16px;

    margin:0;

}

/* Tablet */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media(max-width:768px){

    .why-section{

        padding:80px 0;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .why-section .section-title{

        font-size:38px;

    }

}/*=================================
SUSTAINABLE WOOD RECOVERY
=================================*/

.sustainability-section{

    background:#101418;

    padding:120px 0;

}

.green-tag{

    color:#55b86a !important;

}

.sustainability-section .section-title{

    color:#ffffff;

    margin-bottom:35px;

}

.sustainability-text{

    color:#d6d6d6;

    font-size:18px;

    line-height:1.9;

    margin-bottom:25px;

}

.sustainability-image{

    width:100%;

    border-radius:24px;

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    transition:.5s;

}

.sustainability-image:hover{

    transform:scale(1.03);

}

.eco-badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin:40px 0;

}

.eco-badges span{

    padding:12px 20px;

    border-radius:50px;

    background:rgba(85,184,106,.12);

    border:1px solid rgba(85,184,106,.35);

    color:#b9efc6;

    font-size:15px;

    font-weight:600;

}

.eco-btn{

    background:#55b86a;

    color:#fff;

    padding:16px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    border:none;

}

.eco-btn:hover{

    background:#439856;

    color:#fff;

    transform:translateY(-3px);

}

@media(max-width:992px){

    .sustainability-image{

        margin-top:60px;

    }

}
/*=================================
INDUSTRIES WE SERVE
=================================*/

.industries-section{

    background:#ffffff;

    padding:120px 0;

}

.industries-section .section-title{

    color:#111827;

    margin-top:15px;

    margin-bottom:20px;

}

.industries-section .section-subtitle{

    max-width:760px;

    margin:0 auto 70px;

    color:#6b7280;

    font-size:19px;

    line-height:1.8;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.industry-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px;

    border:1px solid #e5e7eb;

    transition:.35s ease;

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

    height:100%;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#ff6b1a;

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

}

.industry-icon{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    border-radius:18px;

    background:#fff4ed;

    margin-bottom:28px;

    transition:.35s;

}

.industry-card:hover .industry-icon{

    background:#ff6b1a;

    transform:rotate(-6deg);

}

.industry-card:hover .industry-icon{

    color:#ffffff;

}

.industry-card h3{

    font-size:26px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

    line-height:1.3;

}

.industry-card p{

    color:#6b7280;

    line-height:1.8;

    font-size:16px;

    margin:0;

}

/* Tablet */

@media(max-width:992px){

    .industries-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media(max-width:768px){

    .industries-section{

        padding:80px 0;

    }

    .industries-grid{

        grid-template-columns:1fr;

    }

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

.contact-section{

    padding:120px 0;

    background:#f8fafc;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    margin-top:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-6px);

}

.contact-icon{

    width:60px;

    height:60px;

    background:#ff6b1a;

    color:#fff;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

}

.contact-card h4{

    font-size:22px;

    margin-bottom:8px;

    font-weight:700;

}

.contact-card p{

    margin:0;

    color:#6b7280;

    line-height:1.7;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:#ff6b1a;

    outline:none;

    box-shadow:0 0 0 4px rgba(255,107,26,.15);

}

.contact-form button{

    border:none;

    cursor:pointer;

    padding:18px;

    font-size:18px;

    margin-top:10px;

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

.footer{

    background:#111827;

    color:#d1d5db;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

.footer-logo{

    width:150px;

    margin-bottom:25px;

}

.footer-column h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    font-weight:700;

}

.footer-column p{

    color:#9ca3af;

    line-height:1.9;

    font-size:16px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:14px;

    color:#9ca3af;

    transition:.3s;

}

.footer-column li:hover{

    color:#ff6b1a;

    transform:translateX(5px);

}

.footer-column a{

    color:#9ca3af;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#ff6b1a;

}

.footer-divider{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:60px 0 30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

    color:#9ca3af;

    font-size:15px;

}
/*==========================
NAVBAR SCROLLED
==========================*/

.navbar.scrolled{

    background:#ffffff;

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

    transition:.35s;

}

.navbar.scrolled .nav-link{

    color:#111827 !important;

}

.navbar.scrolled .navbar-brand{

    color:#111827;

}

.navbar{

    transition:.35s;

}
/*================================================
  MOBILE & TABLET RESPONSIVE
================================================*/

@media (max-width:992px){

.container{
    padding-left:25px;
    padding-right:25px;
}

/* NAVBAR */

.navbar-brand img{
    height:60px;
}

.quote-btn{
    margin-left:0;
    margin-top:15px;
}

/* HERO */

.hero{
    min-height:auto;
    padding:150px 0 80px;
    background-position:center;
}

.hero h1{
    font-size:42px;
    line-height:1.15;
    margin-bottom:18px;
}

.hero p{
    font-size:18px;
    max-width:100%;
    margin-bottom:30px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

.hero-features{
    flex-direction:column;
    gap:14px;
}

.hero-feature{
    width:100%;
}

/* STATS */

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.stat-card{
    padding:30px 20px;
}

.stat-card h2{
    font-size:42px;
}

.stat-card p{
    font-size:16px;
}

/* ABOUT */

.about-section{
    padding:80px 0;
}

.about-section h2{
    font-size:38px;
}

.about-section p{
    font-size:17px;
}

.about-image{
    margin-bottom:40px;
}

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

/* WHY */

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

.why-card{
    padding:30px;
}

/* INDUSTRIES */

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

.industry-card{
    padding:30px;
}

/* CONTACT */

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

.contact-form{
    padding:30px;
}

/* FOOTER */

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-bottom{
    text-align:center;
    justify-content:center;
}

}


/* PHONE ONLY */

@media (max-width:576px){

.hero{
    padding-top:130px;
}

.hero-tag{
    font-size:13px;
}

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

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

.section-title{
    font-size:34px;
}

.about-section h2{
    font-size:32px;
}

.why-section .section-title{
    font-size:32px;
}

.industry-card h3{
    font-size:22px;
}

.contact-section h2{
    font-size:32px;
}

.stat-card{
    padding:22px;
}

.stat-card h2{
    font-size:34px;
}

.hero-feature{
    padding:12px 18px;
}

.hero-feature p{
    font-size:15px;
}

}/* =================================
   MOBILE HERO BACKGROUND
================================= */

@media (max-width: 768px){

    .hero{
        background:
            linear-gradient(
                rgba(0,0,0,.45),
                rgba(0,0,0,.45)
            ),
            url("./images/rishi-warehouse-mobile.jpg");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

}
/* =================================
   MOBILE NAVIGATION FIX
================================= */

@media (max-width: 768px) {

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: rgba(10, 14, 20, 0.98);

        padding: 20px 25px 25px;

        border-top: 1px solid rgba(255,255,255,0.12);

        z-index: 9999;

        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .navbar-nav .nav-link {
        display: block;

        padding: 14px 10px;

        color: #ffffff !important;

        font-size: 18px;
        font-weight: 500;

        border-radius: 8px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(255,107,26,0.15);
        color: #ff6b1a !important;
    }

}