﻿/*==================================================
        ARTICLE HERO
==================================================*/

.article-hero {
    position: relative;
    padding: 90px 0 120px;
    background: linear-gradient(180deg,#F8FBFE 0%,#FFFFFF 100%);
    overflow: hidden;
}

    /* Decorative Background */

    .article-hero::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(15,76,129,.05);
    }

    .article-hero::after {
        content: "";
        position: absolute;
        left: -150px;
        bottom: -150px;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(15,76,129,.03);
    }

/*=========================================
        ROW
==========================================*/

.article-row {
    display: flex;
    align-items: center;
}

@media(max-width:991px) {

    .article-row {
        display: block;
    }
}

/*=========================================
        CONTENT
==========================================*/

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 25px;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 40px;
    background: #EAF4FF;
    color: #0F4C81;
    font-weight: 700;
    margin-bottom: 30px;
}

    .hero-badge i {
        font-size: 16px;
    }

/* Title */

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.5;
    color: #17375E;
    margin-bottom: 28px;
}

/* Description */

.hero-description {
    font-size: 18px;
    line-height: 2.2;
    color: #666;
    margin-bottom: 40px;
}

/*=========================================
        META
==========================================*/

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .35s;
}

    .meta-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

    .meta-box i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0F4C81;
        color: #fff;
        font-size: 22px;
    }

    .meta-box strong {
        display: block;
        color: #17375E;
        margin-bottom: 5px;
    }

    .meta-box span {
        color: #666;
        font-size: 15px;
    }

/*=========================================
        BUTTON
==========================================*/

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 12px;
    background: #0F4C81;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    max-width: 270px;
}

    .hero-btn:hover {
        color: #fff;
        text-decoration: none;
        background: #17375E;
        transform: translateY(-4px);
    }

    .hero-btn i {
        animation: heroArrow 1.8s infinite;
    }

@keyframes heroArrow {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/*=========================================
        IMAGE
==========================================*/

.hero-image {
    position: relative;
    text-align: center;
}

    .hero-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 30px 70px rgba(0,0,0,.15);
        transition: .4s;
    }

    .hero-image:hover img {
        transform: scale(1.02);
    }

/*=========================================
    FLOATING CARD
==========================================*/

.hero-floating-card {
    position: absolute;
    left: -40px;
    bottom: 35px;
    width: 310px;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

    .hero-floating-card h3 {
        color: #17375E;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .hero-floating-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .hero-floating-card li {
        position: relative;
        padding-right: 28px;
        margin-bottom: 15px;
        color: #555;
        line-height: 1.9;
    }

        .hero-floating-card li::before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #0F4C81;
            font-weight: bold;
        }

/*=========================================
        RESPONSIVE
==========================================*/

@media(max-width:1200px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-floating-card {
        width: 280px;
        left: -10px;
    }
}

@media(max-width:992px) {

    .article-hero {
        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }

        .hero-content h1 {
            font-size: 38px;
        }

    .hero-description {
        font-size: 17px;
    }

    .hero-meta {
        grid-template-columns: 1fr 1fr;
    }

    .hero-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 30px auto 0;
        width: 100%;
        max-width: 450px;
    }
}

@media(max-width:768px) {

    .article-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 2;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .meta-box {
        padding: 18px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-floating-card {
        padding: 22px;
    }
}

@media(max-width:480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .meta-box {
        gap: 12px;
    }

        .meta-box i {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
}

/*=========================================
        TABLE OF CONTENTS
==========================================*/

.article-toc {
    padding: 70px 0;
    background: #fff;
}

.toc-card {
    background: #fff;
    border: 1px solid #E8EEF5;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    overflow: hidden;
    transition: .35s;
}

    .toc-card:hover {
        box-shadow: 0 25px 60px rgba(0,0,0,.08);
    }

/*=============================
        Header
==============================*/

.toc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px;
    border-bottom: 1px solid #EEF3F8;
}

.toc-icon {
    width: 70px;
    height: 70px;
    background: #0F4C81;
    color: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    flex-shrink: 0;
}

.toc-header h2 {
    margin: 0 0 10px;
    color: #17375E;
    font-size: 30px;
    font-weight: 700;
}

.toc-header p {
    margin: 0;
    color: #666;
    line-height: 2;
}

/*=============================
        Navigation
==============================*/

.toc-nav {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    padding: 35px;
}

    .toc-nav a {
        position: relative;
        display: flex;
        align-items: center;
        padding: 18px 22px;
        background: #F8FAFC;
        border-radius: 12px;
        color: #444;
        text-decoration: none;
        transition: .35s;
        border: 1px solid transparent;
        font-size: 16px;
    }

        .toc-nav a::before {
            content: "✓";
            color: #0F4C81;
            font-weight: bold;
            margin-left: 12px;
            font-size: 18px;
        }

        .toc-nav a:hover {
            background: #0F4C81;
            color: #fff;
            transform: translateY(-3px);
        }

            .toc-nav a:hover::before {
                color: #fff;
            }

        /* لینک فعال */

        .toc-nav a.active {
            background: #0F4C81;
            color: #fff;
        }

            .toc-nav a.active::before {
                color: #fff;
            }

/*=============================
        Footer
==============================*/

.toc-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    background: #F8FAFC;
    border-top: 1px solid #EEF3F8;
    color: #555;
    font-size: 15px;
}

    .toc-footer i {
        color: #0F4C81;
        font-size: 18px;
    }

/*=============================
        Responsive
==============================*/

@media(max-width:991px) {

    .toc-nav {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .article-toc {
        padding: 50px 0;
    }

    .toc-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

        .toc-header h2 {
            font-size: 24px;
        }

    .toc-nav {
        padding: 20px;
        gap: 12px;
    }

        .toc-nav a {
            padding: 16px 18px;
            font-size: 15px;
        }
}

@media(max-width:480px) {

    .toc-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .toc-header h2 {
        font-size: 22px;
    }
}

/*====================================================
    ARTICLE SECTION
====================================================*/

.article-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
}

    .article-section:nth-child(even) {
        background: #F8FAFC;
    }

/*====================================================
    IMAGE
====================================================*/

.article-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

    .article-image img {
        width: 100%;
        height: 900px;
        display: block;
        border-radius: 22px;
        transition: .45s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .article-image:hover img {
        transform: scale(1.04);
    }

/*====================================================
    CONTENT
====================================================*/

.article-content {
    padding-right: 40px;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(15,76,129,.08);
    color: #0F4C81;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.article-content h2 {
    color: #17375E;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 30px;
}

.article-content p {
    font-size: 17px;
    color: #555;
    line-height: 2.3;
    margin-bottom: 22px;
    text-align: justify;
}

.article-content strong {
    color: #17375E;
    font-weight: 700;
}

/*====================================================
    HIGHLIGHT BOX
====================================================*/

.article-highlight {
    margin-top: 70px;
}

.highlight-item {
    background: #fff;
    padding: 35px 28px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #E8EEF5;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}

    .highlight-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

    .highlight-item i {
        width: 75px;
        height: 75px;
        line-height: 75px;
        border-radius: 50%;
        background: #0F4C81;
        color: #fff;
        font-size: 30px;
        margin-bottom: 25px;
    }

    .highlight-item h3 {
        color: #17375E;
        font-size: 23px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .highlight-item p {
        color: #666;
        font-size: 16px;
        line-height: 2;
        margin: 0;
    }

/*====================================================
    RESPONSIVE
====================================================*/

@media (max-width:1200px) {

    .article-content {
        padding-right: 20px;
    }
}

@media (max-width:991px) {

    .article-section {
        padding: 80px 0;
    }

    .article-image {
        margin-bottom: 45px;
    }

    .article-content {
        padding: 0;
    }

        .article-content h2 {
            font-size: 34px;
        }

    .article-highlight {
        margin-top: 50px;
    }

    .highlight-item {
        margin-bottom: 25px;
    }
}

@media (max-width:768px) {

    .article-section {
        padding: 65px 0;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .article-content p {
        font-size: 16px;
        line-height: 2.2;
    }

    .highlight-item {
        padding: 28px 20px;
    }

        .highlight-item i {
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 26px;
        }

        .highlight-item h3 {
            font-size: 20px;
        }
}

@media (max-width:480px) {

    .article-content h2 {
        font-size: 24px;
    }

    .article-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .article-content p {
        text-align: right;
    }
}

/*==================================================
        PACKING TYPES
==================================================*/

.packing-types-section {
    padding: 120px 0;
    background: #F8FAFC;
}

    /*=========================
        Section Title
=========================*/

    .packing-types-section .section-title {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 70px;
    }

    .packing-types-section .section-subtitle {
        display: inline-block;
        padding: 10px 22px;
        background: rgba(15,76,129,.08);
        color: #0F4C81;
        border-radius: 40px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .packing-types-section h2 {
        color: #17375E;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .packing-types-section .section-title p {
        color: #666;
        line-height: 2.2;
        font-size: 17px;
    }

/*=========================
        Cards
=========================*/

.packing-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #E8EEF5;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: all .35s ease;
    height: 100%;
}

    .packing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 22px 50px rgba(0,0,0,.10);
    }

    /*=========================
        Image
=========================*/

    .packing-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .4s;
    }

    .packing-card:hover img {
        transform: scale(1.06);
    }

/*=========================
        Body
=========================*/

.packing-card-body {
    padding: 28px;
}

    .packing-card-body h3 {
        color: #17375E;
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .packing-card-body p {
        color: #666;
        line-height: 2;
        font-size: 16px;
        margin-bottom: 22px;
        min-height: 64px;
    }

    /*=========================
        Button
=========================*/

    .packing-card-body a {
        display: inline-flex;
        align-items: center;
        color: #0F4C81;
        font-weight: 700;
        text-decoration: none;
        transition: .3s;
    }

        .packing-card-body a::after {
            content: "\f104";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 10px;
            transition: .3s;
        }

        .packing-card-body a:hover {
            color: #17375E;
        }

            .packing-card-body a:hover::after {
                margin-right: 16px;
            }

/*=========================
        Hover Border
=========================*/

.packing-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #0F4C81;
    transition: .4s;
}

.packing-card {
    position: relative;
}

    .packing-card:hover::before {
        height: 100%;
    }

/*=========================
        Responsive
=========================*/

@media(max-width:1200px) {

    .packing-types-section h2 {
        font-size: 38px;
    }
}

@media(max-width:992px) {

    .packing-types-section {
        padding: 90px 0;
    }

        .packing-types-section h2 {
            font-size: 34px;
        }
}

@media(max-width:768px) {

    .packing-types-section {
        padding: 70px 0;
    }

        .packing-types-section .section-title {
            margin-bottom: 50px;
        }

        .packing-types-section h2 {
            font-size: 29px;
        }

    .packing-card img {
        height: 220px;
    }

    .packing-card-body {
        padding: 24px;
    }
}

@media(max-width:576px) {

    .packing-types-section h2 {
        font-size: 25px;
    }

    .packing-types-section .section-title p {
        font-size: 15px;
    }

    .packing-card img {
        height: 200px;
    }

    .packing-card-body h3 {
        font-size: 21px;
    }

    .packing-card-body p {
        font-size: 15px;
        min-height: auto;
    }
}

/*==================================================
            FILM FILL SECTION
==================================================*/

.packing-detail-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

    .packing-detail-section:nth-child(even) {
        background: #F8FAFC;
    }

/*=========================================
            IMAGE
=========================================*/

.packing-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .packing-image img {
        width: 100%;
        display: block;
        border-radius: 20px;
        transition: .45s;
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

    .packing-image:hover img {
        transform: scale(1.04);
    }

/*=========================================
            CONTENT
=========================================*/

.packing-content {
    padding-right: 40px;
}

.packing-badge {
    display: inline-block;
    background: rgba(15,76,129,.08);
    color: #0F4C81;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: .5px;
}

.packing-content h2 {
    font-size: 42px;
    color: #17375E;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 30px;
}

.packing-content p {
    color: #555;
    font-size: 17px;
    line-height: 2.3;
    text-align: justify;
    margin-bottom: 22px;
}

.packing-content strong {
    color: #17375E;
    font-weight: 700;
}

/*=========================================
            FEATURES
=========================================*/

.packing-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .packing-features .feature {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        border-radius: 12px;
        background: #F8FAFC;
        border: 1px solid #E8EEF5;
        transition: .35s;
        font-weight: 600;
        color: #444;
    }

        .packing-features .feature:hover {
            background: #0F4C81;
            color: #fff;
            transform: translateY(-5px);
        }

        .packing-features .feature i {
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 50%;
            background: #0F4C81;
            color: #fff;
            margin-left: 15px;
            transition: .35s;
        }

        .packing-features .feature:hover i {
            background: #fff;
            color: #0F4C81;
        }

/*=========================================
            INFO CARDS
=========================================*/

.packing-info-row {
    margin-top: 70px;
}

.packing-info-card {
    background: #fff;
    border: 1px solid #E8EEF5;
    border-radius: 18px;
    text-align: center;
    padding: 35px 25px;
    height: 100%;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

    .packing-info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.10);
    }

    .packing-info-card i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        background: #0F4C81;
        color: #fff;
        font-size: 30px;
        margin-bottom: 25px;
    }

    .packing-info-card h3 {
        color: #17375E;
        font-size: 23px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .packing-info-card p {
        color: #666;
        font-size: 16px;
        line-height: 2;
        margin: 0;
    }

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .packing-content {
        padding-right: 20px;
    }
}

@media(max-width:992px) {

    .packing-detail-section {
        padding: 90px 0;
    }

    .packing-image {
        margin-bottom: 45px;
    }

    .packing-content {
        padding-right: 0;
    }

        .packing-content h2 {
            font-size: 34px;
        }

    .packing-info-card {
        margin-bottom: 30px;
    }
}

@media(max-width:768px) {

    .packing-detail-section {
        padding: 70px 0;
    }

    .packing-content h2 {
        font-size: 28px;
    }

    .packing-content p {
        font-size: 16px;
    }

    .packing-features {
        grid-template-columns: 1fr;
    }

    .packing-info-row {
        margin-top: 45px;
    }
}

@media(max-width:576px) {

    .packing-content h2 {
        font-size: 24px;
    }

    .packing-badge {
        font-size: 13px;
    }

    .packing-info-card {
        padding: 28px 20px;
    }

        .packing-info-card i {
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 26px;
        }

        .packing-info-card h3 {
            font-size: 20px;
        }
}

/*=========================================
            splash-packing
=========================================*/

/*======================================
      Reverse Layout
=======================================*/

.packing-detail-reverse .row {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

@media(max-width:991px) {

    .packing-detail-reverse .row {
        display: block;
    }
}

/*==================================================
        COMPARISON SECTION
==================================================*/

.comparison-section {
    padding: 120px 0;
    background: #F8FAFC;
}

/*====================================
        TABLE
====================================*/

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

    .comparison-table thead {
        background: #17375E;
    }

        .comparison-table thead th {
            color: #fff;
            text-align: center;
            padding: 22px;
            font-size: 18px;
            font-weight: 700;
        }

    .comparison-table tbody tr {
        transition: .35s;
    }

        .comparison-table tbody tr:nth-child(even) {
            background: #F8FAFC;
        }

        .comparison-table tbody tr:hover {
            background: #EDF5FB;
        }

    .comparison-table td {
        padding: 20px;
        text-align: center;
        color: #555;
        border-bottom: 1px solid #EAEAEA;
        font-size: 16px;
        line-height: 1.8;
    }

        .comparison-table td:first-child {
            font-weight: 700;
            color: #17375E;
            background: #FAFCFE;
        }

/*====================================
        RESULT BOX
====================================*/

.comparison-result {
    margin-top: 60px;
}

.result-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg,#0F4C81,#17375E);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(23,55,94,.25);
}

    .result-box i {
        font-size: 42px;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .result-box h3 {
        margin-bottom: 15px;
        font-size: 28px;
        font-weight: 700;
    }

    .result-box p {
        margin: 0;
        line-height: 2.2;
        color: rgba(255,255,255,.95);
    }

    .result-box strong {
        color: #FFD54F;
    }

/*====================================
        Stars
====================================*/

.comparison-table td {
    font-family: inherit;
}

/*====================================
        Responsive
====================================*/

@media(max-width:992px) {

    .comparison-section {
        padding: 90px 0;
    }
}

@media(max-width:768px) {

    .comparison-section {
        padding: 70px 0;
    }

    .table-responsive {
        border: none;
    }

    .result-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

        .result-box i {
            margin: 0 auto 10px;
        }

        .result-box h3 {
            font-size: 24px;
        }
}

@media(max-width:576px) {

    .comparison-table th {
        font-size: 15px;
        padding: 16px;
    }

    .comparison-table td {
        font-size: 14px;
        padding: 16px;
    }
}

/*==================================================
                MATERIAL SECTION
==================================================*/

.material-section {
    padding: 120px 0;
    background: #fff;
}

/*==================================
            Material Card
==================================*/

.material-card {
    background: #fff;
    border: 1px solid #E8EEF5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    transition: .35s;
    height: 100%;
}

    .material-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,.10);
    }

/*==================================
            Header
==================================*/

.material-header {
    position: relative;
}

    .material-header img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: .4s;
    }

.material-card:hover img {
    transform: scale(1.05);
}

.material-header h3 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    background: rgba(15,76,129,.92);
    color: #fff;
    padding: 12px 28px;
    border-radius: 35px;
    font-size: 22px;
    font-weight: 700;
}

/*==================================
            Body
==================================*/

.material-card p {
    padding: 30px 30px 15px;
    color: #555;
    font-size: 16px;
    line-height: 2.2;
    text-align: justify;
}

/*==================================
            List
==================================*/

.material-card ul {
    list-style: none;
    padding: 0 30px 30px;
    margin: 0;
}

    .material-card ul li {
        position: relative;
        padding-right: 34px;
        margin-bottom: 18px;
        color: #444;
        line-height: 1.9;
        font-weight: 500;
    }

        .material-card ul li:last-child {
            margin-bottom: 0;
        }

        .material-card ul li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 2px;
            color: #0F4C81;
            font-size: 18px;
        }

/*==================================
            Bottom Note
==================================*/

.material-note {
    margin-top: 60px;
    background: linear-gradient(135deg,#17375E,#0F4C81);
    color: #fff;
    border-radius: 22px;
    padding: 35px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 20px 45px rgba(23,55,94,.20);
}

    .material-note i {
        font-size: 36px;
        color: #FFD54F;
        margin-top: 5px;
        flex-shrink: 0;
    }

    .material-note p {
        margin: 0;
        font-size: 17px;
        line-height: 2.2;
    }

    .material-note strong {
        color: #FFD54F;
    }

/*==================================
            Responsive
==================================*/

@media(max-width:991px) {

    .material-section {
        padding: 90px 0;
    }

    .material-card {
        margin-bottom: 30px;
    }
}

@media(max-width:768px) {

    .material-section {
        padding: 70px 0;
    }

    .material-header img {
        height: 220px;
    }

    .material-header h3 {
        font-size: 20px;
        padding: 10px 22px;
    }

    .material-card p {
        padding: 25px 22px 10px;
        font-size: 15px;
    }

    .material-card ul {
        padding: 0 22px 25px;
    }

    .material-note {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

        .material-note i {
            margin: 0 auto;
        }
}

@media(max-width:576px) {

    .material-header img {
        height: 200px;
    }

    .material-note p {
        font-size: 15px;
    }
}

/*==================================================
        SELECTION SECTION
==================================================*/

.selection-section {
    padding: 120px 0;
    background: #F8FAFC;
}

/*==========================
        Cards
===========================*/

.selection-card {
    position: relative;
    background: #fff;
    border: 1px solid #E7EDF5;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .selection-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(0,0,0,.10);
    }

/*==========================
        Number
===========================*/

.selection-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(15,76,129,.08);
    line-height: 1;
    user-select: none;
}

/*==========================
        Icon
===========================*/

.selection-card i {
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    background: #0F4C81;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .35s;
}

.selection-card:hover i {
    background: #17375E;
    transform: rotateY(180deg);
}

/*==========================
        Title
===========================*/

.selection-card h3 {
    color: #17375E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

/*==========================
        Paragraph
===========================*/

.selection-card p {
    color: #666;
    line-height: 2;
    font-size: 16px;
    margin: 0;
}

/*==========================
        Result
===========================*/

.selection-result {
    margin-top: 70px;
    background: #17375E;
    color: #fff;
    border-radius: 22px;
    padding: 45px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 20px 45px rgba(23,55,94,.22);
}

    .selection-result i {
        width: 75px;
        height: 75px;
        line-height: 75px;
        border-radius: 50%;
        background: #fff;
        color: #0F4C81;
        text-align: center;
        font-size: 34px;
        flex-shrink: 0;
    }

    .selection-result h3 {
        font-size: 30px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .selection-result p {
        color: rgba(255,255,255,.95);
        line-height: 2.2;
        font-size: 17px;
        margin: 0;
    }

/*==========================
        Responsive
===========================*/

@media(max-width:1200px) {

    .selection-card {
        padding: 35px 25px;
    }
}

@media(max-width:992px) {

    .selection-section {
        padding: 90px 0;
    }

    .selection-card {
        margin-bottom: 30px;
    }
}

@media(max-width:768px) {

    .selection-section {
        padding: 70px 0;
    }

    .selection-card {
        padding: 30px 22px;
    }

        .selection-card i {
            width: 70px;
            height: 70px;
            line-height: 70px;
            font-size: 28px;
        }

        .selection-card h3 {
            font-size: 22px;
        }

        .selection-card p {
            font-size: 15px;
        }

    .selection-number {
        font-size: 36px;
    }

    .selection-result {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

        .selection-result i {
            margin: 0 auto;
        }

        .selection-result h3 {
            font-size: 24px;
        }

        .selection-result p {
            font-size: 15px;
        }
}

@media(max-width:576px) {

    .selection-card {
        padding: 28px 20px;
    }

        .selection-card h3 {
            font-size: 20px;
        }

    .selection-number {
        font-size: 30px;
    }
}

/*==================================================
            INSTALLATION SECTION
==================================================*/

.installation-section {
    padding: 120px 0;
    background: #fff;
}

/*=====================================
            CARD
=====================================*/

.install-card {
    position: relative;
    background: #fff;
    border: 1px solid #E7EDF5;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    height: 100%;
}

    .install-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.10);
    }

/*=====================================
            NUMBER
=====================================*/

.step-number {
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(15,76,129,.08);
    line-height: 1;
    user-select: none;
}

/*=====================================
            ICON
=====================================*/

.install-card i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background: #0F4C81;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    transition: .35s;
}

.install-card:hover i {
    background: #17375E;
    transform: rotateY(180deg);
}

/*=====================================
            TITLE
=====================================*/

.install-card h3 {
    color: #17375E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

/*=====================================
            TEXT
=====================================*/

.install-card p {
    margin: 0;
    color: #666;
    line-height: 2.1;
    font-size: 16px;
    text-align: justify;
}

/*=====================================
            NOTE
=====================================*/

.installation-note {
    margin-top: 70px;
    background: #F8FAFC;
    border: 1px solid #E7EDF5;
    border-right: 6px solid #0F4C81;
    border-radius: 20px;
    padding: 40px;
}

    .installation-note h3 {
        color: #17375E;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .installation-note ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .installation-note li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        color: #555;
        line-height: 2;
        font-size: 16px;
    }

        .installation-note li:last-child {
            margin-bottom: 0;
        }

        .installation-note li i {
            color: #28A745;
            font-size: 20px;
            margin-left: 12px;
            margin-top: 6px;
            flex-shrink: 0;
        }

/*=====================================
        RESPONSIVE
=====================================*/

@media(max-width:992px) {

    .installation-section {
        padding: 90px 0;
    }
}

@media(max-width:768px) {

    .installation-section {
        padding: 70px 0;
    }

    .install-card {
        padding: 30px 25px;
    }

        .install-card h3 {
            font-size: 22px;
        }

        .install-card p {
            font-size: 15px;
        }

        .install-card i {
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 24px;
        }

    .step-number {
        font-size: 36px;
    }

    .installation-note {
        padding: 30px 25px;
    }

        .installation-note h3 {
            font-size: 24px;
        }
}

@media(max-width:576px) {

    .install-card {
        padding: 25px 20px;
    }

        .install-card h3 {
            font-size: 20px;
        }

    .step-number {
        font-size: 30px;
        left: 15px;
    }

    .installation-note {
        padding: 25px 20px;
    }

        .installation-note h3 {
            font-size: 22px;
        }

        .installation-note li {
            font-size: 15px;
        }
}

/*==================================================
                MAINTENANCE SECTION
==================================================*/

.maintenance-section {
    padding: 120px 0;
    background: #F8FAFC;
}

/*==================================
            Image
==================================*/

.maintenance-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .maintenance-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .maintenance-image:hover img {
        transform: scale(1.05);
    }

/*==================================
        Right Content
==================================*/

.maintenance-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/*==================================
        Item
==================================*/

.maintenance-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #E7EDF5;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: .35s;
}

    .maintenance-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 45px rgba(0,0,0,.10);
    }

    .maintenance-item i {
        width: 68px;
        height: 68px;
        line-height: 68px;
        text-align: center;
        border-radius: 50%;
        background: #0F4C81;
        color: #fff;
        font-size: 26px;
        flex-shrink: 0;
        transition: .35s;
    }

    .maintenance-item:hover i {
        background: #17375E;
        transform: rotateY(180deg);
    }

    /*==================================
        Text
==================================*/

    .maintenance-item h3 {
        color: #17375E;
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .maintenance-item p {
        margin: 0;
        color: #666;
        line-height: 2;
        font-size: 16px;
        text-align: justify;
    }

/*==================================
        Bottom Box
==================================*/

.maintenance-box {
    margin-top: 70px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg,#17375E,#0F4C81);
    color: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(23,55,94,.20);
}

    .maintenance-box i {
        width: 75px;
        height: 75px;
        line-height: 75px;
        text-align: center;
        background: #fff;
        color: #0F4C81;
        border-radius: 50%;
        font-size: 32px;
        flex-shrink: 0;
    }

    .maintenance-box h3 {
        margin-bottom: 15px;
        font-size: 28px;
        font-weight: 700;
    }

    .maintenance-box p {
        margin: 0;
        color: rgba(255,255,255,.95);
        line-height: 2.2;
        font-size: 17px;
    }

/*==================================
        Responsive
==================================*/

@media(max-width:992px) {

    .maintenance-section {
        padding: 90px 0;
    }

    .maintenance-image {
        margin-bottom: 35px;
    }
}

@media(max-width:768px) {

    .maintenance-section {
        padding: 70px 0;
    }

    .maintenance-item {
        padding: 24px;
        gap: 18px;
    }

        .maintenance-item i {
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 22px;
        }

        .maintenance-item h3 {
            font-size: 20px;
        }

        .maintenance-item p {
            font-size: 15px;
        }

    .maintenance-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

        .maintenance-box i {
            margin: 0 auto;
        }

        .maintenance-box h3 {
            font-size: 24px;
        }

        .maintenance-box p {
            font-size: 15px;
        }
}

@media(max-width:576px) {

    .maintenance-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .maintenance-item p {
            text-align: center;
        }

    .maintenance-box {
        padding: 25px 20px;
    }
}

/*==================================================
            COMMON MISTAKES SECTION
==================================================*/

.mistakes-section {
    padding: 120px 0;
    background: #fff;
}

/*==================================
            Card
==================================*/

.mistake-card {
    background: #fff;
    border: 1px solid #E7EDF5;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

    .mistake-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.10);
    }

    /*==================================
            Top Border
==================================*/

    .mistake-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#F59E0B,#EF4444);
    }

/*==================================
            Icon
==================================*/

.mistake-icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #FFF5E8;
    color: #F59E0B;
    font-size: 34px;
    transition: .35s;
}

.mistake-card:hover .mistake-icon {
    background: #F59E0B;
    color: #fff;
    transform: rotateY(180deg);
}

/*==================================
            Title
==================================*/

.mistake-card h3 {
    color: #17375E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

/*==================================
            Text
==================================*/

.mistake-card p {
    margin: 0;
    color: #666;
    line-height: 2;
    font-size: 16px;
    text-align: justify;
}

/*==================================
        Warning Box
==================================*/

.mistake-warning {
    margin-top: 70px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg,#F59E0B,#D97706);
    color: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(245,158,11,.25);
}

    .mistake-warning i {
        width: 75px;
        height: 75px;
        line-height: 75px;
        text-align: center;
        background: rgba(255,255,255,.18);
        border-radius: 50%;
        font-size: 34px;
        flex-shrink: 0;
    }

    .mistake-warning h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .mistake-warning p {
        margin: 0;
        line-height: 2.2;
        font-size: 17px;
    }

/*==================================
            Responsive
==================================*/

@media(max-width:992px) {

    .mistakes-section {
        padding: 90px 0;
    }
}

@media(max-width:768px) {

    .mistakes-section {
        padding: 70px 0;
    }

    .mistake-card {
        padding: 30px 22px;
    }

        .mistake-card h3 {
            font-size: 22px;
        }

        .mistake-card p {
            font-size: 15px;
        }

    .mistake-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
    }

    .mistake-warning {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

        .mistake-warning i {
            margin: 0 auto;
        }

        .mistake-warning h3 {
            font-size: 24px;
        }

        .mistake-warning p {
            font-size: 15px;
        }
}

@media(max-width:576px) {

    .mistake-card {
        padding: 25px 20px;
    }

        .mistake-card h3 {
            font-size: 20px;
        }

        .mistake-card p {
            text-align: center;
        }
}

/*==================================================
                    FAQ
==================================================*/

.faq-section {
    padding: 120px 0;
    background: #F8FAFC;
}

    /*==================================
            Accordion
==================================*/

    .faq-section .accordion {
        max-width: 1000px;
        margin: 60px auto 0;
    }

    .faq-section .accordion-item {
        border: none;
        margin-bottom: 20px;
        border-radius: 18px !important;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 15px 35px rgba(0,0,0,.05);
        transition: .35s;
    }

        .faq-section .accordion-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }

    /*==================================
            Header
==================================*/

    .faq-section .accordion-button {
        background: #fff;
        color: #17375E;
        font-size: 20px;
        font-weight: 700;
        padding: 28px 32px;
        box-shadow: none;
        border: none;
        transition: .35s;
    }

        .faq-section .accordion-button:not(.collapsed) {
            background: #17375E;
            color: #fff;
        }

        .faq-section .accordion-button:hover {
            background: #0F4C81;
            color: #fff;
        }

        /*==================================
            Icon
==================================*/

        .faq-section .accordion-button::after {
            margin-left: 0;
            margin-right: auto;
            transition: .35s;
            filter: brightness(0);
        }

        .faq-section .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
            transform: rotate(-180deg);
        }

    /*==================================
            Body
==================================*/

    .faq-section .accordion-body {
        padding: 28px 32px;
        font-size: 17px;
        color: #666;
        line-height: 2.2;
        text-align: justify;
        background: #fff;
    }

    /*==================================
            Active Border
==================================*/

    .faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
        border-right: 5px solid #0F4C81;
    }

/*==================================
            Responsive
==================================*/

@media(max-width:992px) {

    .faq-section {
        padding: 90px 0;
    }
}

@media(max-width:768px) {

    .faq-section {
        padding: 70px 0;
    }

        .faq-section .accordion-button {
            font-size: 17px;
            padding: 22px;
        }

        .faq-section .accordion-body {
            font-size: 15px;
            padding: 22px;
            text-align: right;
        }
}

@media(max-width:576px) {

    .faq-section .accordion-button {
        font-size: 16px;
        line-height: 1.8;
        padding: 20px;
    }

    .faq-section .accordion-body {
        padding: 20px;
    }
}

/*==================================================
                CTA SECTION
==================================================*/

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg,#17375E,#0F4C81);
    position: relative;
    overflow: hidden;
}

    /* Decorative Circles */

    .cta-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -120px;
        left: -120px;
    }

    .cta-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        bottom: -100px;
        right: -100px;
    }

/*==================================
            Box
==================================*/

.cta-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

/*==================================
            Subtitle
==================================*/

.cta-subtitle {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    background: rgba(255,255,255,.15);
    color: #FFD54F;
    font-weight: 600;
    margin-bottom: 25px;
}

/*==================================
            Title
==================================*/

.cta-box h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.6;
}

/*==================================
            Paragraph
==================================*/

.cta-box p {
    max-width: 760px;
    margin: 0 auto 45px;
    color: rgba(255,255,255,.92);
    line-height: 2.2;
    font-size: 18px;
}

/*==================================
            Features
==================================*/

.cta-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    max-width: 720px;
    margin: 0 auto 45px;
}

    .cta-features div {
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 14px;
        padding: 18px 20px;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: .35s;
    }

        .cta-features div:hover {
            background: rgba(255,255,255,.18);
            transform: translateY(-5px);
        }

    .cta-features i {
        color: #FFD54F;
        font-size: 18px;
    }

/*==================================
            Buttons
==================================*/

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    min-width: 230px;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-btn-primary {
    background: #FFD54F;
    color: #17375E;
}

    .cta-btn-primary:hover {
        background: #fff;
        color: #17375E;
        transform: translateY(-4px);
    }

.cta-btn-secondary {
    border: 2px solid rgba(255,255,255,.30);
    color: #fff;
}

    .cta-btn-secondary:hover {
        background: #fff;
        color: #17375E;
        border-color: #fff;
        transform: translateY(-4px);
    }

/*==================================
            Responsive
==================================*/

@media(max-width:992px) {

    .cta-section {
        padding: 90px 0;
    }

    .cta-box h2 {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .cta-section {
        padding: 70px 0;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }
}

@media(max-width:576px) {

    .cta-box h2 {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-box p {
        font-size: 15px;
    }
}
