/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* =========================================================
   PRODUCT HERO
========================================================= */

.product-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 70px auto;
    padding: 20px;
}

/* Product Image */

.product-image {
    flex: 1;
    text-align: center;
    background: #fff;
}

.product-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* Product Information */

.product-info {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #01012c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-info h1 {
    font-size: 60px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 15px;
}

.subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 25px;
}

/* Features */

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info ul li {
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
}

/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #f0b400;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d99f00;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   APPLICATION AREAS
   IMPORTANT:
   HTML uses .grid and .card
========================================================= */

.application {
    padding: 90px 20px;
    background: #081d54;
}

.application h2 {
    text-align: center;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 50px;
}

/* Application Grid */

.grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Application Card */

.card {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 18px;
    background: #000;
}

/* Card Image */

.card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.08);
}


/* =========================================================
   CARD OVERLAY
========================================================= */

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 80px 25px 25px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0)
    );

    color: #fff;
}

.overlay h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 10px;
}

.overlay p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}


/* =========================================================
   SPECIFICATION TABLE
========================================================= */

table {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

table tr {
    border-bottom: 1px solid #ddd;
}

table tr:last-child {
    border-bottom: none;
}

table td {
    padding: 18px 20px;
    font-size: 17px;
    color: #333;
}

table td:first-child {
    width: 40%;
    font-weight: 600;
    color: #0c2d75;
    background: #f8f9fc;
}

table td:last-child {
    color: #555;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 90px 20px;
    text-align: center;
}

.cta h2 {
    color: #0c2d75;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.cta p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 35px;
    max-width: 700px;
}

.cta a {
    display: inline-block;
    background: #d8a21f;
    color: #000;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 5px;
}

.cta a:hover {
    background: #0c2d75;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* Product */

    .product-hero {
        gap: 35px;
        margin: 50px auto;
        padding: 20px;
    }

    .product-info h1 {
        font-size: 45px;
    }

    .subtitle {
        font-size: 19px;
    }

    .product-info ul li {
        font-size: 18px;
        margin: 12px 0;
    }

    .product-image img {
        max-width: 360px;
    }


    /* Application */

    .application {
        padding: 70px 20px;
    }

    .application h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .grid {
        gap: 25px;
    }

    .card {
        height: 300px;
    }

    .overlay h3 {
        font-size: 24px;
    }


    /* CTA */

    .cta {
        padding: 70px 20px;
    }

    .cta h2 {
        font-size: 36px;
    }


    /* Table */

    table {
        max-width: 90%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* Product */

    .product-hero {
        flex-direction: column;
        gap: 30px;
        margin: 35px auto;
        padding: 15px;
        text-align: center;
    }

    .product-image {
        width: 100%;
    }

    .product-info {
        width: 100%;
    }

    .product-image img {
        width: 90%;
        max-width: 350px;
    }

    .badge {
        padding: 8px 20px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .product-info h1 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .product-info ul {
        text-align: left;
        display: inline-block;
    }

    .product-info ul li {
        font-size: 17px;
        margin: 10px 0;
    }

    .product-info .btn {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        padding: 14px 25px;
        margin-top: 20px;
    }


    /* Application */

    .application {
        padding: 55px 15px;
    }

    .application h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .card {
        height: 300px;
        border-radius: 15px;
    }

    .overlay {
        padding: 70px 20px 20px;
    }

    .overlay h3 {
        font-size: 24px;
    }

    .overlay p {
        font-size: 15px;
    }


    /* Table */

    table {
        width: 95%;
        margin: 35px auto;
    }

    table td {
        padding: 14px 12px;
        font-size: 15px;
    }

    table td:first-child {
        width: 45%;
    }


    /* CTA */

    .cta {
        padding: 60px 15px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta a {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        padding: 15px 25px;
        margin: 6px auto;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* Product */

    .product-hero {
        gap: 20px;
        margin: 25px auto;
        padding: 10px;
    }

    .product-image img {
        width: 100%;
        max-width: 300px;
    }

    .badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .product-info h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .product-info ul li {
        font-size: 16px;
        margin: 8px 0;
    }

    .product-info .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
    }


    /* Application */

    .application {
        padding: 45px 12px;
    }

    .application h2 {
        font-size: 27px;
        margin-bottom: 25px;
    }

    .grid {
        gap: 20px;
    }

    .card {
        height: 250px;
        border-radius: 12px;
    }

    .overlay {
        padding: 55px 16px 16px;
    }

    .overlay h3 {
        font-size: 21px;
        margin-bottom: 7px;
    }

    .overlay p {
        font-size: 14px;
    }


    /* Table */

    table {
        width: 100%;
    }

    table td {
        padding: 12px 10px;
        font-size: 14px;
    }


    /* CTA */

    .cta {
        padding: 50px 12px;
    }

    .cta h2 {
        font-size: 27px;
    }

    .cta p {
        font-size: 15px;
    }

    .cta a {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 6px 0;
    }
}


/* =========================================================
   ANIMATIONS
========================================================= */

/* Fade Up */

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* Fade Left */

.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}


/* Fade Right */

.fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}


/* Zoom */

.zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.zoom.show {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   FLOATING IMAGE
========================================================= */

.about-image img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.about-btn {
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   ABOUT CARD
========================================================= */

.about-card {
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   MOBILE ANIMATION FIX
========================================================= */

@media (max-width: 768px) {

    .fade-left,
    .fade-right {
        transform: translateY(40px);
    }

    .fade-left.show,
    .fade-right.show {
        transform: translateY(0);
    }
}
