/* ==========================================
   RHINO SHIELD PLUS
   PREMIUM WEBSITE
   PART 1
==========================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#080808;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(14px);

    transition:.4s;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:95px;

}

/*==========================
LOGO
===========================*/

.logo img{

    height:110px;

    width:auto;

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.05);

}

/*==========================
NAVBAR
===========================*/

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#ff6b00;

    transition:.35s;

}

.navbar a:hover{

    color:#ff6b00;

}

.navbar a:hover::after{

    width:100%;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#050505,#151515);

    padding-top:120px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:#ff6b00;

    border-radius:50%;

    filter:blur(180px);

    opacity:.18;

    right:-120px;

    top:100px;

}

/*==========================
GRID
===========================*/

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

/*==========================
LEFT
===========================*/

.hero-left{

    animation:fadeLeft 1s ease;

}

.subtitle{

    display:inline-block;

    color:#ff6b00;

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

    letter-spacing:1px;

}

.hero-left h1{

    font-size:66px;

    font-weight:800;

    line-height:1.12;

    margin-bottom:25px;

}

.hero-text{

    font-size:22px;

    color:#d8d8d8;

    margin-bottom:40px;

}

/*==========================
BUTTONS
===========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.btn{

    padding:17px 36px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

    font-size:16px;

}

.btn-primary{

    background:#ff6b00;

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-5px);

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

}

.btn-outline{

    border:2px solid #ff6b00;

    color:#fff;

}

.btn-outline:hover{

    background:#ff6b00;

}

/*==========================
FEATURE BOXES
===========================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.feature-box{

    background:#191919;

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

    padding:14px 22px;

    border-radius:40px;

    transition:.3s;

}

.feature-box:hover{

    transform:translateY(-6px);

    background:#242424;

}

/*==========================
RIGHT
===========================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    animation:fadeRight 1.2s ease;

}

.glow-circle{

    position:absolute;

    width:380px;

    height:380px;

    background:#ff6b00;

    border-radius:50%;

    filter:blur(120px);

    opacity:.22;

    z-index:1;

}

.hero-image{

    width:420px;

    position:relative;

    z-index:2;

    border-radius:20px;

    animation:floating 4s ease-in-out infinite;

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

}

/*==========================
INTRO
===========================*/

.intro{

    padding:110px 0;

    background:#111;

}

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title span{

    color:#ff6b00;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:42px;

    margin-top:15px;

}

.intro p{

    max-width:950px;

    margin:auto;

    text-align:center;

    color:#d4d4d4;

    font-size:20px;

    line-height:1.9;

}

/*==========================
ANIMATIONS
===========================*/

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

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

.about{

    padding:110px 0;

    background:#0d0d0d;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    max-width:480px;

    margin:auto;

    border-radius:20px;

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

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.section-tag{

    color:#ff6b00;

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:25px;

}

.about-content p{

    color:#d2d2d2;

    font-size:18px;

    margin-bottom:20px;

    line-height:1.9;

}

.about-info{

    display:grid;

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

    gap:18px;

    margin-top:35px;

}

.info-box{

    background:#161616;

    padding:25px;

    border-radius:15px;

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

    transition:.35s;

}

.info-box:hover{

    transform:translateY(-8px);

    border-color:#ff6b00;

}

.info-box h3{

    color:#ff6b00;

    margin-bottom:10px;

}

.info-box p{

    margin:0;

    font-size:15px;

}

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

.why-us{

    padding:110px 0;

    background:#121212;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:60px;

}

.feature-card{

    background:#191919;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

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

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#ff6b00;

    box-shadow:0 20px 40px rgba(255,107,0,.15);

}

.feature-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    background:#ff6b00;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:34px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    color:#cfcfcf;

    font-size:16px;

    line-height:1.8;

}

/*=========================================
PRODUCTS
=========================================*/

.products{

    padding:120px 0;

    background:#0b0b0b;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;

}

.product-card{

    background:#161616;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

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

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:#ff6b00;

    box-shadow:0 25px 50px rgba(255,107,0,.15);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.product-card h3{

    padding:25px 25px 10px;

    font-size:28px;

}

.product-card p{

    padding:0 25px;

    color:#cccccc;

}

.product-card ul{

    padding:20px 40px;

}

.product-card ul li{

    color:#d7d7d7;

    margin-bottom:12px;

    list-style:disc;

}

.price{

    padding:0 25px;

    font-size:36px;

    font-weight:700;

    color:#ff6b00;

}

.product-btn{

    display:block;

    margin:30px 25px;

    text-align:center;

    background:#ff6b00;

    color:#fff;

    padding:15px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.product-btn:hover{

    background:#ff8d2b;

    transform:translateY(-3px);

}

/*=========================================
COMMON SPACING
=========================================*/

.about,
.why-us,
.products{

    position:relative;

}

.about::before,
.products::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:#ff6b00;

    filter:blur(150px);

    opacity:.08;

    border-radius:50%;

}

.about::before{

    left:-120px;

    top:100px;

}

.products::before{

    right:-120px;

    bottom:50px;

}
/*=========================================
APPLICATIONS
=========================================*/

.applications{

    padding:120px 0;

    background:#101010;

}

.application-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:25px;

    margin-top:60px;

}

.application-card{

    background:#181818;

    padding:35px;

    text-align:center;

    border-radius:18px;

    font-size:22px;

    font-weight:600;

    transition:.35s;

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

}

.application-card:hover{

    transform:translateY(-10px);

    background:#ff6b00;

    color:#fff;

}

/*=========================================
GALLERY
=========================================*/

.gallery{

    padding:120px 0;

    background:#0d0d0d;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.gallery-grid img:hover{

    transform:scale(1.06);

    box-shadow:0 20px 50px rgba(255,107,0,.35);

}

/*=========================================
DEALER FORM
=========================================*/

.dealer{

    padding:120px 0;

    background:#111;

}

.dealer-text{

    text-align:center;

    color:#ddd;

    margin-bottom:40px;

    font-size:20px;

}

.dealer-form{

    max-width:800px;

    margin:auto;

}

.dealer-form input,
.dealer-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#1d1d1d;

    color:#fff;

    font-size:16px;

}

.dealer-form input:focus,
.dealer-form textarea:focus{

    border:2px solid #ff6b00;

}

.dealer-form button{

    width:100%;

    padding:18px;

    background:#ff6b00;

    color:#fff;

    border:none;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.dealer-form button:hover{

    transform:translateY(-5px);

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

}

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

.contact{

    padding:120px 0;

    background:#0b0b0b;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-left span{

    color:#ff6b00;

    font-weight:700;

    letter-spacing:2px;

}

.contact-left h2{

    font-size:42px;

    margin:20px 0;

}

.contact-left p{

    margin-bottom:20px;

    color:#ddd;

    font-size:18px;

}

.contact-right iframe{

    width:100%;

    height:420px;

    border:none;

    border-radius:20px;

}

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

footer{

    background:#000;

    padding:80px 0 30px;

}

.footer-container{

    display:grid;

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

    gap:50px;

    margin-bottom:50px;

}

.footer-logo img{

    height:90px;

    margin-bottom:15px;

}

.footer-logo h3{

    color:#fff;

    margin-bottom:10px;

}

.footer-logo p{

    color:#bbb;

}

.footer-links h4,
.footer-contact h4{

    margin-bottom:20px;

    color:#ff6b00;

}

.footer-links a{

    display:block;

    color:#ccc;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#ff6b00;

}

.footer-contact p{

    color:#ccc;

    margin-bottom:15px;

}

.copyright{

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

    padding-top:30px;

    text-align:center;

    color:#aaa;

    line-height:1.8;

}

/*=========================================
FLOATING BUTTONS
=========================================*/

.call-btn,
.whatsapp-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.3);

    z-index:999;

    transition:.35s;

}

.call-btn{

    bottom:100px;

    background:#ff6b00;

}

.whatsapp-btn{

    bottom:25px;

    background:#25D366;

}

.call-btn:hover,
.whatsapp-btn:hover{

    transform:scale(1.12);

}

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

@media(max-width:991px){

.hero-container,
.about-container,
.contact-container{

grid-template-columns:1fr;

text-align:center;

}

.about-info{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-left h1{

font-size:48px;

}

.hero-image{

width:320px;

margin:auto;

}

.navbar ul{

gap:15px;

flex-wrap:wrap;

justify-content:center;

}

.logo img{

height:90px;

}

}

@media(max-width:768px){

.header .container{

flex-direction:column;

height:auto;

padding:20px 0;

}

.navbar{

margin-top:15px;

}

.hero{

padding-top:170px;

}

.hero-left h1{

font-size:38px;

}

.subtitle{

font-size:20px;

}

.hero-text{

font-size:18px;

}

.hero-buttons{

justify-content:center;

}

.section-title h2{

font-size:32px;

}

.product-card img{

height:240px;

}

.footer-logo img{

margin:auto;

}

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:#ff6b00;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#ff8a2b;

}