/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #3d3434;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

header:hover {
    background: #3d3434;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #ff9800;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
    /* color: white; */
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

#hero button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

#hero button:hover {
    background: #e68900;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 40px;
    text-align: center;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-in-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Services */
.service {
    background: #3d3434;
    color: white;
    padding: 15px;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

#services ul {
    list-style-type: none;
    padding-left: 0;
}

#services ul li {
    display: flex; /* Align items in a row */
    align-items: center; /* Vertically align items */
    gap: 10px; /* Add space between "+" and text */
}

#services ul li::before {
    content: "+ ";
    font-weight: bold;
    color: white; /* Adjust color as needed */
    margin-right: 5px;
}

.service:hover {
    transform: scale(1.1);
}

/* Pricing */
.pricing-plan {
    background: #f8f8f8;
    padding: 20px;
    margin: 20px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.pricing-plan:hover {
    transform: scale(1.05);
}

/* Contact Form */
/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out;
    font-size: 16px;
    background: white;
    appearance: none; /* Removes default styling */
    box-sizing: border-box; /* Ensures same width calculation */
}

/* Ensure select dropdown matches input field width */
select {
    height: 40px; /* Match input field height */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none;
    appearance: none;
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="gray"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') 
    no-repeat right 10px center;
    background-size: 15px;
    cursor: pointer;
}

/* Focus effect */
input:focus, textarea:focus, select:focus {
    border-color: #3d3434;
    outline: none;
}

/* Style the button */
button {
    background: #3d3434;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #3d3434;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #3d3434;
    color: white;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}
