/*=========================================================
NexEra CMS
Professional Design System
=========================================================*/

/*=============================
Root Variables
=============================*/

:root {

    --primary: #0F4C81;
    --primary-dark: #09385F;
    --secondary: #FF6B00;
    --dark: #1F2937;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text: #555555;
    --border: #E5E7EB;

    --radius: 12px;
    --radius-lg: 18px;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .08);
    --shadow: 0 10px 30px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, .15);

    --transition: .35s ease;

}

/*=============================
Reset
=============================*/

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;

}

img {

    max-width: 100%;
    display: block;

}

a {

    color: inherit;
    text-decoration: none;
    transition: var(--transition);

}

ul {

    margin: 0;
    padding: 0;
    list-style: none;

}

::selection {

    background: var(--primary);
    color: #fff;

}

/*=============================
Scrollbar
=============================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-track {

    background: #eee;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);
    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--secondary);

}

/*=============================
Typography
=============================*/

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;

}

h1 {

    font-size: 52px;

}

h2 {

    font-size: 40px;

}

h3 {

    font-size: 30px;

}

h4 {

    font-size: 24px;

}

h5 {

    font-size: 20px;

}

h6 {

    font-size: 18px;

}

p {

    color: var(--text);
    margin-bottom: 15px;

}

/*=============================
Section
=============================*/

.section-padding {

    padding: 90px 0;

}

.section-title {

    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;

}

.section-subtitle {

    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;

}

/*=============================
Buttons
=============================*/

.btn {

    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: none;

}

.btn-primary {

    background: var(--primary);
    border-color: var(--primary);

}

.btn-primary:hover {

    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);

}

.btn-warning {

    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;

}

.btn-warning:hover {

    background: #e35d00;
    border-color: #e35d00;
    color: #fff;
    transform: translateY(-3px);

}

.btn-outline-primary {

    border: 2px solid var(--primary);
    color: var(--primary);

}

.btn-outline-primary:hover {

    background: var(--primary);
    color: #fff;

}

/*=============================
Cards
=============================*/

.card {

    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);

}

.card:hover {

    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);

}

.card img {

    transition: .4s;

}

.card:hover img {

    transform: scale(1.05);

}

/*=============================
Utilities
=============================*/

.bg-primary {

    background: var(--primary) !important;

}

.text-primary {

    color: var(--primary) !important;

}

.bg-light {

    background: #F8F9FA !important;

}

.rounded-lg {

    border-radius: var(--radius-lg);

}

.shadow-custom {

    box-shadow: var(--shadow);

}

/*=========================================================
Hero Slider
=========================================================*/

#heroSlider {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    filter: brightness(.45);
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .15));
    z-index: 1;
}

.carousel-caption {

    position: absolute;
    top: 50%;
    bottom: auto;
    left: 8%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;

}

.carousel-caption h5 {

    color: var(--secondary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;

}

.carousel-caption h1 {

    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;

}

.carousel-caption p {

    color: #fff;
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 30px;

}

/*=========================================================
Product Card
=========================================================*/

.product-card {

    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;

}

.product-card:hover {

    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);

}

.product-card img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.product-card .card-body {

    padding: 25px;

}

.product-card h5 {

    font-size: 22px;
    min-height: 58px;

}

.product-card p {

    min-height: 75px;

}

/*=========================================================
Why Choose
=========================================================*/

.why-card {

    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;

}

.why-card:hover {

    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);

}

.why-card i {

    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: rgba(15, 76, 129, .08);
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 25px;

}

/*=========================================================
Blog Card
=========================================================*/

.blog-card {

    border: none;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;

}

.blog-card:hover {

    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);

}

.blog-card img {

    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;

}

.blog-card:hover img {

    transform: scale(1.08);

}

.blog-card .card-body {

    padding: 25px;

}

/*=========================================================
Gallery
=========================================================*/

.gallery-image {

    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: .35s;

}

.gallery-image:hover {

    transform: scale(1.05);

}

/*=========================================================
Downloads
=========================================================*/

.download-card {

    border: none;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);

}

.download-card:hover {

    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);

}

.download-card i {

    font-size: 50px;
    color: var(--primary);
}

/*=========================================================
Image Hover Effects
=========================================================*/

.image-hover {

    overflow: hidden;
    border-radius: 12px;

}

.image-hover img {

    transition: .45s ease;

}

.image-hover:hover img {

    transform: scale(1.08);

}

/*=========================================================
Hover Utilities
=========================================================*/

.hover-up {

    transition: var(--transition);

}

.hover-up:hover {

    transform: translateY(-8px);

}

.shadow-hover {

    transition: var(--transition);

}

.shadow-hover:hover {

    box-shadow: var(--shadow-lg);

}

/*=========================================================
Floating WhatsApp
=========================================================*/

.whatsapp-btn {

    position: fixed;
    right: 20px;
    bottom: 90px;

    width: 60px;
    height: 60px;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    z-index: 999;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);

    transition: .35s;

}

.whatsapp-btn:hover {

    color: #fff;

    transform: scale(1.08);

}

.whatsapp-btn::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    animation: whatsappPulse 2s infinite;

}

@keyframes whatsappPulse {

    0% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);

    }

    70% {

        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);

    }

}

/*=========================================================
Back To Top
=========================================================*/

.back-to-top {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: none;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 999;

    transition: var(--transition);

}

.back-to-top:hover {

    background: var(--secondary);

    transform: translateY(-5px);

}

/*=========================================================
Simple Fade Animation
=========================================================*/

.fade-up {

    animation: fadeUp .7s ease;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*=========================================================
Spacing Utilities
=========================================================*/

.mt-80 {

    margin-top: 80px;

}

.mb-80 {

    margin-bottom: 80px;

}

.pt-80 {

    padding-top: 80px;

}

.pb-80 {

    padding-bottom: 80px;

}

/*=========================================================
Border Radius Utilities
=========================================================*/

.radius {

    border-radius: 12px;

}

.radius-lg {

    border-radius: 20px;

}

/*=========================================================
Background Utilities
=========================================================*/

.bg-gradient-primary {

    background: linear-gradient(135deg, #0F4C81, #08365D);

    color: #fff;

}

.bg-gradient-orange {

    background: linear-gradient(135deg, #FF6B00, #E45A00);

    color: #fff;

}

/*=========================================================
End of Style.css
=========================================================*/