/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    color: #000000; /* Black for text */
    background-color: #F9F9F9; /* Light gray background */
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #FFFFFF; /* White background for header */
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

header a.navbar-brand {
    color: #000000; /* Black logo */
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header a.nav-link {
    color: #000000; /* Black navigation links */
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header a.nav-link:hover {
    color: #5DBF47; /* Green on hover */
}

.navbar-toggler-icon {
    background-color: #000000;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: url('../img/hero_background.jpg') no-repeat center center/cover; /* Background image */
    background-color: #F9F9F9; /* Light gray background for the hero section */
    padding: 150px 0;
    text-align: center;
}

.hero img {
    width: 400px; /* Set a maximum width for the MediSyd logo */
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000; /* Black for Dr. Ashish Mehta's name */
}

.hero p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 20px;
}

.hero a.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    background-color:#A5D6A7 ; /* Light Green button */
    color: black;
    border: 0cap;
    transition: background-color 0.3s ease;
}

.hero a.btn:hover {
    background-color: #5DBF47; /*  green hover */
    color: white;
}


/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background for sections */
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
}

.about-section p {
    font-size: 1.1rem;
    color: #666666;
}

.about-section img {
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Cards Styling */
.card {
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #F9F9F9; /* Light background for cards */
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

/* Contact Form Styling */
.contact-section {
    padding: 80px 0;
    background-color: #F9F9F9; /* Light gray background */
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
}

.contact-section form input, .contact-section form select, .contact-section form textarea {
    border: 1px solid #cccccc;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 20px;
}

.contact-section form input:focus, .contact-section form select:focus, .contact-section form textarea:focus {
    border-color: #5DBF47; /* Green focus border */
    box-shadow: 0 0 5px rgba(93, 191, 71, 0.5); /* Green shadow on focus */
}

.contact-section form button {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #5DBF47; /* Green button */
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-section form button:hover {
    background-color: #A5D6A7; /* Light green hover */
}

/* Footer Styling */
footer {
    background-color: #000000; /* Black footer background */
    color: white;
    padding: 60px 0;
}

footer h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #A5D6A7; /* Light green text links in footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #5DBF47; /* Green on hover */
}

footer p, footer a {
    color: #A5D6A7;
}

footer a:hover {
    color: #5DBF47; /* Green on hover */
}

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #A5D6A7; /* Light green on hover */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
