/* =========================
   Product Banner
========================= */

.product-banner-section {

    position: relative;

    padding: 180px 0 0px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #071c2c 0%,
            #0d2d45 35%,
            #123d5a 70%,
            #0a2335 100%);
}

.product-banner-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(20, 137, 191, 0.12);

    filter: blur(90px);
}

.product-banner-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -100px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(46, 49, 146, 0.14);

    filter: blur(80px);
}

.product-banner-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 950px;

    margin: auto;
}

.product-banner-tag {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    margin-bottom: 28px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    animation: fadeUp 1s ease;
}

.product-banner-content h1 {

    font-size: 50px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 28px;

    color: #fff;

    animation: fadeUp 1.2s ease;
}

.product-banner-content p {

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.9;

    animation: fadeUp 1.4s ease;
}

/* =========================
   Product Details Section
========================= */

.product-details-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #eef6ff 100%);
}

/* =========================
   Product Card
========================= */

.product-details-card {

    position: relative;

    margin-bottom: 80px;

    padding: 55px;

    border-radius: 38px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.07);

    transition: 0.5s;

    animation: fadeCard 1s ease;
}

.product-details-card:hover {

    transform:
        translateY(-10px);
}

.product-details-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -60px;
    right: -60px;

    border-radius: 50%;

    background:
        rgba(20, 137, 191, 0.08);

    filter: blur(40px);
}

/* =========================
   Product Image
========================= */

.product-details-image {

    position: relative;

    overflow: hidden;

    border-radius: 30px;
}

.product-details-image img {

    width: 100%;

    height: 480px;

    object-fit: cover;

    transition: 0.6s;
}

.product-details-card:hover .product-details-image img {

    transform:
        scale(1.08);
}

/* =========================
   Product Content
========================= */

.product-details-content {

    position: relative;

    z-index: 2;
}

.product-details-label {

    display: inline-block;

    padding: 9px 22px;

    border-radius: 50px;

    margin-bottom: 24px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);
}

.product-details-content h2 {

    font-size: 30px;

    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 22px;

    color: #111;
}

.product-details-content p {

    color: #666;

    line-height: 1.9;

    font-size: 14px;

    margin-bottom: 0;
}

/* =========================
   Feature Grid
========================= */

.product-feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;
}

.product-feature-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(20, 137, 191, 0.08),
            rgba(46, 49, 146, 0.08));

    font-size: 15px;

    font-weight: 600;

    color: #222;

    transition: 0.4s;
}

.product-feature-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            #1489bf,
            #2e3192);

    opacity: 0;

    transition: 0.4s;
}

.product-feature-card:hover::before {

    opacity: 1;
}

.product-feature-card i,
.product-feature-card {

    position: relative;

    z-index: 2;
}

.product-feature-card i {

    font-size: 24px;

    color: #1489bf;

    transition: 0.4s;
}

.product-feature-card:hover {

    transform:
        translateY(-6px);

    color: #fff;
}

.product-feature-card:hover i {

    color: #fff;
}

.product-feature-card span {

    color: #000000;
}

/* =========================
   Animation
========================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(40px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes fadeCard {

    from {

        opacity: 0;

        transform:
            translateY(80px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

/* =========================
   Responsive
========================= */

@media(max-width:991px) {

    .product-banner-section {

        padding: 165px 0px 0px;
    }

    .product-banner-content h1 {

        font-size: 42px;
    }

    .product-details-card {

        padding: 35px;
    }

    .product-details-content h2 {

        font-size: 24px;
    }

    .product-details-image img {

        height: 340px;
    }

    .product-feature-grid {

        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .product-banner-section {

        padding: 165px 0 0px;
    }

    .product-banner-content h1 {

        font-size: 28px;
    }

    .product-banner-content p {

        font-size: 14px;
    }

    .product-details-section {

        padding: 70px 0;
    }

    .product-details-card {

        padding: 22px;

        border-radius: 24px;

        margin-bottom: 45px;
    }

    .product-details-content h2 {

        font-size: 24px;
    }

    .product-details-image img {

        height: 240px;
    }

    .product-feature-card {

        padding: 16px 18px;

        font-size: 14px;
    }

    .product-feature-card i {

        font-size: 20px;
    }
}