/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #002244; /* Navy Blue */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #A30000; /* Maroon */
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-color: #002244; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #A30000; /* Maroon */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d16b6b;
}

/* Key Services Section */
.key-services {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.key-services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #002244; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .service-boxes {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .service-item {
        width: 100%;
    }
}

/* Services Section */
#services-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
}

h1 {
    color: #002f6c; /* Navy blue */
}

h2 {
    color: #b14b33; /* Maroon */
    margin-top: 20px;
}

.service-item {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Footer for Static Positioning */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #002f6c; /* Navy blue */
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}
/* Existing styles */

/* New or updated styles below */

/* Section heading for the services page */
#services-section .section-heading h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#services-section .section-heading p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Individual service item styles */
.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Service headings */
.service-item h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.service-item ul {
    list-style-type: none;
    padding-left: 0;
}

.service-item ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.service-item ul li::before {
    content: "\2022"; /* Bullet */
    color: #007bff; /* Custom bullet color */
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    #services-section .section-heading h1 {
        font-size: 2rem;
    }

    .service-item h2 {
        font-size: 1.5rem;
    }
}

/* Service Cards */
.what-we-offer-section .card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.what-we-offer-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section .btn-outline-light {
  border-color: white;
  color: white;
}

.cta-section .btn-outline-light:hover {
  background-color: white;
  color: #001F3F;
}
