/*==================================================
 BORANA PLASTIC LIMITED
 Premium Corporate Website
 Version 2.0
===================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
ROOT VARIABLES
===================================================*/

:root{

    --primary:#8B0000;
    --primary-dark:#6D0000;
    --secondary:#0B4F9C;
    --accent:#E63946;

    --white:#ffffff;
    --light:#f8f9fa;
    --gray:#6c757d;
    --dark:#212529;

    --border:#e9ecef;

    --radius:12px;
    --radius-lg:20px;

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

    --transition:.35s ease;

}

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

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#ffffff;

    color:#333;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

section{

    padding:90px 0;

}

/*==================================================
HEADINGS
===================================================*/

h1{

    font-size:45px;

    font-weight:800;

    line-height:1.15;

}

h2{

    font-size:42px;

    font-weight:700;

}

h3{

    font-size:30px;

    font-weight:700;

}

h4{

    font-size:22px;

    font-weight:600;

}

.section-tag{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.section-title{

    margin-top:10px;

    margin-bottom:15px;

}

.section-subtitle{

    color:#666;

    max-width:700px;

    margin:auto;

}

/*==================================================
TOP BAR
===================================================*/

.top-bar{

    background:var(--secondary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar i{

    color:#FFD54F;

    margin-right:6px;

}

.top-bar a{

    color:#fff;

    font-weight:500;

}

.top-bar a:hover{

    color:#FFD54F;

}

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

.navbar{

    background:#fff !important;

    padding:14px 0;

    transition:.4s;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

.navbar-brand img{

    height:72px;

}

.navbar-nav .nav-link{

    font-weight:600;

    color:#333;

    margin-left:18px;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

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

.btn{

    border-radius:50px;

    padding:14px 30px;

    font-weight:600;

    transition:.35s;

}

.btn-danger{

    background:linear-gradient(
    135deg,
    #8B0000,
    #C62828);

    border:none;

}

.btn-danger:hover{

    transform:translateY(-3px);

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

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#8B0000;

}

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

.hero{

    position:relative;

    min-height:100vh;

    background:url('../assets/images/hero.jpg')
    center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65));

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

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

    color:#fff;

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    letter-spacing:2px;

}

.hero h1{

    color:#fff;

    margin-bottom:20px;

}

.hero h4{

    color:#FFD54F;

    margin-bottom:25px;

    line-height:1.6;

}

.hero p{

    color:#f2f2f2;

    font-size:18px;

    max-width:650px;

}

.hero-badges{

    margin-top:35px;

}

.hero-badges span{

    display:inline-block;

    background:#fff;

    color:#8B0000;

    padding:10px 22px;

    border-radius:50px;

    margin-right:10px;

    font-weight:700;

}

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

.hero-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

}

.hero-card h3{

    color:#8B0000;

    margin-bottom:25px;

}

.hero-card ul{

    list-style:none;

    padding:0;

}

.hero-card li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    font-weight:500;

}

.hero-card i{

    color:#198754;

    margin-right:10px;

}

/*==================================================
WHY CHOOSE BORANA
===================================================*/

.feature-box{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

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

    transition:.35s;

    height:100%;

    border-top:5px solid transparent;

}

.feature-box:hover{

    transform:translateY(-12px);

    border-top:5px solid #8B0000;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#8B0000,#D32F2F);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.feature-box h4{

    color:#8B0000;

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

    margin-bottom:0;

}

/*==========================================
IOCL SECTION
==========================================*/

.iocl-section{

background:#F8F9FA;

padding:100px 0;

}

.iocl-section img{

border-radius:20px;

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

transition:.4s;

}

.iocl-section img:hover{

transform:scale(1.02);

}

.iocl-section h2{

color:#8B0000;

margin-bottom:25px;

}

.iocl-section .lead{

font-size:19px;

color:#555;

line-height:1.9;

}

.trust-list{

margin-top:30px;

}

.trust-item{

font-size:18px;

margin-bottom:18px;

font-weight:500;

display:flex;

align-items:center;

}

.trust-item i{

color:#198754;

font-size:22px;

margin-right:15px;

}

/*==================================================
STATISTICS
===================================================*/

.stats-section{

    background:
    linear-gradient(
    135deg,
    #8B0000,
    #B22222,
    #D32F2F);

    color:#ffffff;

}

.counter-box{

    padding:35px 20px;

}

.counter{

    font-size:60px;

    font-weight:800;

    color:#FFD54F;

    margin-bottom:10px;

}

.counter-box p{

    font-size:18px;

    letter-spacing:1px;

}



/*==================================================
CATEGORY CARDS
===================================================*/

.category-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;

    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);

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

}

.category-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card h3{

    color:#8B0000;

    margin-bottom:15px;

}

.category-card p{

    color:#666;

    min-height:90px;

}

/*==========================================
PRODUCT SECTION
==========================================*/

.products-section{

padding:100px 0;

background:#ffffff;

}

.product-card{

background:#ffffff;

border-radius:22px;

overflow:hidden;

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

transition:.4s;

height:100%;

}

.product-card:hover{

transform:translateY(-12px);

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

}

.product-image{

overflow:hidden;

}

.product-image img{

width:100%;

height:260px;

object-fit:cover;

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-body{

padding:30px;

}

.product-category{

display:inline-block;

background:#0B4F9C;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.product-body h4{

color:#8B0000;

margin-bottom:15px;

font-weight:700;

}

.product-body p{

color:#666;

margin-bottom:25px;

line-height:1.8;

}

.product-body .btn{

width:100%;

}


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

.product-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

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

}

.product-image{

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-body{

    padding:28px;

}

.product-body h4{

    color:#8B0000;

    margin-bottom:10px;

}

.product-category{

    color:#ffffff;

    font-weight:600;

    margin-bottom:15px;

}

.product-body p{

    color:#666;

}

.product-body .badge{

    background:#ffffff;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

}


/*==================================================
PRICE LIST SECTION
===================================================*/

.latest-price{

    background:#F8F9FA;

}

.price-info{

    background:#ffffff;

    padding:25px;

    border-radius:18px;

    margin-top:25px;

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

}

.download-card{

    background:
    linear-gradient(
    135deg,
    #0B4F9C,
    #1E88E5);

    color:#ffffff;

    text-align:center;

    border-radius:20px;

    padding:50px 35px;

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

}

.download-card i{

    font-size:70px;

    margin-bottom:25px;

    color:#FFD54F;

}

.download-card h3{

    margin-bottom:20px;

}

.download-card p{

    opacity:.95;

}


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

.cta-section{

    background:
    linear-gradient(
    135deg,
    #8B0000,
    #B22222);

    color:#ffffff;

}

.cta-section h2{

    color:#ffffff;

    margin-bottom:15px;

}

.cta-section p{

    font-size:18px;

}

.cta-section .btn{

    background:#ffffff;

    color:#8B0000;

    font-weight:700;

}

.cta-section .btn:hover{

    background:#FFD54F;

    color:#8B0000;

}


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

.feature-box,
.category-card,
.product-card,
.download-card,
.btn{

    transition:all .35s ease;

}

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

.contact-section{
    background:#f8f9fa;
}

.contact-card,
.enquiry-card{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
}

.contact-card h3{
    color:#8B0000;
    font-weight:700;
    margin-bottom:20px;
}

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

.contact-item i{
    width:55px;
    height:55px;
    background:#8B0000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-right:18px;
    flex-shrink:0;
}

.contact-item strong{
    color:#0B4F9C;
    display:block;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#555;
}

.enquiry-card .form-control{
    border-radius:12px;
    border:1px solid #ddd;
    padding:14px;
    box-shadow:none;
}

.enquiry-card .form-control:focus{
    border-color:#8B0000;
    box-shadow:0 0 0 .2rem rgba(139,0,0,.10);
}

/*==================================================
GOOGLE MAP
==================================================*/

iframe{
    border:0;
    display:block;
}

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

.footer{

    background:#1b1b1b;

    color:#d8d8d8;

    padding:70px 0 25px;

}

.footer h4,
.footer h5{

    color:#ffffff;

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:10px;

}

.footer a{

    color:#d8d8d8;

    transition:.3s;

}

.footer a:hover{

    color:#FFD54F;

    padding-left:5px;

}

.footer p{

    margin-bottom:10px;

}

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:40px 0 20px;

}

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

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    z-index:999;

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

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

    color:#fff;

}

.call-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    background:#8B0000;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    z-index:999;

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

    transition:.3s;

}

.call-float:hover{

    background:#B22222;

    color:#fff;

    transform:scale(1.1);

}

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

#topBtn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0B4F9C;

    color:#fff;

    font-size:22px;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.3s;

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

}

#topBtn:hover{

    background:#8B0000;

}

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

.feature-box,
.category-card,
.product-card,
.contact-card,
.enquiry-card,
.download-card{

    transition:all .35s ease;

}

.feature-box:hover,
.category-card:hover,
.product-card:hover{

    transform:translateY(-10px);

}

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

@media (max-width:991px){

.hero{

    text-align:center;

    min-height:auto;

    padding:120px 0 80px;

}

.hero h1{

    font-size:42px;

}

.hero h4{

    font-size:22px;

}

.hero-card{

    margin-top:40px;

}

.navbar-brand img{

    height:55px;

}

.section-title{

    font-size:34px;

}

}

@media (max-width:768px){

section{

    padding:60px 0;

}

.top-bar{

    text-align:center;

    font-size:13px;

}

.top-bar .text-lg-end{

    margin-top:8px;

}

h1{

    font-size:34px;

}

h2{

    font-size:28px;

}

.hero-badges span{

    display:block;

    margin:10px auto;

    width:180px;

}

.counter{

    font-size:42px;

}

.contact-card,
.enquiry-card{

    padding:25px;

}

.footer{

    text-align:center;

}

.whatsapp-float,
.call-float{

    width:55px;

    height:55px;

}

}

