section {
    padding: 40px 0; /* Reduced padding for sections */
}

.navbar {
    background-color: #17a2b8;
}

.navbar-nav .nav-item .nav-link {
    color: white;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #f8f9fa;
}

.navbar-nav .nav-item .nav-link i {
    margin-right: 8px;
}

.section-headers {
    color: #17a2b8;
}

.service-icon {
    font-size: 3rem;
    color: #17a2b8;
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-card .card-body {
    background-color: #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #d1ecf1;
}

footer {
    background-color: #343a40;
    color: white;
}

/* Styling for Map */
#map {
    height: 400px;
    width: 100%;
}

.services-section {
    margin-top: 80px;
}

/* Remove bullets in blog list */
#blogs ul {
    list-style-type: none;
    padding-left: 0;
}

#blogs ul li {
    margin-bottom: 10px;
}

#blogs ul li a {
    text-decoration: none;
    color: #17a2b8;
}

#blogs ul li a:hover {
    color: #0056b3;
}

/* Custom styling for form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

button[type="submit"] {
    border-radius: 25px;
    background-color: #17a2b8;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    border: none;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #138496;
}

/* Increased top margin for the "Welcome" section */
#home {
    margin-top: 100px; /* Increased margin to prevent overlap with navbar */
}
        
.contact-info {
    margin-top: 20px; /* Adds space above the section */
    font-size: 1.1em; /* Slightly larger font size for better readability */
  }
  .contact-info p {
    margin-bottom: 10px; /* Adds space between the paragraphs */
  }
  .contact-info strong {
    font-weight: bold; /* Makes the labels bold */
  }