﻿/*====================================================
    NIYARA MINERAL WATER
    Main Stylesheet
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0057B8;
    --secondary: #00AEEF;
    --dark: #0B2E59;
    --green: #2E8B57;
    --white: #ffffff;
    --light: #F5FAFF;
    --text: #555555;
    --border: #E6EEF7;
    --shadow: 0 10px 35px rgba(0,0,0,.08);
    --transition: all .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1320px;
}

/*=====================================
            TOP BAR
======================================*/

.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
}

    .top-bar .row {
        min-height: 45px;
    }

    .top-bar ul {
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: wrap;
    }

        .top-bar ul li {
            color: #fff;
        }

            .top-bar ul li i {
                color: #7fd5ff;
                margin-right: 8px;
            }

    .top-bar a {
        color: #fff;
    }

.social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.10);
    color: #fff;
    border-radius: 50%;
    margin-left: 8px;
}

    .social-icons a:hover {
        background: var(--secondary);
        transform: translateY(-3px);
    }

/*=====================================
            HEADER
======================================*/

#header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
}

.navbar {
    padding: 14px 0;
}

.navbar-brand img {
    height: 70px;
    transition: .3s;
}

    .navbar-brand img:hover {
        transform: scale(1.05);
    }

.navbar-nav .nav-item {
    margin-left: 15px;
}

.navbar-nav .nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 10px 5px;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        background: var(--secondary);
        left: 0;
        bottom: -4px;
        transition: .35s;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

/*=====================================
          DROPDOWN
======================================*/

.dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: var(--primary);
        color: #fff;
    }

/*=====================================
          BUTTONS
======================================*/

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 13px 35px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: var(--dark);
    }

.btn-outline-primary {
    border-radius: 50px;
    padding: 13px 35px;
}

/*=====================================
          SECTION TITLE
======================================*/

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .section-heading h2 {
        color: var(--dark);
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-heading p {
        color: #777;
        font-size: 17px;
    }

/*=====================================
          FOOTER
======================================*/

footer {
    background: linear-gradient(135deg,#0b2e59,#0057B8);
    color: #fff;
    padding-top: 80px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

footer h5 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 12px;
}

    footer ul li a {
        color: rgba(255,255,255,.85);
    }

        footer ul li a:hover {
            color: #fff;
            padding-left: 6px;
        }

footer p {
    color: rgba(255,255,255,.85);
}

footer hr {
    margin: 50px 0 20px;
    border-color: rgba(255,255,255,.15);
}

.copyright {
    text-align: center;
    padding-bottom: 25px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
}

/*=====================================
          WHATSAPP
======================================*/

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp:hover {
    color: #fff;
    transform: scale(1.08);
}

/*=====================================
          SCROLL TOP
======================================*/

.scroll-top {
    position: fixed;
    left: 20px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 999;
}

/*=====================================
          COMMON CARDS
======================================*/

.card-style {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 35px;
    transition: .35s;
}

    .card-style:hover {
        transform: translateY(-8px);
    }

/*=====================================
        PAGE BANNER
======================================*/

.page-banner {
    background: linear-gradient(rgba(0,87,184,.75), rgba(0,174,239,.75)), url('../images/banner.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

    .page-banner h1 {
        font-size: 52px;
        font-weight: 700;
    }

    .page-banner p {
        font-size: 18px;
    }

/*=====================================
      CUSTOM SCROLLBAR
======================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}
/* Sticky Header */
#header.sticky {
    background: rgba(255,255,255,.98);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Fade Animation */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Button Pulse */
.btn-primary.pulse {
    animation: pulseBtn .8s ease;
}

@keyframes pulseBtn {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Hide Scroll Top Initially */
.scroll-top {
    display: none;
}
/*==============================
 HERO
==============================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/hero/hero-bg.jpg') center center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(4,31,79,.82), rgba(4,31,79,.45), rgba(255,255,255,.05));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 75px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

    .hero h1 span {
        color: #5ecbff;
    }

.hero p {
    font-size: 20px;
    max-width: 550px;
    margin-bottom: 40px;
    color: #eef7ff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-order {
    background: #00a8ff;
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    transition: .4s;
}

    .btn-order:hover {
        background: #0057b8;
        color: #fff;
        transform: translateY(-5px);
    }

.btn-dealer {
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    transition: .4s;
}

    .btn-dealer:hover {
        background: #fff;
        color: #0057b8;
    }

.hero-image {
    position: relative;
}

.hero-bottles {
    width: 100%;
    max-width: 700px;
    animation: floating 5s ease-in-out infinite;
    filter: drop-shadow(0 35px 50px rgba(0,0,0,.35));
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.wave-bottom {
    position: absolute;
    bottom: -2px;
    width: 100%;
    left: 0;
}

.bubble {
    position: absolute;
    opacity: .35;
    animation: bubble 18s linear infinite;
}

.b1 {
    width: 90px;
    left: 6%;
    bottom: 5%;
}

.b2 {
    width: 60px;
    left: 25%;
    bottom: 15%;
    animation-delay: 2s;
}

.b3 {
    width: 120px;
    right: 20%;
    bottom: 8%;
}

.b4 {
    width: 50px;
    right: 8%;
    bottom: 18%;
    animation-delay: 5s;
}

.b5 {
    width: 70px;
    left: 55%;
    bottom: 2%;
    animation-delay: 7s;
}

@keyframes bubble {

    from {
        transform: translateY(0) scale(.8);
    }

    to {
        transform: translateY(-900px) scale(1.2);
    }
}
/*==============================
        ABOUT SECTION
==============================*/

.about-section {
    padding: 120px 0;
    background: #f8fcff;
    position: relative;
}

.about-image {
    position: relative;
}

.main-image {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.experience-box {
    position: absolute;
    left: -20px;
    bottom: 50px;
    background: #0057B8;
    color: #fff;
    padding: 25px;
    width: 180px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,87,184,.30);
}

    .experience-box h2 {
        font-size: 46px;
        font-weight: 700;
        margin-bottom: 5px;
    }

.quality-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

    .quality-badge i {
        width: 55px;
        height: 55px;
        background: #e9f7ff;
        color: #00AEEF;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
    }

.section-tag {
    display: inline-block;
    background: #dff4ff;
    color: #0057B8;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0B2E59;
}

    .about-content h2 span {
        color: #00AEEF;
    }

.about-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 35px 0;
}

.feature-item {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .feature-item:hover {
        transform: translateY(-8px);
    }

    .feature-item i {
        color: #00AEEF;
        margin-right: 10px;
    }

.btn-about {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    background: #0057B8;
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

    .btn-about:hover {
        background: #00AEEF;
        color: #fff;
    }
/*==========================================
        WHY CHOOSE SECTION
===========================================*/

.why-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg,#ffffff,#eef9ff);
    overflow: hidden;
}

.section-header {
    max-width: 760px;
    margin: auto;
}

    .section-header h2 {
        font-size: 52px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .section-header h2 span {
            color: #00AEEF;
        }

    .section-header p {
        color: #6f7d8d;
        font-size: 18px;
    }

.why-card {
    position: relative;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: .45s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

    .why-card::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
        transition: .7s;
    }

    .why-card:hover::before {
        left: 100%;
    }

    .why-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0,87,184,.18);
    }

.icon-box {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#00AEEF,#0057B8);
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .4s;
}

.why-card:hover .icon-box {
    transform: rotateY(360deg);
}

.why-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #083B7A;
    margin-bottom: 18px;
}

.why-card p {
    color: #666;
    font-size: 16px;
    line-height: 28px;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: #d8f3ff;
    border-radius: 50%;
    left: -120px;
    top: -120px;
    opacity: .45;
}

.why-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #d9f9ff;
    border-radius: 50%;
    right: -100px;
    bottom: -100px;
    opacity: .45;
}
/*==================================
        PRODUCTS
===================================*/

.products-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.product-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .45s;
    position: relative;
    height: 100%;
}

    .product-box:hover {
        transform: translateY(-15px);
        box-shadow: 0 35px 70px rgba(0,87,184,.15);
    }

.product-image {
    position: relative;
    background: linear-gradient(180deg,#eefaff,#d9f3ff);
    padding: 50px;
    text-align: center;
}

    .product-image img {
        height: 260px;
        transition: .5s;
    }

.product-box:hover img {
    transform: scale(1.08) rotate(-2deg);
}

.capacity {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #0057B8;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.product-content {
    padding: 30px;
    text-align: center;
}

    .product-content h4 {
        font-size: 24px;
        color: #083B7A;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .product-content p {
        color: #666;
        margin-bottom: 25px;
    }

.product-btn {
    display: inline-block;
    background: #00AEEF;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .product-btn:hover {
        background: #0057B8;
        color: #fff;
    }

.products-section::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 350px;
    height: 350px;
    background: #EAF8FF;
    border-radius: 50%;
}

.products-section::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -80px;
    width: 250px;
    height: 250px;
    background: #D7F5FF;
    border-radius: 50%;
}

/*==================================
        PROCESS SECTION
===================================*/

.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg,#eef9ff,#ffffff);
    position: relative;
}

.process-timeline {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 35px;
    position: relative;
}

    .process-timeline::before {
        content: "";
        position: absolute;
        top: 48px;
        left: 5%;
        right: 5%;
        height: 5px;
        background: linear-gradient(to right,#00AEEF,#0057B8);
        z-index: 0;
        border-radius: 20px;
    }

.process-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #dff5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #0057B8;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: .45s;
}

.process-item:hover .process-icon {
    transform: translateY(-10px) rotate(360deg);
    background: #0057B8;
    color: #fff;
}

.process-item h5 {
    margin-top: 22px;
    color: #083B7A;
    font-size: 21px;
    font-weight: 700;
}

.process-item p {
    color: #666;
    font-size: 15px;
    line-height: 25px;
    margin-top: 10px;
}

.process-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #d9f5ff;
    border-radius: 50%;
    left: -150px;
    top: 120px;
    opacity: .45;
}

.process-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: #e7fbff;
    border-radius: 50%;
    right: -90px;
    bottom: 40px;
    opacity: .5;
}
/*==================================
        PAGE HERO
===================================*/

.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/backgrounds/banner.jpg') center center/cover;
    overflow: hidden;
}

    .page-hero .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(4,31,79,.75), rgba(4,31,79,.65));
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-small {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: .9;
}

.breadcrumb-box {
    margin-top: 25px;
    font-size: 18px;
}

    .breadcrumb-box a {
        color: #fff;
    }

    .breadcrumb-box span {
        margin: 0 10px;
    }

/*==================================
    COMPANY
===================================*/

.company-overview {
    padding: 120px 0;
    background: #fff;
}

.company-image {
    position: relative;
}

.main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.exp-box {
    position: absolute;
    left: -30px;
    bottom: 50px;
    width: 180px;
    padding: 25px;
    background: #0057B8;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,87,184,.30);
}

    .exp-box h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 5px;
    }

.quality-card {
    position: absolute;
    right: -25px;
    top: 40px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

    .quality-card i {
        width: 60px;
        height: 60px;
        background: #0057B8;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 25px;
    }

.company-content {
    padding-left: 40px;
}

    .company-content h2 {
        font-size: 48px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .company-content h2 span {
            color: #00AEEF;
        }

    .company-content p {
        font-size: 17px;
        color: #666;
        line-height: 30px;
        margin-bottom: 20px;
    }

.company-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}

    .company-features div {
        padding: 18px;
        background: #F5FBFF;
        border-radius: 15px;
        font-weight: 600;
        transition: .35s;
    }

        .company-features div:hover {
            background: #0057B8;
            color: #fff;
            transform: translateY(-5px);
        }

    .company-features i {
        color: #00AEEF;
        margin-right: 8px;
    }

    .company-features div:hover i {
        color: #fff;
    }

/*==========================================
        VISION SECTION
==========================================*/

.vision-section {
    padding: 120px 0;
    background: #F7FCFF;
}

.vision-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .vision-card:hover {
        transform: translateY(-12px);
    }

.vision-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00AEEF,#0057B8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 34px;
}

.vision-card h3 {
    color: #083B7A;
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-card p {
    color: #666;
    line-height: 30px;
}

/*==========================================
        WHY CHOOSE
==========================================*/

.about-why {
    padding: 120px 0;
    background: #fff;
}

.why-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .why-box:hover {
        background: #0057B8;
        color: #fff;
        transform: translateY(-10px);
    }

    .why-box i {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #E9F7FF;
        color: #0057B8;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        margin: auto;
        margin-bottom: 25px;
        transition: .3s;
    }

    .why-box:hover i {
        background: #fff;
    }

    .why-box h4 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .why-box p {
        line-height: 28px;
    }
/*====================================
        FACILITY
=====================================*/

.facility-section {
    padding: 120px 0;
    background: #ffffff;
}

.facility-image {
    position: relative;
}

    .facility-image img {
        border-radius: 30px;
    }

.facility-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .facility-badge i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0057B8;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
    }

.facility-content {
    padding-left: 40px;
}

    .facility-content h3 {
        font-size: 42px;
        font-weight: 700;
        color: #083B7A;
        margin-bottom: 25px;
    }

    .facility-content p {
        color: #666;
        line-height: 30px;
    }

.facility-list {
    margin-top: 30px;
}

    .facility-list div {
        margin-bottom: 18px;
        padding: 18px 20px;
        background: #F7FBFF;
        border-radius: 15px;
        font-weight: 600;
        transition: .3s;
    }

        .facility-list div:hover {
            background: #0057B8;
            color: #fff;
        }

    .facility-list i {
        color: #00AEEF;
        margin-right: 12px;
    }

    .facility-list div:hover i {
        color: #fff;
    }

/*====================================
        QUALITY PROCESS
=====================================*/

.quality-process {
    padding: 120px 0;
    background: #F5FBFF;
}

.process-card {
    background: #fff;
    border-radius: 25px;
    text-align: center;
    padding: 45px 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .process-card:hover {
        transform: translateY(-10px);
    }

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0057B8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.process-card i {
    font-size: 45px;
    color: #00AEEF;
    margin-bottom: 20px;
}

.process-card h5 {
    font-size: 22px;
    color: #083B7A;
    font-weight: 700;
}
/*=========================================
        PRODUCT HERO
=========================================*/

.product-banner {
    position: relative;
    padding: 130px 0;
    background: url('../images/hero/hero-bg.jpg') center center/cover;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,33,73,.92), rgba(2,33,73,.55));
}

.product-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    color: #fff;
}

    .banner-content span {
        display: inline-block;
        padding: 12px 24px;
        background: rgba(255,255,255,.12);
        border-radius: 40px;
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .banner-content h1 {
        font-size: 68px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .banner-content p {
        font-size: 20px;
        margin-bottom: 35px;
        max-width: 580px;
    }

.banner-bottles {
    max-height: 550px;
    animation: floating 5s ease infinite;
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb-section {
    background: #0057B8;
    padding: 16px 0;
}

    .breadcrumb-section ul {
        display: flex;
        gap: 12px;
        color: #fff;
        align-items: center;
    }

    .breadcrumb-section a {
        color: #fff;
    }

/*=========================================
        INTRO
=========================================*/

.product-intro {
    padding: 110px 0;
    background: #fff;
}

.category-card {
    padding: 40px 25px;
    text-align: center;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-10px);
        background: #0057B8;
        color: #fff;
    }

    .category-card i {
        font-size: 45px;
        color: #00AEEF;
        margin-bottom: 20px;
    }

    .category-card:hover i {
        color: #fff;
    }

    .category-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }
/*==================================
    PRODUCT SHOWCASE
==================================*/

.products-showcase {
    padding: 120px 0;
    background: #F7FBFF;
}

.product-item {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .4s;
    position: relative;
    height: 100%;
}

    .product-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 70px rgba(0,87,184,.18);
    }

.product-img {
    background: linear-gradient(180deg,#eefaff,#d7f2ff);
    padding: 40px;
    text-align: center;
}

    .product-img img {
        height: 240px;
        transition: .4s;
    }

.product-item:hover img {
    transform: scale(1.08);
}

.badge-size {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #0057B8;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.best-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ff9800;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.product-body {
    padding: 30px;
}

    .product-body h3 {
        color: #083B7A;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .product-body p {
        color: #666;
    }

    .product-body ul {
        padding-left: 0;
        list-style: none;
        margin: 20px 0;
    }

        .product-body ul li {
            margin-bottom: 10px;
            color: #555;
        }

.btn-order {
    display: inline-block;
    background: #0057B8;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

    .btn-order:hover {
        background: #00AEEF;
        color: #fff;
    }
/*==================================
      QUALITY OVERVIEW
===================================*/

.quality-overview {
    padding: 120px 0;
    background: #fff;
}

.quality-image {
    position: relative;
}

    .quality-image img {
        border-radius: 30px;
    }

.quality-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

    .quality-badge i {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #0057B8;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
    }

    .quality-badge h4 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        color: #0057B8;
    }

.quality-content {
    padding-left: 40px;
}

    .quality-content h2 {
        font-size: 48px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .quality-content h2 span {
            color: #00AEEF;
        }

    .quality-content p {
        font-size: 17px;
        line-height: 30px;
        color: #666;
        margin-bottom: 30px;
    }

.quality-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .quality-list div {
        background: #F6FBFF;
        padding: 18px;
        border-radius: 15px;
        font-weight: 600;
        transition: .35s;
    }

        .quality-list div:hover {
            background: #0057B8;
            color: #fff;
            transform: translateY(-6px);
        }

    .quality-list i {
        color: #00AEEF;
        margin-right: 8px;
    }

    .quality-list div:hover i {
        color: #fff;
    }
/*=========================================
      PURIFICATION PROCESS
=========================================*/

.purification-section {
    padding: 120px 0;
    background: linear-gradient(180deg,#eef9ff,#ffffff);
    position: relative;
    overflow: hidden;
}

.process-wrapper {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    position: relative;
}

    .process-wrapper::before {
        content: "";
        position: absolute;
        left: 5%;
        right: 5%;
        top: 50px;
        height: 4px;
        background: linear-gradient(to right,#00AEEF,#0057B8);
        border-radius: 20px;
        z-index: 0;
    }

.process-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

    .process-box .icon {
        width: 95px;
        height: 95px;
        background: #fff;
        border: 5px solid #d9f4ff;
        border-radius: 50%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 34px;
        color: #0057B8;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
        transition: .4s;
    }

    .process-box:hover .icon {
        background: #0057B8;
        color: #fff;
        transform: rotate(360deg);
    }

    .process-box h5 {
        margin-top: 22px;
        font-size: 21px;
        font-weight: 700;
        color: #083B7A;
    }

    .process-box p {
        font-size: 15px;
        line-height: 26px;
        color: #666;
        margin-top: 12px;
    }

.purification-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #dff6ff;
    border-radius: 50%;
    left: -150px;
    top: 100px;
    opacity: .5;
}

.purification-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #e8fbff;
    border-radius: 50%;
    right: -100px;
    bottom: 40px;
    opacity: .6;
}
/*=========================================
        LABORATORY
=========================================*/

.laboratory-section {
    padding: 120px 0;
    background: #fff;
}

.lab-image {
    position: relative;
}

    .lab-image img {
        border-radius: 30px;
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }

.lab-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .lab-badge i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0057B8;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
    }

.lab-content {
    padding-left: 40px;
}

    .lab-content h2 {
        font-size: 46px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .lab-content h2 span {
            color: #00AEEF;
        }

    .lab-content p {
        line-height: 30px;
        color: #666;
        margin-bottom: 30px;
    }

.quality-checks {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .quality-checks div {
        background: #F7FBFF;
        padding: 18px;
        border-radius: 15px;
        font-weight: 600;
        transition: .35s;
    }

        .quality-checks div:hover {
            background: #0057B8;
            color: #fff;
            transform: translateY(-5px);
        }

    .quality-checks i {
        color: #00AEEF;
        margin-right: 8px;
    }

    .quality-checks div:hover i {
        color: #fff;
    }

/* Quality Cards */

.qa-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .qa-card:hover {
        background: #0057B8;
        color: #fff;
        transform: translateY(-10px);
    }

    .qa-card i {
        font-size: 42px;
        color: #00AEEF;
        margin-bottom: 20px;
    }

    .qa-card:hover i {
        color: #fff;
    }

/* Standards */

.standards-section {
    padding: 120px 0;
    background: #F7FBFF;
}

.standard-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .standard-card:hover {
        background: #0057B8;
        color: #fff;
    }

    .standard-card i {
        font-size: 46px;
        color: #00AEEF;
        margin-bottom: 20px;
    }

    .standard-card:hover i {
        color: #fff;
    }
/*==================================
      DISTRIBUTOR INTRO
===================================*/

.dealer-intro {
    padding: 120px 0;
    background: #fff;
}

.dealer-image {
    position: relative;
}

    .dealer-image img {
        border-radius: 30px;
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }

.dealer-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #0057B8;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,87,184,.30);
}

    .dealer-badge h3 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
    }

.dealer-content {
    padding-left: 40px;
}

    .dealer-content h2 {
        font-size: 48px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .dealer-content h2 span {
            color: #00AEEF;
        }

    .dealer-content p {
        font-size: 17px;
        line-height: 30px;
        color: #666;
    }

.dealer-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .dealer-features div {
        background: #F6FBFF;
        padding: 18px;
        border-radius: 15px;
        font-weight: 600;
        transition: .35s;
    }

        .dealer-features div:hover {
            background: #0057B8;
            color: #fff;
            transform: translateY(-5px);
        }

    .dealer-features i {
        color: #00AEEF;
        margin-right: 8px;
    }

    .dealer-features div:hover i {
        color: #fff;
    }

/*==================================
      STATS
===================================*/

.dealer-stats {
    padding: 90px 0;
    background: linear-gradient(135deg,#0057B8,#00AEEF);
}

.stat-box {
    color: #fff;
}

    .stat-box h2 {
        font-size: 54px;
        font-weight: 800;
    }

    .stat-box p {
        font-size: 18px;
        margin: 0;
    }
/*====================================
    DISTRIBUTOR BENEFITS
====================================*/

.dealer-benefits {
    padding: 120px 0;
    background: #F6FBFF;
}

.benefit-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        background: #0057B8;
        color: #fff;
    }

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #EAF7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .benefit-icon i {
        font-size: 36px;
        color: #0057B8;
    }

.benefit-card:hover .benefit-icon {
    background: #fff;
}

.benefit-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/*====================================
        WHO CAN JOIN
====================================*/

.who-can-join {
    padding: 120px 0;
    background: #fff;
}

.join-content {
    padding-left: 40px;
}

    .join-content h2 {
        font-size: 46px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .join-content h2 span {
            color: #00AEEF;
        }

.join-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 30px;
}

    .join-list div {
        background: #F7FBFF;
        padding: 18px;
        border-radius: 15px;
        font-weight: 600;
        transition: .35s;
    }

        .join-list div:hover {
            background: #0057B8;
            color: #fff;
        }

    .join-list i {
        color: #00AEEF;
        margin-right: 8px;
    }

    .join-list div:hover i {
        color: #fff;
    }
/*==================================
      DEALER PROCESS
===================================*/

.dealer-process {
    padding: 120px 0;
    background: #F6FBFF;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    margin-top: 70px;
    position: relative;
}

    .process-timeline::before {
        content: "";
        position: absolute;
        top: 45px;
        left: 8%;
        right: 8%;
        height: 4px;
        background: #00AEEF;
        z-index: 0;
    }

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 5px solid #DDF4FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .timeline-icon i {
        font-size: 34px;
        color: #0057B8;
    }

.timeline-item:hover .timeline-icon {
    background: #0057B8;
    transform: scale(1.08);
}

.timeline-item:hover i {
    color: #fff;
}

.timeline-item h5 {
    margin-top: 25px;
    font-weight: 700;
    color: #083B7A;
}

.timeline-item p {
    color: #666;
    font-size: 15px;
}

/*==================================
    INVESTMENT
===================================*/

.investment-section {
    padding: 120px 0;
    background: #fff;
}

.investment-content {
    padding-right: 40px;
}

    .investment-content h2 {
        font-size: 46px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .investment-content h2 span {
            color: #00AEEF;
        }

.requirement-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .requirement-list div {
        background: #F7FBFF;
        padding: 18px;
        border-radius: 16px;
        font-weight: 600;
        transition: .35s;
    }

        .requirement-list div:hover {
            background: #0057B8;
            color: #fff;
        }

    .requirement-list i {
        color: #00AEEF;
        margin-right: 10px;
    }

    .requirement-list div:hover i {
        color: #fff;
    }

.investment-image img {
    border-radius: 30px;
}
/*=====================================
        REGISTRATION
======================================*/

.dealer-registration {
    padding: 120px 0;
    background: #F5FBFF;
}

.registration-box {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

    .registration-box .form-control,
    .registration-box .form-select {
        height: 60px;
        border-radius: 15px;
        border: 1px solid #dfe8f5;
        padding-left: 18px;
        font-size: 16px;
        box-shadow: none;
    }

    .registration-box textarea.form-control {
        height: auto;
        padding-top: 15px;
    }

    .registration-box .form-control:focus,
    .registration-box .form-select:focus {
        border-color: #0057B8;
        box-shadow: 0 0 0 .2rem rgba(0,87,184,.15);
    }

    .registration-box .btn {
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
    }
/*=====================================
      CONTACT INFO
======================================*/

.contact-info-section {
    padding: 120px 0;
    background: #fff;
}

.contact-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        background: #0057B8;
        color: #fff;
        transform: translateY(-10px);
    }

.contact-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #EAF7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .contact-icon i {
        font-size: 36px;
        color: #0057B8;
    }

.contact-card:hover .contact-icon {
    background: #fff;
}

.contact-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/*=====================================
      QUICK CONTACT
======================================*/

.quick-contact {
    padding: 90px 0;
    background: linear-gradient(135deg,#0057B8,#00AEEF);
    color: #fff;
}

    .quick-contact h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .quick-contact p {
        font-size: 18px;
        margin: 0;
    }
/*======================================
      CONTACT FORM
======================================*/

.contact-form-section {
    padding: 120px 0;
    background: #F7FBFF;
}

.contact-left {
    padding-right: 40px;
}

    .contact-left h2 {
        font-size: 48px;
        font-weight: 800;
        color: #083B7A;
        margin: 20px 0;
    }

        .contact-left h2 span {
            color: #00AEEF;
        }

    .contact-left p {
        color: #666;
        line-height: 30px;
    }

.contact-feature {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
}

    .contact-feature i {
        width: 65px;
        height: 65px;
        background: #0057B8;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        flex-shrink: 0;
    }

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .contact-form-box .form-control,
    .contact-form-box .form-select {
        height: 58px;
        border-radius: 14px;
        padding-left: 18px;
        border: 1px solid #dfe8f5;
        box-shadow: none;
    }

    .contact-form-box textarea.form-control {
        height: auto;
        padding-top: 15px;
        resize: none;
    }

    .contact-form-box .form-control:focus,
    .contact-form-box .form-select:focus {
        border-color: #0057B8;
        box-shadow: 0 0 0 .2rem rgba(0,87,184,.12);
    }

    .contact-form-box .btn {
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
    }
/*====================================
        GOOGLE MAP
====================================*/

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/*====================================
      WHY CONTACT
====================================*/

.why-contact {
    padding: 120px 0;
    background: #F7FBFF;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .why-card:hover {
        background: #0057B8;
        color: #fff;
        transform: translateY(-8px);
    }

    .why-card i {
        font-size: 46px;
        color: #00AEEF;
        margin-bottom: 20px;
    }

    .why-card:hover i {
        color: #fff;
    }

/*====================================
            FAQ
====================================*/

.faq-section {
    padding: 120px 0;
    background: #fff;
}

.contact-help {
    background: linear-gradient(135deg,#0057B8,#00AEEF);
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .contact-help h2 {
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .contact-help p {
        margin-bottom: 35px;
        font-size: 17px;
        line-height: 30px;
    }

    .contact-help .btn {
        border-radius: 50px;
        padding: 14px 35px;
        font-weight: 600;
    }

.accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

    .accordion-button:not(.collapsed) {
        background: #0057B8;
        color: #fff;
    }
/*==========================================
        FINAL CTA
==========================================*/

.contact-final {
    padding: 120px 0;
    background: linear-gradient(135deg,#003D91,#00AEEF);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .contact-final::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -120px;
        left: -120px;
    }

    .contact-final::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,.06);
        border-radius: 50%;
        right: -80px;
        bottom: -80px;
    }

    .contact-final .container {
        position: relative;
        z-index: 2;
    }

    .contact-final h2 {
        font-size: 48px;
        font-weight: 700;
        margin: 20px 0;
    }

    .contact-final p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 35px;
    }

.cta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .cta-list span {
        background: rgba(255,255,255,.15);
        padding: 12px 20px;
        border-radius: 40px;
        font-weight: 600;
    }

    .cta-list i {
        margin-right: 8px;
        color: #9fffd2;
    }

.cta-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    color: #083B7A;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

    .cta-box i {
        font-size: 55px;
        color: #0057B8;
        margin-bottom: 20px;
    }

    .cta-box h4 {
        font-size: 30px;
        font-weight: 700;
        margin: 20px 0;
    }

/*==========================================
        DELIVERY AREA
==========================================*/

.delivery-area {
    padding: 100px 0;
    background: #F7FBFF;
}

.area-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
}

    .area-card:hover {
        background: #0057B8;
        color: #fff;
        transform: translateY(-8px);
    }

    .area-card i {
        font-size: 40px;
        margin-bottom: 20px;
        color: #00AEEF;
    }

    .area-card:hover i {
        color: #fff;
    }