body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

/* =========================
   HERO
========================= */

.products-hero{
    min-height:70vh;

    /* PURE WHITE BACKGROUND */

    background:#fff;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;
}

/* REMOVE DARK OVERLAY */

.overlay{
    display:none;
}

/* ROYAL BLUE GLOW */

.products-hero::before{
    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(65,105,225,0.08);

    filter:blur(60px);
}

/* YELLOW GLOW */

.products-hero::after{
    content:'';

    position:absolute;

    bottom:-180px;
    left:-180px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(244,180,0,0.08);

    filter:blur(60px);
}

/* HERO CONTENT */

.products-hero-content{
    position:relative;
    z-index:2;
}

/* HERO TITLE */

.products-hero-content h1{
    font-size:65px;
    font-weight:800;

    color:rgba(0,0,128,1 );

    text-shadow:
    0 8px 20px rgba(65,105,225,0.08);
}

/* HERO DESCRIPTION */

.products-hero-content p{
    font-size:20px;
    margin-top:15px;

    color:rgba(207, 181, 59, 1);
}

/* =========================
   COMMON
========================= */

.section-padding{
    padding:100px 0;
}

.section-subtitle{
    color:rgba(207, 181, 59, 1);
    font-weight:bold;
    letter-spacing:2px;
}

.section-title{
    font-size:42px;
    font-weight:bold;

    color:rgba(0,0,128,1 );

    margin-top:15px;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
    background:#fff;
}

/* PRODUCT CARD */

.product-card{
    background:rgba(0,0,128,1 );

    border-radius:18px;

    overflow:hidden;

    transition:0.5s ease;

    height:100%;

    border:1px solid rgba(65,105,225,0.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

/* PRODUCT HOVER */

.product-card:hover{

    transform:
    translateY(-12px)
    scale(1.03);

    box-shadow:
    0 20px 45px rgba(0,0,128,1 );

}

/* PRODUCT IMAGE */

.product-img{
    width:100%;
    height:250px;
    object-fit:cover;

    transition:0.5s ease;
}

/* IMAGE HOVER */

.product-card:hover .product-img{
    transform:scale(1.08);
}

/* PRODUCT CONTENT */

.product-content{
    padding:30px;
    text-align:center;
}

/* PRODUCT ICON */

.product-icon{
    width:80px;
    height:80px;

    background:rgba(207, 181, 59, 1);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 20px;

    transition:0.5s ease;

    box-shadow:
    0 10px 25px rgba(244,180,0,0.25);
}

/* ICON HOVER */

.product-card:hover .product-icon{

    transform:
    rotate(8deg)
    scale(1.08);

}

/* ICON */

.product-icon i{
    font-size:30px;

    color:rgba(0,0,128,1 );
}

/* PRODUCT TITLE */

.product-content h4{
    color:rgba(207, 181, 59, 1);
    font-weight:700;
    margin-bottom:15px;
}

/* PRODUCT DESCRIPTION */

.product-content p{
    color:rgba(207, 181, 59, 1);
    line-height:28px;
}

/* =========================
   WHY SECTION
========================= */

.why-section{
    background:#fff;
}

/* WHY CARD */

.why-card{
    background:rgba(0,0,128,1 );

    color:rgba(207, 181, 59, 1);

    padding:45px 20px;

    border-radius:18px;

    text-align:center;

    transition:0.5s ease;

    border:1px solid rgba(65,105,225,0.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

/* WHY CARD HOVER */

.why-card:hover{

    background:rgba(207, 181, 59, 1);

    color:#000;

    transform:
    translateY(-12px)
    scale(1.03);

    box-shadow:
    0 20px 45px rgba(207, 181, 59, 1);

}

/* WHY ICON */

.why-card i{
    font-size:45px;
    margin-bottom:20px;

    transition:0.5s ease;
}

/* ICON HOVER */

.why-card:hover i{

    transform:
    scale(1.15)
    rotate(8deg);

}

/* =========================
   SCROLL DOWN
========================= */

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.scroll-down a{

    color:rgba(0,0,128,1 );

    font-size:30px;

    animation:scrollDown 2s infinite;
}

/* =========================
   ANIMATION
========================= */

@keyframes scrollDown{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .products-hero-content h1{
        font-size:50px;
    }

    .section-title{
        font-size:36px;
    }

}

@media(max-width:768px){

    .products-hero{
        min-height:60vh;
    }

    .products-hero-content h1{
        font-size:40px;
    }

    .products-hero-content p{
        font-size:17px;
    }

    .section-padding{
        padding:80px 0;
    }

    .product-img{
        height:220px;
    }

}