
.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 90%;
    margin: 40px auto;
}

.product-card:nth-child(5) {
    grid-column: 1 / 2;
    margin-left: auto;
}

.product-card:nth-child(6) {
    grid-column: 2 / 3;
}

.product-card:nth-child(7) {
    grid-column: 3 / 4;
}

/* =========================
   PRODUCTS GRID
========================= */

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    align-items: start;
}

.product-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-size: 28px;
    margin: 15px 0 10px;
    text-align: center;
}

.product-card p {
    font-size: 16px;
    padding: 0 20px 20px;
    text-align: center;
}



/* =========================
   PRODUCTS CONTAINER
========================= */

.products-container {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    align-items: start;
}


/* =========================
   PRODUCT CARD
========================= */

.products-container .product-card {
    width: 100%;
    max-width: 100%;
    background: #ffffff;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}


/* =========================
   PRODUCT IMAGE
========================= */

.products-container .product-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;
    display: block;
}


/* =========================
   CARD CONTENT
========================= */

.products-container .product-card h3 {
    font-size: 24px;
    margin: 20px 10px 10px;
    text-align: center;
}

.products-container .product-card p {
    font-size: 16px;
    padding: 0 20px 20px;
    text-align: center;
}


.products-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #f5f7fa;
}


/* ===========================
   HEADER
=========================== */

header {
    height: 70px;
    width: 100%;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: relative;
    z-index: 1000;
}


/* ===========================
   LOGO
=========================== */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: auto;
    display: block;
}

.logo-text {
    margin-left: 0;
}

.logo-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0B3D91;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo p {
    margin-top: 4px;
    color: #d88a00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}


/* ===========================
   NAVIGATION
=========================== */

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;

    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f0a500;
}


/* ===========================
   HERO SECTION
=========================== */

.hero {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #ffffff;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("../images/office-bg.jpg");

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

    position: relative;
}


/* ===========================
   HERO CONTENT
=========================== */

.hero-content {
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;

    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(0, 0, 0, 0.4);
}

.hero .line {
    width: 120px;
    height: 5px;

    background: #ffc107;

    margin: 25px auto;
    border-radius: 10px;
}

.hero h2 {
    color: #ffc107;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
    color: #ffffff;
    font-size: 1.7rem;
    margin-bottom: 35px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}


/* ===========================
   HERO BUTTON
=========================== */

.hero .btn {
    display: inline-block;

    padding: 18px 45px;

    background: #ffc107;
    color: #000000;

    border-radius: 50px;

    text-decoration: none;

    font-size: 1.2rem;
    font-weight: bold;

    transition: 0.4s;
}

.hero .btn:hover {
    background: #0a3a85;
    color: #ffffff;
    transform: translateY(-5px);
}


/* ===========================
   HERO ANIMATION
=========================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ===========================
   PRODUCTS PAGE
=========================== */

.products-page {
    min-height: 100vh;

    padding: 120px 8% 80px;

    background: #f5f7fa;
}


/* ===========================
   PRODUCTS BANNER
=========================== */

.products-banner {
    width: 100%;
    height: 300px;

    border-radius: 20px;
    margin-bottom: 50px;

    background:
        url("../images/office-bg.jpg")
        center / cover
        no-repeat;
}


/* ===========================
   PRODUCTS HEADER
=========================== */

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h1 {
    font-size: 55px;
    color: #0b2f6d;
}


/* ===========================
   PRODUCTS GRID
=========================== */

.products-container {
    width: 90%;
    max-width: 1400px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    align-items: start;
}


/* ===========================
   PRODUCT CARD
=========================== */

.products-container .product-card {
    width: 100%;
    max-width: 100%;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10);

    transition: 0.3s;
}

.products-container .product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* ===========================
   PRODUCT IMAGE
=========================== */

.products-container .product-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;
}


/* ===========================
   PRODUCT CARD CONTENT
=========================== */

.products-container .product-card h3 {
    font-size: 24px;

    color: #0b2f6d;

    margin: 20px 10px 10px;

    text-align: center;
}

.products-container .product-card p {
    font-size: 16px;

    color: #666666;

    padding: 0 20px 20px;

    text-align: center;
}


/* ===========================
   PAGE HEADING
=========================== */

h1 {
    text-align: center;

    font-size: 55px;

    color: #0b2f6d;

    margin: 50px 0;

    position: relative;
}

h1::after {
    content: '';

    width: 120px;
    height: 4px;

    background: #ffc107;

    display: block;

    margin: 15px auto;

    border-radius: 10px;
}


/* ===========================
   PRODUCT GRID - OLD CLASS
=========================== */

.product-grid {
    max-width: 1400px;

    margin: 50px auto;

    padding: 0 20px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    align-items: start;
}


/* ===========================
   GALLERY
=========================== */

.gallery {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    max-width: 1500px;

    margin: 50px auto;
}

.gallery img {
    width: 100%;

    height: 280px;

    object-fit: contain;

    background: #ffffff;

    padding: 20px;

    border-radius: 18px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition: 0.3s;
}

.gallery img:hover {
    transform: translateY(-10px) scale(1.05);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25);
}


/* ===========================
   PEDESTAL MAIN PHOTO
=========================== */

.pedestal-main {
    width: 90%;

    max-width: 1000px;

    height: 450px;

    margin: 120px auto 50px;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    display: flex;

    justify-content: center;

    align-items: center;
}

.pedestal-main img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 20px;

    display: block;
}


/* ===========================
   FOOTER
=========================== */

footer {
    background: #003366;

    color: #ffffff;

    padding: 50px 8% 0;
}

.footer-container {
    display: flex;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;
}

.footer-box {
    flex: 1;

    min-width: 220px;
}

.footer-box h2 {
    font-size: 25px;

    margin-bottom: 5px;
}

.footer-box h3 {
    margin-bottom: 20px;
}

.footer-box p {
    line-height: 1.7;

    color: #dddddd;

    margin-bottom: 10px;
}

.footer-box a {
    display: block;

    color: #dddddd;

    text-decoration: none;

    margin-bottom: 10px;
}

.footer-box a:hover {
    color: #f0a500;
}


/* ===========================
   FOOTER BOTTOM
=========================== */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.2);

    margin-top: 40px;

    padding: 20px 0;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #dddddd;
}


/* ===========================
   COUNTER SECTION
=========================== */

.counter-section {
    background: #0b3c73;

    padding: 60px 10%;

    display: flex;

    justify-content: space-around;

    text-align: center;

    color: #ffffff;
}

.counter-box h2 {
    font-size: 50px;

    font-weight: 700;

    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;

    color: #dddddd;
}


/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    background: #0b3c73;

    text-align: center;

    padding: 60px 20px;

    color: #ffffff;
}


/* ===========================
   STATS SECTION
=========================== */

.stats-section {
    background: linear-gradient(
        135deg,
        #edf4fb,
        #dce8f6
    );

    padding: 60px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-direction: row;
}


/* ===========================
   STAT BOX
=========================== */

.stat-box {
    background: #ffffff;

    width: 260px;

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

    border-bottom: 4px solid #0b3c73;
}

.stat-box:hover {
    transform: translateY(-10px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ===========================
   ICON
=========================== */

.icon {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #0b3c73;

    color: #ffffff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    flex-shrink: 0;
}


/* ===========================
   STAT CONTENT
=========================== */

.stat-content h2 {
    margin: 0;

    font-size: 34px;

    color: #0b3c73;
}

.stat-content p {
    margin-top: 5px;

    color: #666666;

    font-size: 15px;
}


/* ===========================
   GLASS CARD
=========================== */

.glass-card {
    flex: 1;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);
}


/* ===========================
   FOOTER ALTERNATIVE
=========================== */

.footer {
    background: #041f3d;

    color: #ffffff;

    padding: 40px 8%;
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 1000px) {

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

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

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

}


@media (max-width: 768px) {

    /* Header */

    header {
        height: auto;

        flex-direction: column;

        padding: 15px;
    }


    /* Logo */

    .logo-text h2 {
        font-size: 24px;
    }

    .logo p {
        font-size: 10px;
    }


    /* Navigation */

    nav {
        margin-top: 15px;
    }

    nav ul {
        gap: 20px;

        flex-wrap: wrap;

        justify-content: center;
    }

    nav ul li a {
        font-size: 16px;
    }


    /* Hero */

    .hero {
        height: 100vh;
    }

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

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .btn {
        padding: 14px 28px;

        font-size: 18px;
    }


    /* Products */

    .products-page {
        padding: 80px 5% 50px;
    }

    .products-header h1 {
        font-size: 40px;
    }

    .products-container {
        grid-template-columns: 1fr;

        width: 90%;
    }


    /* Product Grid */

    .product-grid {
        grid-template-columns: 1fr;

        padding: 25px;
    }


    /* Gallery */

    .gallery {
        grid-template-columns: 1fr;

        padding: 25px;
    }


    /* Pedestal */

    .pedestal-main {
        width: 90%;

        height: 350px;

        margin-top: 80px;
    }


    /* Footer */

    .footer-container {
        flex-direction: column;
    }


    /* Stats */

    .stats-section {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }
}

/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #f5f7fa;
}


/* ===========================
   HEADER
=========================== */

header {
    height: 70px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    position: relative;
    z-index: 1000;
}


/* ===========================
   LOGO
=========================== */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo h2 {
    margin: 0;
    color: #003366;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.logo p {
    margin-top: 4px;
    color: #d88a00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}
/* =========================
   HEADER FIX
========================= */

header {
    width: 100%;
    height: 70px;
    padding: 0 40px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
}


/* LOGO LEFT */

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: auto;
}

.logo-text {
    display: block;
}

.logo-text h2 {
    margin: 0;
}

.logo-text p {
    margin: 3px 0 0;
}
