/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Section Styling */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Header Styling */
h1 {
    font-size: 2.5rem;
    color: #004d40;
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service Section */
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Service Content */
.service-content {
    flex: 1;
    max-width: 50%;
}

.service-content h2 {
    font-size: 2rem;
    color: #00796b;
}

.service-content ul {
    padding-left: 20px;
}

.service-content ul li {
    list-style-type: disc;
    font-size: 1rem;
    color: #444;
}

/* Service Image */
.service-image {
    flex: 1;
    max-width: 30%;
    text-align: right;
}

.service-image img {
    width: 80%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        text-align: center;
        max-width: 100%;
    }

    .service-image img {
        width: 100%;
        max-width: 200px;
        margin: auto;
    }
}
      
.navbar-toggler {
    border: none;
}

.toggler-icon {
    background-color: white;
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: 0.3s;
}
form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #005a4f;
}
#form {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Styling for h2 */
#form h2 {
    font-size: 2rem;
    color: #00796b;
    font-weight: bold;
    margin-bottom: 10px;
}
#form p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}
#form ul {
    text-align: left;
    margin: 10px auto 20px;
    padding-left: 20px;
}

#form ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    list-style-type: disc;
}
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #013220; /* Very dark green */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden by default */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: #014421;
    transform: scale(1.1);
}
