        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }
        .top-bar {
            background-color: #17a2b8;
            color: white;
            padding: 10px 20px;
            text-align: center;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .logo-section {
            text-align: center;
            padding: 20px;
        }
        .logo-section img {
            width: 80px;
            margin-bottom: 10px;
        }
        .logo-section h1 {
            font-size: 1.5rem;
            color: #5bc0de;
            margin: 0;
        }
       
        .banner-section {
            background-image: url('banner_image.jpg'); /* Replace with your banner image path */
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .star-section {
            padding: 50px 20px;
            text-align: center;
        }
        .star-section h2 {
            font-size: 2rem;
            color: #5bc0de;
            margin-bottom: 20px;
        }
        .product-desc { font-size: 0.9rem; color: #555; margin-bottom: 10px; }
        .product-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .product {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            width: 300px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product img {
            width: 200px;
            height: 150px;
            object-fit: cover;
            margin-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
        }
        .product h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 10px;
        }
        .product p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }
        .product button {
            padding: 10px 20px;
            font-size: 0.9rem;
            color: #17a2b8;
            background: none;
            border: 1px solid #17a2b8;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        .product button:hover {
            background-color: #17a2b8;
            color: #fff;
        }
        .distributor-section {
            text-align: center;
            padding: 50px 20px;
        }
        .distributor-section h2 {
            color: #5bc0de;
            font-size: 2rem;
            margin-bottom: 30px;
        }
        .distributor-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .distributor {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .distributor img {
            max-width: 80%;
            max-height: 80%;
        }
        .distributor:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
		
		
		    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #17a2b8; /* Primary background color */
        padding: 10px 20px;
        color: white;
        font-size: 0.9rem;
    }
    .top-bar-left {
        font-weight: bold;
    }
    .top-bar-right {
        display: flex;
        align-items: center;
    }
    .top-bar-right a {
        color: white;
        font-size: 1.2rem;
        transition: color 0.3s ease;
        text-decoration: none;
    }
    .top-bar-right a:hover {
        color: #f8d210; /* Hover color */
    }
    .top-bar-right i {
        vertical-align: middle;
    }
	
	
	
	 .navbar {
        display: flex;
        justify-content: center;
        background-color: white;
        padding: 10px 0;
        border-bottom: 2px solid #e0e0e0;
    }
    .navbar a {
        margin: 0 15px;
        text-decoration: none;
        font-size: 1rem;
        color: #333;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px; /* Space between icon and text */
        transition: color 0.3s;
    }
    .navbar a:hover {
        color: #17a2b8;
    }
    .dropdown {
        position: relative;
    }
    .dropdown-toggle {
        cursor: pointer;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        border-radius: 5px;
        z-index: 1000;
    }
    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        white-space:nowrap;
        font-size: 1rem;
        color: #333;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s, color 0.3s;
    }
    .dropdown-menu a:hover {
        background-color: #17a2b8;
        color: white;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
 

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Title Section */
.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Partner Section Styling */
.partner-section {
    background-color: #f9f9f9;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-name {
    font-size: 2em;
    font-weight: bold;
    color: #5bc0de;
    margin-bottom: 10px;
}

.partner-description {
    font-size: 1.1em;
    color: #7f8c8d;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .section-title {
        font-size: 2em;
    }

    .partner-name {
        font-size: 1.8em;
    }

    .partner-description {
        font-size: 1em;
    }
}

/* Section Styling */
.section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Header Section */
.about-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-title {
    font-size: 3em;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* About Content Section */
.about-content {
    background-color: #fff;
    padding-top: 20px;
}

.section-subtitle {
    font-size: 2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5em;
    }

    .section-subtitle {
        font-size: 1.8em;
    }

    .section-text {
        font-size: 1em;
    }

    .container {
        padding: 10px;
    }
}

.contact-section {
        padding: 40px 0;
        background-color: #f4f4f4;
    }

    .contact-header h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 20px;
    }

    .contact-header p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 30px;
    }

    .contact-details {
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item h2 {
        font-size: 1.5rem;
        color: #444;
    }

    .contact-item p {
        font-size: 1rem;
        color: #777;
        margin-top: 10px;
    }

    .divider {
        border: 0;
        border-top: 1px solid #ddd;
        margin: 20px 0;
    }

    .contact-map h2 {
        font-size: 1.5rem;
        color: #444;
        margin-bottom: 20px;
    }

    /* Google Map Styles */
    .map-embed iframe {
        border-radius: 8px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .contact-details {
            padding: 20px;
        }

        .contact-header h1 {
            font-size: 2rem;
        }

        .contact-header p {
            font-size: 1rem;
        }
         
            .product-item{
                width:80%;
            }
        

    }

