/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 10px 0;
}

/* Header Section */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 50px;
    font-weight: bold;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

header .cta-btn {
    background-color: #00bcd4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
#hero {
    
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

#hero .hero-btn {
    background-color: #00bcd4;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
#about {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

/* Services Section */
#services {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.service-card {
    background-color: #f0f0f0;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
}

/* Speciality Section */
#Speciality {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.Speciality-list {
    display: flex;
    justify-content: space-around;
}

.feature {
    width: 30%;
}

/* Careers Section */
#Careers {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.Careers {
    display: flex;
    justify-content: space-around;
}

.testimonial {
    width: 45%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#contact form {
    width: 50%;
    margin: auto;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact form button {
    background-color: #00bcd4;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info {
    margin-top: 20px;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}