/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation */
header {
    background-color: #1a1a1a;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 22px;
    color: white;
    font-weight: bold;
}

.phone-number {
    font-size: 20px;
    color: #f39c12;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
}

/* Hero Section */
#hero {
    background: url('images/screens.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-phone {
    font-size: 28px;
    font-weight: bold;
    color: #f39c12;
    margin-top: 10px;
}

.hero-content {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.cta-button {
    background-color: #f39c12;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #d4860c;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

.about-phone,
.contact-phone,
.footer-phone {
    font-size: 22px;
    font-weight: bold;
    color: #f39c12;
    margin-top: 10px;
}

/* Service Section Styling */
.service {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 750px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Optimized Service Images - Full Visibility */
.service img {
    width: 100%; /* Ensures full width inside the container */
    height: auto; /* Maintains aspect ratio without cropping */
    max-height: 250px; /* Adjust height limit to allow better display */
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: contain; /* Ensures the full image is visible without cropping */
}

/* Call-to-Action Buttons */
.cta-text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

.cta-phone {
    font-size: 22px;
    font-weight: bold;
    color: #f39c12;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
}
