body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.header-top {
    background-color: #001f4d;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.social-media a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

/* Nav bar */
.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    margin-top: -10px;
}

    .header-bottom .logo {
        height: auto;
        margin-left: 35px;
    }

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    nav ul li {
        margin-right: 60px;
    }

        nav ul li a {
            text-decoration: none;
            color: #000000;
            font-weight: bold;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        nav ul li:first-child a {
            color: #001f4d;
        }

        nav ul li:not(:first-child) a:hover {
            color: orange;
        }

        nav ul li a i {
            margin-left: 5px;
            font-size: 12px;
        }

        nav ul li button {
            background-color: #001f4d;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            margin-top: -20px;
            font-size: 15px;
        }
/*
.breadcrumb {
    background-color: #001f4d;
    color: white;
}

.breadcrumb a {
    color: white;
}*/

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 650px;
    padding: 20px;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

    .dropdown-content.show {
        display: flex;
    }

.dropdown-column {
    flex: 1;
    min-width: 150px;
}

    .dropdown-column h4 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #001f4d;
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
    }

    .dropdown-column a {
        display: block;
        margin: 6px 0;
        font-size: 14px;
        color: #000;
        text-decoration: none;
    }

        .dropdown-column a:hover {
            color: orange;
        }

.product-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-main {
    display: flex;
    justify-content: center; /* center image + text */
    align-items: center;
    background-color: #001f4d;
    color: white;
    padding: 30px; /* reduced padding for more space */
    flex-wrap: wrap;
    min-width: 100%;
    box-sizing: border-box;
}

.product-text {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
}

    .product-text h4 {
        font-size: 50px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .product-text h1 {
        font-size: 30px;
        font-weight: 900;
        margin: 8px 0;
        color: goldenrod;
    }

    .product-text .subtitle {
        font-size: 18px;
        color: #ffff99;
        margin: 10px 0;
    }

    .product-text .labels {
        margin-top: 12px;
        font-weight: bold;
    }


.product-image-container {
    flex: 2;
    position: relative;
    background-color: white;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px; /* increase max width */
}

/* Bigger image */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-us-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.about-us-text {
    flex: 1;
    max-width: 48%;
}

    .about-us-text .section-title {
        color: #001f4d;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-us-text h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .about-us-text p {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
    }

.about-us-images {
    flex: 1;
    max-width: 48%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

    .about-us-images img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .about-us-images img:hover {
            transform: scale(1.03);
        }

.products {
    padding: 40px;
    text-align: center;
}

.product-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1 1 20%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .product-card h3 {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
    }

    .product-card p {
        font-size: 14px;
        color: #555;
    }

.certification-section {
    background: linear-gradient(to right, #001f4d, #003366);
    padding: 60px 20px;
    color: #fff;
}

.certification-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.certification-text {
    flex: 1 1 40%;
}

    .certification-text h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #FFD700;
    }

    .certification-text p {
        font-size: 18px;
        line-height: 1.6;
    }

.certification-logos {
    flex: 1 1 55%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .certification-logos img {
        width: 150px;
        height: auto;
        background: white;
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

.customer-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fdf9f3;
}

    .customer-section h2 {
        font-size: 2.5em;
        font-weight: bold;
        margin-bottom: 30px;
    }

        .customer-section h2 span {
            color: black;
        }

/* Logo Slider Container */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Slider Track */
.slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

    .slider-track img {
        flex: 0 0 auto;
        width: 150px;
        margin: 0 20px;
        max-width: 100%;
        height: auto;
        cursor: pointer;
        transition: transform 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .slider-track img:hover {
            transform: scale(1.1);
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mvv-card img {
    background: transparent;
}

.customer-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    width: 220px;
    text-align: center;
    padding: 10px;
}

    .card img {
        width: 180px;
        height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

        .card img:hover {
            transform: scale(1.05);
        }

    .card p {
        font-weight: bold;
        font-size: 17px;
        margin: 0;
        color: #002060;
        line-height: 1.3;
    }

.view-more-btn {
    display: inline-block;
    margin-top: 40px;
    background: #001f4d;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #001f4d;
    text-align: center;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

    .blog-post img {
        max-width: 100%;
        height: auto;
    }

.date {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

h2 {
    color: #333;
    font-size: 18px;
    margin: 10px 0;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    background-color: #001f4d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

    .read-more:hover {
        background-color: #003366;
    }

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #001f4d;
    padding: 50px 30px;
    flex-wrap: wrap;
    color: white;
    background-image: none !important;
}

/*Enquiry form */
.enquiry-form {
    flex: 1;
    max-width: 48%;
    background: white;
    color: black;
    padding: 30px;
    border-radius: 10px;
}

    .enquiry-form h2 {
        margin-bottom: 10px;
    }

    .enquiry-form p {
        margin-bottom: 20px;
    }

    .enquiry-form .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

        .enquiry-form .form-group input,
        .enquiry-form .form-group textarea {
            padding: 10px;
            border-radius: 5px;
            border: none;
            margin-bottom: 10px;
            background-color: #f5f5f5;
        }

    .enquiry-form button {
        padding: 12px 20px;
        background-color: #001f4d;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

.message-container {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none; /* Initially hidden */
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

.contact-info {
    flex: 1;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

    .contact-info h1 {
        font-size: 35px;
        color: white;
        margin-bottom: 20px;
    }

    .contact-info .info-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        color: white;
    }

        .contact-info .info-item .icon {
            font-size: 24px;
            margin-bottom: 5px;
        }

    .contact-info a {
        color: #f0f0f0;
        text-decoration: underline;
    }

    .contact-info .info-item p {
        color: #FFD700;
        margin: 0;
        line-height: 1.4;
    }

.footer {
    background-color: #001f4d;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.o1, .o2, .o3, .o4 {
    flex: 1;
    min-width: 200px;
    margin: 0 15px;
    text-align: center;
    padding: 10px;
}

    .o1 img {
        max-width: 200px;
        height: auto;
        margin-bottom: 10px;
    }

    .o1 p {
        font-size: 16px;
        line-height: 1.6;
        color: #fff;
    }

    .o1 .fa {
        font-size: 20px;
        color: #fff;
        background-color: #0000FF;
        border-radius: 50%;
        padding: 8px;
        margin: 0 5px;
        text-decoration: none;
        display: inline-block;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        box-sizing: content-box;
        transition: background-color 0.3s;
    }

    .o2 ul {
        list-style: none;
        padding-left: 0;
    }

        .o2 ul li {
            margin-bottom: 8px;
        }

            .o2 ul li a {
                color: white;
                text-decoration: none;
                font-size: 16px;
                padding-left: 5px;
                display: inline-block;
                margin-top: 20px;
            }

                .o2 ul li a:hover {
                    text-decoration: underline;
                }

    .o1 .fa:hover {
        background-color: orangered;
    }

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

    .newsletter-form input[type="email"] {
        flex: 1;
        font-size: 16px;
        border: none;
        border-radius: 5px 0 0 5px;
        outline: none;
    }

    .newsletter-form button {
        padding: 10px 20px;
        background-color: blue;
        color: white;
        border: none;
        font-size: 16px;
        cursor: pointer;
        border-radius: 0 5px 5px 0;
        transition: background 0.3s;
    }

        .newsletter-form button:hover {
            background-color: #e08900;
        }

.footer-bottom {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

    .footer-bottom a {
        color: #f9a826;
        text-decoration: none;
        font-weight: bold;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }


@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .o1, .o2, .o3, .o4 {
        margin: 10px 0;
    }

    .contact-section {
        flex-direction: column;
    }

    .enquiry-form, .contact-info {
        max-width: 100%;
        margin-bottom: 30px;
    }
}



/*Whats app ICON*/


#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.chat-icon img {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.chat-box {
    display: none;
    width: 300px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

    .chat-box .message {
        background: rgba(255,255,255,0.2);
        padding: 8px 12px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .chat-box .user-message {
        display: flex;
        gap: 5px;
    }

    .chat-box input {
        flex: 1;
        padding: 5px;
        border-radius: 5px;
        border: none;
    }

    .chat-box button {
        background: #075E54;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }



/*Admin login page*/

/* ------------------------------
   Login Section
------------------------------ */
.login {
    background: #eee;
}

.full_height {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_section {
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.logo_login {
    background: #2f3e52; /* Dark blue background like screenshot */
    padding: 30px 0;
    text-align: center;
}

    .logo_login img {
        width: 120px;
        height: auto;
        position: relative;
        z-index: 1;
    }

.login_form {
    padding: 30px;
}

    .login_form form .field {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

        .login_form form .field label.label_field {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            color: #555;
        }

        .login_form form .field input {
            border: none;
            border-bottom: 2px solid #ddd;
            padding: 10px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

            .login_form form .field input:focus {
                outline: none;
                border-color: #4CAF50; /* Green focus */
            }

    .login_form .field.remember-forgot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        .login_form .field.remember-forgot label.form-check-label {
            font-size: 14px;
            color: #333;
            display: flex;
            align-items: center;
        }

        .login_form .field.remember-forgot input.form-check-input {
            margin-right: 5px;
        }

.forgot {
    font-size: 14px;
    color: #ff5722;
    text-decoration: none;
}

    .forgot:hover {
        text-decoration: underline;
    }

.main_bt {
    background: #28c76f;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    .main_bt:hover {
        background: #22a65e;
    }

/* --- Desktop Nav - Hide on mobile --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

/* --- Mobile Nav - Show only on mobile --- */
@media (max-width: 992px) {
    /* Hide the desktop navigation */
    .desktop-nav {
        display: none;
    }

    /* Show the hamburger icon */
    .mobile-menu-icon {
        display: block;
        color: black;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* The main mobile menu container */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 350px;
        height: 100vh;
        background-color: #001f4d;
        z-index: 1000;
        transition: right 0.5s ease-in-out;
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    /* Header inside the mobile menu with "MENU" and "X" */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .mobile-nav-header span,
        .mobile-nav .fa-times {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
        }

    /* Styles for the vertical list of menu items */
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }

        .mobile-nav ul li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

            .mobile-nav ul li:last-child {
                border-bottom: none;
            }

            .mobile-nav ul li a,
            .mobile-nav ul li button {
                color: white;
                text-decoration: none;
                font-size: 1.2rem;
                display: block;
                background: none;
                border: none;
                width: 100%;
                text-align: left;
            }

    /* Styles for the "Products" dropdown section */
    .dropdown-mobile .menu-item-with-plus {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-dropdown-content {
        display: none;
        padding-left: 20px;
        margin-top: 10px;
        background-color: #001f4d; /* Sub-menu background color */
    }

        .mobile-dropdown-content h4 {
            color: white;
        }

        .mobile-dropdown-content a {
            padding: 5px 0;
            font-size: 1rem;
        }

    .toggle-dropdown-icon {
        color: white;
        font-size: 1.2rem;
        transition: transform 0.3s ease-in-out;
    }
}

/* Hide mobile menu and hamburger icon on desktop */
@media (min-width: 993px) {
    .mobile-menu-icon,
    .mobile-nav {
        display: none !important;
    }
}