/*==================================================
 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;

}

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

.product-hero{

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

padding:90px 0;

color:#fff;

}

.hero-badge{

display:inline-block;

background:#FFD54F;

color:#8B0000;

padding:10px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.product-hero h1{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.product-hero p{

font-size:18px;

line-height:1.8;

}

.breadcrumb{

background:none;

padding:0;

margin-top:25px;

}

.breadcrumb a{

color:#FFD54F;

text-decoration:none;

}

.hero-image{

max-height:360px;

}

.product-search{

padding:50px 0 20px;

background:#F8F9FA;

}

.search-box{

position:relative;

max-width:700px;

margin:auto;

}

.search-box input{

height:60px;

padding-left:25px;

padding-right:55px;

border-radius:50px;

font-size:17px;

}

.search-box i{

position:absolute;

right:25px;

top:22px;

color:#8B0000;

font-size:20px;

}

.category-filter{

background:#F8F9FA;

padding-bottom:50px;

}

.filter-btn{

border:none;

padding:12px 30px;

margin:8px;

border-radius:30px;

background:#fff;

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

transition:.3s;

font-weight:600;

}

.filter-btn:hover,
.filter-btn.active{

background:#8B0000;

color:#fff;

}

/*==================================================
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;

}

/*=====================================
LATEST PRICE LIST
=====================================*/

.latest-price-section{

padding:100px 0;

background:#F7F9FC;

}

.price-info{

background:#fff;

padding:25px;

border-radius:18px;

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

margin-top:30px;

}

.download-card{

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

padding:50px;

border-radius:22px;

color:#fff;

text-align:center;

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

}

.download-card i{

font-size:70px;

margin-bottom:25px;

color:#FFD54F;

}

.download-card .btn{

font-weight:600;

}
/*==================================================
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
==================================================*/

/*==========================================
PREMIUM CORPORATE FOOTER
==========================================*/

.footer{

    border-top:5px solid #FFD54F;

}

.footer{

    background:linear-gradient(
        135deg,
        #003366 0%,
        #0056A6 50%,
        #0B4F9C 100%
    );

    color:#EAF4FF;

    padding:70px 0 20px;

}

.footer h4,
.footer h5{

    color:#ffffff;

    font-weight:700;

    margin-bottom:25px;

}

.footer p{

    color:#DCEBFF;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#DCEBFF;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#FFD54F;

    padding-left:8px;

}

.footer i{

    color:#FFD54F;

    width:22px;

    margin-right:8px;

}

.footer hr{

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

    margin:40px 0 20px;

}

.footer-bottom{

    font-size:15px;

    color:#C7DFFF;

}

.footer-bottom a{

    color:#FFD54F;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#ffffff;

}

.footer-social{

    margin-top:20px;

}

.footer-social a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    margin-right:10px;

    border-radius:50%;

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

    color:#ffffff;

    transition:.35s;

}

.footer-social a:hover{

    background:#FFD54F;

    color:#003366;

    transform:translateY(-5px);

}

/*==================================================
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;

}

}

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

.news-hero{

background:linear-gradient(135deg,#003b70,#0056a6);

padding:80px 0;

color:#fff;

}

.news-hero h1{

font-size:46px;

font-weight:700;

margin-bottom:20px;

}

.news-hero p{

font-size:18px;

opacity:.95;

max-width:700px;

}

.news-hero img{

max-height:260px;

}

/*====================================================
NEWS CARDS
====================================================*/

.news-card{

border-radius:18px;

overflow:hidden;

transition:.35s;

background:#fff;

}

.news-card:hover{

transform:translateY(-8px);

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

}

.news-image{

position:relative;

overflow:hidden;

}

.news-image img{

height:230px;

width:100%;

object-fit:cover;

transition:.5s;

}

.news-card:hover img{

transform:scale(1.08);

}

.news-category{

position:absolute;

top:15px;

left:15px;

background:#dc3545;

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.news-card h5{

font-weight:700;

line-height:1.5;

min-height:70px;

}

.news-card p{

color:#666;

font-size:15px;

line-height:1.7;

}

.news-card .btn{

border-radius:30px;

font-weight:600;

}

.news-card .btn:hover{

background:#dc3545;

color:#fff;

}

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

.about-hero{

background:linear-gradient(135deg,#003b70,#005da8,#7B1113);

padding:90px 0;

color:#fff;

}

.hero-tag{

display:inline-block;

background:#ffffff20;

padding:8px 18px;

border-radius:30px;

margin-bottom:20px;

font-weight:600;

}

.about-hero h1{

font-size:52px;

font-weight:700;

line-height:1.2;

margin-bottom:25px;

}

.about-hero h1 span{

color:#FFD166;

}

.about-hero p{

font-size:18px;

line-height:1.9;

opacity:.95;

}

.hero-image{

max-height:430px;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-12px);}

100%{transform:translateY(0);}

}

/*==================================================
ABOUT BOXES
==================================================*/

.about-box{

background:#fff;

border-radius:16px;

padding:25px;

text-align:center;

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

height:100%;

transition:.3s;

}

.about-box:hover{

transform:translateY(-8px);

}

.about-box i{

font-size:34px;

color:#dc3545;

margin-bottom:15px;

}

.about-box h5{

font-weight:700;

margin-bottom:10px;

}

.about-box p{

margin:0;

color:#666;

font-size:15px;

}

/*=========================================
SECTION TITLES
=========================================*/

.section-subtitle{
display:inline-block;
padding:6px 18px;
background:#ffe9e9;
color:#dc3545;
border-radius:30px;
font-weight:600;
margin-bottom:15px;
}

.section-title{
font-size:40px;
font-weight:700;
margin-bottom:20px;
}

/*=========================================
VISION CARDS
=========================================*/

.value-card{
background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
height:100%;
transition:.35s;
}

.value-card:hover{
transform:translateY(-10px);
}

.value-card .icon{
width:80px;
height:80px;
background:#dc3545;
color:#fff;
border-radius:50%;
margin:0 auto 20px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
}

/*=========================================
FEATURES
=========================================*/

.feature-card{
background:#ffffff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.06);
height:100%;
transition:.3s;
}

.feature-card:hover{
background:#dc3545;
color:#fff;
transform:translateY(-8px);
}

.feature-card:hover p{
color:#fff;
}

.feature-card i{
font-size:42px;
color:#dc3545;
margin-bottom:20px;
}

.feature-card:hover i{
color:#fff;
}

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

.iocl-section{
background:linear-gradient(135deg,#003b70,#005ca9,#7B1113);
padding:80px 0;
}

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

.product-card{

background:#fff;

border-radius:18px;

overflow:hidden;

text-align:center;

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

transition:.3s;

padding-bottom:25px;

height:100%;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-card img{

height:220px;

width:100%;

object-fit:cover;

}

.product-card h4{

margin:20px 0 10px;

font-weight:700;

}

.product-card p{

padding:0 20px;

color:#666;

}

/*=========================
INDUSTRIES
=========================*/

.industry-box{

background:#fff;

padding:30px;

text-align:center;

border-radius:15px;

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

transition:.3s;

height:100%;

}

.industry-box:hover{

background:#dc3545;

color:#fff;

transform:translateY(-8px);

}

.industry-box i{

font-size:42px;

margin-bottom:15px;

color:#dc3545;

}

.industry-box:hover i{

color:#fff;

}

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

.stats-section{

padding:80px 0;

background:linear-gradient(135deg,#003b70,#005ca9);

color:#fff;

}

.counter{

font-size:52px;

font-weight:700;

margin-bottom:10px;

color:#FFD166;

}

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

.cta-section{

padding:80px 0;

background:linear-gradient(135deg,#003b70,#005ca9,#7B1113);

color:#fff;

}

.cta-section h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

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

.contact-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

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

height:100%;

transition:.3s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-card i{

font-size:45px;

color:#dc3545;

margin-bottom:20px;

}

.contact-card h5{

font-weight:700;

margin-bottom:12px;

}

.contact-card p{

color:#666;

line-height:1.8;

}


