/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #1f1f1f;
    padding: 15px 0;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo {
    font-size: 1.8rem;
    color: #fff;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center; /* Ensure vertical alignment */
}

.navbar .nav-links li {
    margin-left: 20px;
    position: relative; /* Required for positioning the dropdown */
}

.navbar .nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #ff6347; /* Tomato red color on hover */
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(to bottom right, #2c3e50, #34495e);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero .hero-content p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #ff6347;
    padding: 12px 30px;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block; /* Ensure button maintains its block-level display */
}

.hero .btn:hover {
    background-color: #e04e36;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #2a2a2a; /* Slightly lighter gray for about section */
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    margin-right: 30px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff; /* Ensure About text heading is white */
}

.about-text p {
    font-size: 1.1rem;
    color: #e0e0e0; /* Lighter color for body text */
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    color: #ddd;
    font-size: 1rem;
    margin: 5px 0;
}


/* Current Services Section */
.current-services {
    padding: 50px 20px;
    background-color: #2a2a2a; /* Slightly lighter gray for current services */
}

.current-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.current-services h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-item {
    flex: 1 1 calc(33% - 20px);
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column; /* Ensures proper alignment of content */
    text-decoration: none;
}

.service-item h4 {
    font-size: 1.8rem;
    color: #ff6347; /* Accent color for service titles */
    margin-bottom: 10px;
    text-decoration: none;
}

.service-item p {
    font-size: 1rem;
    color: #ddd;
    text-decoration: none;
}

.service-item:hover {
    background-color: #333;
}

/* Ensure the link doesn't have underline or any default link styling */
.service-item-link {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit the text color from the service-item */
    width: 100%; /* Ensure link takes up the whole box */
}

/* Future Services Section */
.future-services {
    padding: 50px 20px;
    background-color: #232323; /* Slightly lighter background for future services */
}

.future-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.future-services h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.future-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.future-service-item {
    flex: 1 1 calc(33% - 20px);
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.future-service-item h4 {
    font-size: 1.8rem;
    color: #ff6347; /* Accent color for future service titles */
    margin-bottom: 10px;
}

.future-service-item p {
    font-size: 1rem;
    color: #ddd;
}

.future-service-item:hover {
    background-color: #333;
}

/* Service Detail Section */
.service-detail {
    padding: 40px 0;
    background-color: #181818;
}

.service-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-info {
    padding: 20px;
}

.service-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-info .service-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.service-info .service-features {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.service-info .service-features ul {
    list-style-type: none;
}

.service-info .service-features ul li {
    margin-bottom: 10px;
}

.service-info .service-features strong {
    color: #ff6347; /* Tomato red color for key features */
}

.service-image img {
    max-width: 500px;
    border-radius: 10px;
}

/* Contact Form Section */
.contact-form {
    padding: 50px 20px;
    background-color: #2a2a2a; /* Slightly lighter gray for contact section */
}

.contact-form .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.contact-form button {
    background-color: #ff6347;
    padding: 12px 30px;
    font-size: 1.1rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e04e36;
}

/* Contact Details Section */
.contact-details {
    padding: 50px 20px;
    background-color: #232323; /* Slightly lighter background */
}

.contact-details .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-details h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-details strong {
    color: #ff6347; /* Accent color for labels */
}


/* Footer */
.footer {
    background-color: #1f1f1f;
    padding: 15px 0;
    text-align: center;
    color: #e0e0e0;
}

.footer p {
    font-size: 1rem;
}

.footer a {
  color: inherit;        /* Makes the link use the same color as the surrounding text */
}
