/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #05c3fd;
    padding: 10px 20px;
}

.logo  {
    width: 250px;
    height: 90px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
    padding: 20px;

}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
   
}


nav ul li.active, nav ul li:hover {
    text-decoration: underline;
    
    color:;
}
/* Banner Styles */


/* Section Styles */
main {
    padding: 20px;
}

#home {
    margin-bottom: 5%;
    padding: 20px;
    background-color: #eaf2f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#home h2 {
    color: #9600ad;
    font-size: 38px;
    margin-bottom: 10px;
}

#home p {
    color: #0742e3;
    font-size: 18px;
    line-height: 1.6;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}
.contact-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
}

.contact-card h3 {
    color: #00796b;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: #555;
}

.contact-card a {
    color: #555;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.about h2 {
    padding-left: 45%;
    font-size: 36px;
    color: #004aad;
    margin-bottom: 20px;
}

.card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    height: 500px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-service{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    height: 300px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    height: 100%;
}

.card h3 {
    margin: 0 0 10px;
    color: #004aad;
}

.card p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 20px;
}

.card a {
    display: inline-block;
    text-decoration: none;
    background: #f58220;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.card a:hover {
    background: #d9701a;
}
.card-service a:hover {
    background: #d9701a;
}




/* Form Styles */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 50%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

form label {
    font-size: 16px;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

form button {
    background-color: #00796b;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    width: 100%;
}

form button:hover {
    background-color: #004d40;
}

/* Map Container */
.map-container {
    margin-top: 40px;
}

.map-container h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: left;
}

footer h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #f58220;
}

footer p {
    margin-top: 20px;
    font-size: 14px;
}

footer p a {
    color:  #f58220;
    text-decoration: none;
    transition: color 0.3s;
}

footer p a:hover {
    color: #fff;
}
