﻿body {
}

     <style>
        /* Make the "Others" dropdown appear as two columns */
  
    .product-list ul {
        padding-left: 0; /* Remove extra padding */
    }
    .product-list li {
        margin-bottom: 8px; /* Ensure uniform spacing */
    }
 



.dropdown-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    min-width: 500px;
}

.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    top: 100%;
    left: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
    position: absolute;
}

.dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 15px;
}

/* Responsive stacking on small devices */
@media (max-width: 767px) {
    .dropdown-menu .row {
        flex-direction: column;
    }

    .dropdown-menu .col-md-6 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .dropdown-menu {
        flex-direction: column;
    }

    .dropdown-menu .col {
        width: 100%;
        padding: 0;
    }
}

/* Optional lines/separators */
.thin-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.thin-separator {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}



        /* General Section Styling */
        .section {
            padding: 60px 0;
        }

        /* Key Highlights Styling */
        .key-highlights {
            background-color: #f9f9f9;
            color: #333;
        }

        /* Core Values Styling */
        .core-values {
            background: linear-gradient(to right, #007bff, #6610f2);
            color: white;
        }

        /* Highlight & Value Box Styling */
        .highlight-box, .value-box {
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            /* Hover Effects */
            .highlight-box:hover, .value-box:hover {
                transform: translateY(-5px);
                box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
            }

        /* Icons in Core Values */
        .value-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #6610f2;
        }


        /* Core Values Section */
        .core-values {
            background-color: #f5f5f5; /* Light background */
            color: #000 !important; /* Force black text */
        }

            /* Override text color inside the boxes */
            .core-values h3,
            .core-values h4,
            .core-values p {
                color: #000 !important;
            }



    </style>