 /* General Styles */
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    font-size: larger;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background:#00263b;
    color: #fff;
    padding: 10px 0;
     width: 100%;
    position: fixed; /* Fix the header at the top */
    top: 0; /* Align the header to the top */
    left: 0; /* Align the header to the left */
    z-index: 1000; /* Ensure the header stays above other content */
}
}

header h1 {
    color: #ecf0f1;
    display: inline;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

header ul li {
    margin-left: 2rem;
}

header ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
}

/* Introduction Section */
#intro {
    background: url('image/services.jpeg') no-repeat center center/cover;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

#intro h2 {
    font-size: 2.5rem;
    color: yellow;
}

#intro p {
    font-size: 1.2rem;
    color: yellow;
}

/* Services Section */
#products-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(168, 2, 2, 0.1);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #040404;
}

.service-card p {
    font-size: 1rem;
    color: #00263b;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.service-card ul li {
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (min-width: 1024px) {
    #products-services {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    }
}

@media (max-width: 768px) {
    header ul {
        flex-direction: column;
        text-align: center;
    }

    #intro h2 {
        font-size: 2rem;
    }

    #products-services {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusts grid for smaller screens */
        padding: 1rem;
    }
}
/* General Button Styles */
button {
    background-color: #007bff; /* Primary Blue Color */
    color: #fff; /* White Text */
    padding: 10px 20px; /* Space inside button */
    font-size: 16px; /* Button text size */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Mouse pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

/* Hover Effect */
button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Active Button Effect */
button:active {
    background-color: #004494; /* Even darker blue on click */
    transform: translateY(1px); /* Slight press effect */
}

/* Focus State */
button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px 2px rgba(0, 123, 255, 0.5); /* Blue glow when focused */
}

/* Button inside .service-card - Extra margin for spacing */
.service-card button {
    margin-top: 15px;
    display: inline-block;
}

/* Responsive Design - For Mobile */
@media (max-width: 768px) {
    button {
        width: 100%; /* Full width for smaller screens */
        padding: 12px 0;
    }
}
