body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    position: relative;
    text-align: center;
    color: white;
}

.banner {
    width: 100%;
    height: auto;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
     width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
}

.logo {
    width: 100%;
    height: auto;
}

.service {
	
	margin-top: 50px;
}

.service p {
    font-size: 1em;
    margin-bottom: 20px;
	    text-align: center;
    color: #fff;
}

#services {
    padding: 20px;
}

h2, h3 {
    text-align: center;
    color: #fff;
}

.intro, #services, .contact {
    padding: 20px;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

.image-grid a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}


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

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 20px;
    color: white;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Unordered List */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

/* List Items */
nav ul li {
    padding: 10px 0;
}

/* Links */
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
}

/* Active Link */
nav ul li a.active {
    background-color: #444;
    border-radius: 5px;
}

/* Mobile styles */

/* Basic styling for the button badge */
.button-badge-container {
    text-align: center;
    margin: 20px 0;
}

.button-badge {
    display: inline-block;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #f36f6f; /* Red color */
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.button-badge:hover {
    background-color: #d9534f; /* Darker red */
    transform: scale(1.05);
}

.button-badge:active {
    background-color: #c9302c; /* Even darker red */
}
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px;
}

.footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

		
.footer-links a{
color: #fff;
text-decoration: none;
margin-top: 10px;
}

.share-buttons {
    text-align: center;
    margin: 20px;
}

.share-buttons a {
    display: inline-block;
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.share-buttons a:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
	
	.logo-container {
    position: absolute;
    top: 10px;
    left: 10px;
     width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
}

.logo {
    width: 100%;
    height: auto;
}
	
	    ul {
        display: flex;
        justify-content: space-around;
    }

}


@media (max-width: 767px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }
}
