/* HERO */
.hero{
    height: 90vh;

    display: flex;
    align-items: center;

    padding: 60px;

    background:
    linear-gradient(rgba(7,21,45,0.6), rgba(7,21,45,0.6)),
    url("../../images/home.png");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero-content{
    max-width: 650px;
}

.tag{
    background: #2c6cff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.hero h1{
    font-size: 56px;
    margin: 20px 0;
}

.sub{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* =========================
   PREMIUM BUTTON BASE
========================= */
.btn {
    position: relative;
    display: inline-block;

    padding: 14px 28px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    overflow: hidden;
    z-index: 1;

    transition: all 0.3s ease;
}
/* =========================
   PRIMARY BUTTON (GRADIENT)
========================= */
.primary {
    background: linear-gradient(270deg, #075bf8, #973ce8, #2158ff);
    background-size: 400% 400%;
    color: #fff;

    box-shadow: 0 10px 25px rgba(77, 80, 255, 0.35);
}

/* ANIMATION */
.primary:hover {
    animation: gradientMove 3s ease infinite;
    transform: translateY(-3px) scale(1.02);

    box-shadow: 0 15px 40px rgba(77, 80, 255, 0.35);
}

/* KEYFRAMES */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* =========================
   SECONDARY BUTTON
========================= */
.secondary {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

/* HOVER */
.secondary:hover {
    background: rgba(255,255,255,0.15);

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* SHINE EFFECT */
.btn::before {
    content: "";
    position: absolute;

    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transform: skewX(-25deg);
}

/* ACTIVATE ON HOVER */
.btn:hover::before {
    left: 120%;
    transition: 0.7s;
}
.btn i {
    margin-left: 6px;
    transition: 0.3s;
}

.btn:hover i {
    transform: translateX(5px);
}

/* .btn{
    padding: 14px 26px;
    border-radius: 40px;
    text-decoration: none;
    margin-right: 10px;
}

.primary{
    background: #f4b400;
    color: black;
}

.secondary{
    background: #0b1f3a;
    color: white;
}

.btn:hover{
    transform: translateY(-3px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);
} */

/* FEATURES */
.features{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;

    margin-top: -60px;
    padding: 0 40px;
}
.feature-card{
    background: white;
    padding: 25px;
    border-radius: 18px;

    text-align: center;

    transition: all 0.35s ease;

    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ICON */
.feature-card i{
    font-size: 28px;
    color: #2c6cff;

    margin-bottom: 12px;

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.feature-card:hover{
    transform: translateY(-8px) scale(1.02);

    box-shadow:
    0 18px 40px rgba(44,108,255,0.15);
}

/* ICON ANIMATION */
.feature-card:hover i{
    transform: scale(1.2) rotate(5deg);
    color: #1746b5;
}

/* PRODUCTS */
.products{
    padding: 80px 40px;
    text-align: center;
}

/* TITLE */
.section-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b1f3a;
    position: relative;
}

.section-title::after{
    content: "";
    width: 60px;
    height: 4px;
    background: #2c6cff;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* GRID */
.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}

/* CARD */
.product-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    transition: 0.4s ease;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
}

/* IMAGE AREA */
.product-img{
    background: linear-gradient(135deg, #f4f7fb, #eef3ff);
    padding: 30px;
}

.product-img img{
    width: 120px;
    transition: 0.4s ease;
}

/* CONTENT */
.product-content{
    padding: 20px;
}

.product-content h4{
    font-size: 18px;
    margin-bottom: 8px;
    color: #0b1f3a;
}

.product-content p{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* READ MORE BUTTON */
.read-btn{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #2c6cff;

    position: relative;
    transition: 0.3s;
}

.read-btn::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #2c6cff;
    transition: 0.3s;
}

.read-btn:hover::after{
    width: 100%;
}

/* HOVER EFFECT */
.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE HOVER */
.product-card:hover img{
    transform: scale(1.1) rotate(-2deg);
}

/* WHY */
/* =========================================================
WHY CHOOSE NPCPL
========================================================= */

.why {
    position: relative;
    padding: 105px 40px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(44, 108, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244, 180, 0, 0.10),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f4f7fb 0%,
            #ffffff 50%,
            #f4f7fb 100%
        );
}

.why-container {
    width: min(1180px, 100%);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}


/* DECORATIVE BACKGROUND */

.why-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-circle-one {
    width: 300px;
    height: 300px;
    top: -170px;
    right: -100px;
    border: 55px solid rgba(44, 108, 255, 0.04);
}

.why-circle-two {
    width: 230px;
    height: 230px;
    left: -110px;
    bottom: -130px;
    border: 45px solid rgba(244, 180, 0, 0.07);
}


/* HEADING */

.why-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.why-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border: 1px solid rgba(44, 108, 255, 0.16);
    border-radius: 30px;
    background: rgba(44, 108, 255, 0.07);
    color: #245be7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.why-heading h2 {
    margin: 0 0 18px;
    color: #0b2f5b;
    font-size: clamp(34px, 4vw, 51px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.4px;
}

.why-heading p {
    max-width: 850px;
    margin: 0 auto;
    color: #617286;
    font-size: 16px;
    line-height: 1.8;
}


/* THREE PILLARS */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
}

.pillar {
    min-height: 320px;
    position: relative;
    padding: 34px 30px 30px;
    border: 1px solid #dce5ef;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    text-align: left;
    box-shadow: 0 15px 40px rgba(11, 47, 91, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.pillar::before {
    content: "";
    width: 130px;
    height: 130px;
    position: absolute;
    top: -65px;
    right: -65px;
    border-radius: 50%;
    background: rgba(44, 108, 255, 0.06);
    transition: 0.35s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(44, 108, 255, 0.38);
    box-shadow: 0 25px 55px rgba(11, 47, 91, 0.14);
}

.pillar:hover::before {
    width: 170px;
    height: 170px;
    background: rgba(244, 180, 0, 0.10);
}


/* CARD NUMBER */

.pillar-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #e5ebf3;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}


/* CARD ICON */

.pillar-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #0b2f5b, #245be7);
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 12px 28px rgba(36, 91, 231, 0.22);
    transition: 0.35s ease;
}

.pillar:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.08);
    background: linear-gradient(145deg, #d69f19, #f4b400);
}


/* CARD TEXT */

.pillar h4 {
    margin: 0 0 12px;
    color: #0b2f5b;
    font-size: 22px;
    font-weight: 800;
}

.pillar p {
    margin: 0;
    color: #68798c;
    font-size: 13px;
    line-height: 1.75;
}

.pillar-line {
    width: 42px;
    height: 3px;
    position: absolute;
    left: 30px;
    bottom: 26px;
    border-radius: 10px;
    background: #245be7;
    transition: width 0.35s ease;
}

.pillar:hover .pillar-line {
    width: calc(100% - 60px);
    background: linear-gradient(90deg, #245be7, #f4b400);
}


/* BOTTOM SUPPORT STRIP */

.why-bottom {
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid rgba(11, 47, 91, 0.12);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    background: #0b2f5b;
    box-shadow: 0 20px 50px rgba(11, 47, 91, 0.16);
}

.why-bottom-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-bottom-item:not(:last-child) {
    padding-right: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.why-bottom-item > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(244, 180, 0, 0.16);
    color: #f4b400;
    font-size: 17px;
}

.why-bottom-item div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.why-bottom-item strong {
    color: #ffffff;
    font-size: 13px;
}

.why-bottom-item small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
RESPONSIVE WHY SECTION
========================================================= */

@media (max-width: 900px) {

    .why {
        padding: 85px 30px;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 270px;
    }

    .why-bottom {
        grid-template-columns: 1fr;
    }

    .why-bottom-item:not(:last-child) {
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }
}


@media (max-width: 600px) {

    .why {
        padding: 70px 18px;
    }

    .why-heading {
        margin-bottom: 38px;
    }

    .why-heading h2 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .why-heading p {
        font-size: 14px;
    }

    .pillar {
        min-height: auto;
        padding: 28px 23px 55px;
    }

    .pillar-line {
        left: 23px;
        bottom: 24px;
    }

    .pillar:hover .pillar-line {
        width: calc(100% - 46px);
    }

    .why-bottom {
        padding: 23px 20px;
    }
}

/* RESPONSIVE */
@media(max-width: 992px){

    .features{
        grid-template-columns: repeat(2,1fr);
    }

    .product-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .hero h1{
        font-size: 38px;
    }
}