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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: #172433;
            background: #fff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            width: 100%;
            display: block;
        }

        .container {
            width: min(1180px, 92%);
            margin: auto;
        }

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

        header {
            height: 75px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .logo-icon {
            width: 40px;
            height: 40px;
            border: 2px solid #172433;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .logo-text strong {
            display: block;
            font-size: 18px;
            letter-spacing: 1px;
        }

        .logo-text span {
            font-size: 9px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav a {
            font-size: 12px;
            font-weight: 600;
            color: #34404c;
        }

        nav a:hover {
            color: #000;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 20px;
            border-radius: 4px;
            border: 1px solid #172433;
            font-size: 12px;
            font-weight: 700;
            transition: .3s;
            cursor: pointer;
        }

        .btn-dark {
            background: #172433;
            color: #fff;
        }

        .btn-dark:hover {
            background: #000;
        }

        .btn-light {
            background: #fff;
            color: #172433;
        }

        .btn-light:hover {
            background: #f2f2f2;
        }

        .menu-btn {
            display: none;
            font-size: 25px;
            cursor: pointer;
        }

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

        .hero {
            min-height: 510px;
            background:
                linear-gradient(90deg,
                rgba(255,255,255,.98) 0%,
                rgba(255,255,255,.88) 42%,
                rgba(255,255,255,.15) 100%),
                url("../images/bg1.png");

            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-content {
            width: 550px;
        }

        .small-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
            color: #596572;
        }

        .hero h1 {
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1.05;
            margin-bottom: 22px;
            max-width: 650px;
        }

        .hero p {
            font-size: 15px;
            line-height: 1.7;
            color: #596572;
            max-width: 450px;
            margin-bottom: 28px;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
        }

        /* ================= FEATURES ================= */

        .features {
            border-bottom: 1px solid #eee;
            border-top: 1px solid #eee;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }

        .feature {
            padding: 20px 10px;
            text-align: center;
            border-right: 1px solid #eee;
        }

        .feature:last-child {
            border: 0;
        }

        .feature-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .feature h4 {
            font-size: 11px;
            line-height: 1.5;
        }

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

        .section {
            padding: 70px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title span {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #777;
        }

        .section-title h2 {
            font-size: 32px;
            margin-top: 8px;
        }

        .section-title .line {
            width: 45px;
            height: 3px;
            background: #172433;
            margin: 14px auto 0;
        }

        /* ================= CATEGORY ================= */

        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .category-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            transition: .3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,.08);
        }

        .category-card img {
            height: 145px;
            object-fit: cover;
        }

        .category-card h4 {
            padding: 15px 8px 4px;
            font-size: 12px;
            text-align: center;
        }

        .category-card p {
            text-align: center;
            padding-bottom: 15px;
            font-size: 12px;
        }

        /* ================= ABOUT ================= */

        .about {
            background: #f5f5f3;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            height: 390px;
            object-fit: cover;
            border-radius: 10px;
        }

        .about-content .small-title {
            margin-bottom: 10px;
        }

        .about-content h2 {
            font-size: 36px;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .about-content p {
            color: #626b74;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .why-box {
            background: #172433;
            color: #fff;
            padding: 30px;
            border-radius: 10px;
            margin-top: 25px;
        }

        .why-box h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .why-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .why-list div {
            font-size: 12px;
            color: #e2e6ea;
        }

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

        .products {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,.08);
        }

        .product-image {
            height: 240px;
            object-fit: cover;
            background: #f5f5f5;
        }

        .product-info {
            padding: 18px;
        }

        .product-info h3 {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .product-info p {
            font-size: 11px;
            color: #777;
            margin-bottom: 15px;
        }

        .product-info .btn {
            width: 100%;
            padding: 10px;
            font-size: 10px;
        }

        /* ================= CATALOGUE CTA ================= */

        .catalogue {
            background: #172433;
            color: #fff;
            padding: 35px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .catalogue h2 {
            font-size: 23px;
            margin-bottom: 8px;
        }

        .catalogue p {
            font-size: 12px;
            color: #ccd2d7;
        }

        .catalogue-buttons {
            display: flex;
            gap: 10px;
        }

        .whatsapp {
            background: #25D366;
            border-color: #25D366;
            color: #fff;
        }

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

        footer {
            background: #f4f4f2;
            padding: 65px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 45px;
        }

        .footer-col h4 {
            font-size: 13px;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a {
            font-size: 12px;
            color: #66717b;
            line-height: 2;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

       .copyright {
            border-top: 1px solid #ddd;
            margin-top: 40px;
            padding-top: 20px;

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

            font-size: 11px;
            color: #777;
        }

        .footer-policy-links {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-policy-links a {
            color: #555;
            transition: 0.3s;
        }

        .footer-policy-links a:hover {
            color: #172433;
        }

        /* ================= MOBILE BOTTOM BAR ================= */

        .mobile-bar {
            display: none;
        }

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

        @media(max-width: 992px) {

            nav {
                gap: 15px;
            }

            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

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

        @media(max-width: 768px) {

            header {
                height: 65px;
            }

            nav,
            header .btn {
                display: none;
            }

            .menu-btn {
                display: block;
            }

            .hero {
                min-height: 620px;

                background:
                    linear-gradient(
                        rgba(255,255,255,.80),
                        rgba(255,255,255,.30)
                    ),
                    url("../images/bg1.png");

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

                display: flex;
                align-items: center;
            }

            .hero-content {
                width: 100%;
            }

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

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

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

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

            .feature:nth-child(2n) {
                border-right: 0;
            }

            .feature:last-child {
                grid-column: span 2;
            }

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

            .category-card img {
                height: 125px;
            }

            .section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 27px;
            }

            .about-content h2 {
                font-size: 30px;
            }

            .about-image {
                height: 280px;
            }

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

            .products {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .product-image {
                height: 180px;
            }

            .product-info {
                padding: 12px;
            }

            .catalogue {
                flex-direction: column;
                align-items: flex-start;
            }

            .catalogue-buttons {
                width: 100%;
                flex-direction: column;
            }

            .catalogue-buttons .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px 20px;
            }

            footer {
                padding-bottom: 90px;
            }

            .mobile-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 65px;
                background: #fff;
                border-top: 1px solid #ddd;
                z-index: 9999;
                justify-content: space-around;
            }

            .mobile-bar a {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 600;
                gap: 4px;
            }

            .mobile-bar span {
                font-size: 20px;
            }
        }

        @media(max-width: 480px) {

            .container {
                width: 90%;
            }

            .hero {
                min-height: 600px;
            }

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

            .category-grid {
                gap: 10px;
            }

            .category-card img {
                height: 110px;
            }

            .category-card h4 {
                font-size: 10px;
            }

            .products {
                gap: 10px;
            }

            .product-image {
                height: 150px;
            }

            .product-info h3 {
                font-size: 11px;
            }

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

        @media (max-width: 768px) {

        .copyright {
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        .footer-policy-links {
            justify-content: center;
            flex-wrap: wrap;
        }

    }
@media(max-width: 768px) {

    header {
        height: 65px;
    }

    nav,
    header .btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 620px;

        background:
            linear-gradient(
                rgba(255,255,255,.80),
                rgba(255,255,255,.30)
            ),
            url("../images/bg1.png");

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

        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}