/* Custom styles */
.header {
    background-color: #003c71;
    padding: 10px;
}
.header .navbar-brand {
    color: #fff;
}
.header .navbar-brand:hover {
    color: #ffd54f;
}
.contact-info, .book-appointment {
    padding: 40px 0;
}
.contact-info h2, .book-appointment h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.contact-info .card, .book-appointment .card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}
.footer {
    background-color: #003c71;
    color: white;
    padding: 40px 0;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
/* Icons with text styling */
.contact-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.contact-info ul li i {
    font-size: 24px;
    color: #003c71;;
    margin-right: 15px;
}
.contact-info ul li strong {
    font-size: 18px;
    color: #003c71;
}
.contact-info ul li p {
    margin: 0;
}
.contact-info ul {
    padding-left: 0;
    list-style: none;
}
.social-icons a {
    font-size: 20px;
    margin-right: 10px;
    color: #fff;
    background-color: #003c71;
    padding: 10px;
    border-radius: 50%;
}
.social-icons a:hover {
    background-color: #ffd54f;
}
.book-appointment button {
    background-color: #003c71;;
    color: #fff;
    font-weight: bold;
}
.book-appointment button:hover {
    background-color: #ffd54f;
    color: #fff;
}
.book-appointment input,
.book-appointment select,
.book-appointment textarea {
    background-color: #f3f3f3;
    border: none;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
}
.book-appointment input::placeholder,
.book-appointment textarea::placeholder {
    color: #999;
}

/* Enhanced map styles */
.map-container {
    margin: 40px 0;
    width: 100%;
    background-color: #f0f0f0; /* Light grey background for better contrast */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
}
.map-container:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Bigger shadow on hover */
    transition: box-shadow 0.3s ease;
}
iframe {
    width: 100%;
    height: 500px; /* Increase the height for better visibility */
    border: none;
    border-radius: 12px;
}
