body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #F4F6F8;
}

/* ===== HEADER ===== */
header {
    background: #ffffff;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}


/* Logo */
.logo {
    height: 60px;          /* FIXED SIZE */
    width: auto;
    object-fit: contain;
    /* background: white;     Makes logo clear */
    padding: 6px 10px;
    border-radius: 6px;
}

/* Navigation */
nav {
    display: flex;
    gap: 14px;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #0b3c5d;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Active / Hover like Vibrant */
nav a.active,
nav a:hover {
    background: #0b3c5d;
    color: #ffffff;
    /* display: inline-block; */
    border-radius: 30px;
        padding: 5px 20px;
}

.hero {
    background: linear-gradient(
        180deg,
        #0E4A6E 0%,   /* LIGHTER BLUE */
        #1B6FA1 100%
    );
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
}


.hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero p {
    font-size: 17px;
    opacity: 0.9;
}



.about {
    padding: 40px;
    text-align: center;
}

.highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
}

.page-title {
    text-align: center;
    margin: 10px 0;
     background: linear-gradient(
        180deg,
        #0E4A6E 0%,   /* LIGHTER BLUE */
        #1B6FA1 100%
    );
    color: white;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    overflow: hidden;              /* REQUIRED */
    transition: transform 0.3s ease;
}

/* Image container */
.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f2f2f2;     /* 🔥 NOT WHITE */
    border: 1px solid #ddd;  /* 🔥 SHOW IMAGE AREA */
    padding: 10px;
    box-sizing: border-box;
}

/* ZOOM EFFECT */
.card:hover img {
    transform: scale(1.1);         /* ZOOM OUT */
}

/* Optional card lift */
.card:hover {
    transform: translateY(-6px);
}

/* Product name */
.card h4 {
    margin-top: 12px;
    font-size: 16px;
    color: #0b3c5d;
}


.contact-form {
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

button {
    background: #0B3C5D;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
}

footer {
    background: #0B3C5D;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
.category-title {
    margin: 40px 20px 10px;
    font-size: 24px;
    color: #0b3c5d;
    border-left: 6px solid #e63946;
    padding-left: 10px;
}
/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    background: linear-gradient(120deg, #0b3c5d, #1f4fd8);
    color: white;
    flex-wrap: wrap;
}

.showcase-text {
    max-width: 420px;
}

.showcase-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.showcase-text p {
    font-size: 17px;
    line-height: 1.6;
}

/* ===== VIDEO CAROUSEL ===== */
.video-carousel {
    position: relative;
    width: 520px;
    max-width: 100%;
}

.video-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.carousel-video {
    width: 100%;
    display: none;
}

.carousel-video.active {
    display: block;
}

/* ===== CAROUSEL BUTTONS ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.85);
}

.carousel-btn.left {
    left: -20px;
}

.carousel-btn.right {
    right: -20px;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    background: linear-gradient(120deg, #0b3c5d, #1f4fd8);
    color: white;
    flex-wrap: wrap;
}

.showcase-text {
    max-width: 420px;
}

.showcase-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.showcase-text p {
    font-size: 17px;
    line-height: 1.6;
}

/* ===== VIDEO CAROUSEL ===== */
.video-carousel {
    position: relative;
    width: 520px;
    max-width: 100%;
}

.video-wrapper {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.carousel-video {
    width: 100%;
    display: none;
}

.carousel-video.active {
    display: block;
}

/* ===== CAROUSEL BUTTONS ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.85);
}

.carousel-btn.left {
    left: -20px;
}

.carousel-btn.right {
    right: -20px;
}
/* ===== PRODUCT SHOWCASE (CLEAN LIGHT BACKGROUND) ===== */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 90px;
    background: #f7f9fc;   /* LIGHT BACKGROUND */
    color: #1c1c1c;
    flex-wrap: wrap;
}

.product-showcase.reverse {
    background: #ffffff;
    flex-direction: row-reverse;
}

/* TEXT */
.showcase-text {
    max-width: 480px;
}

.showcase-text h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #0b3c5d;
}

.showcase-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* FEATURES */
.features-list {
    margin-top: 18px;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

/* VIDEO CARD */
.showcase-video video {
    width: 520px;
    max-width: 100%;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 900px) {
    .product-showcase {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .features-list {
        text-align: left;
        display: inline-block;
    }
}
/* ===== LOGO FIX ===== */
.logo img {
    height: 55px;
    width: auto;
    background: transparent !important;
    object-fit: contain;
    display: block;
}

/* NAVBAR */
.navbar {
    background: #0b3c5d;   /* dark blue */
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

