/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #F4F4F4;
    color: #333;
}

/* Header */
.header {
    background: url('../images/Header_img.jpg') no-repeat center center / cover; /* Background image */
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay for better contrast */
    z-index: -1; /* Place the overlay behind the content */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.header .logo {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow for better readability */
}

.header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .nav-links a:hover {
    color: #FF7A00; /* Highlight color for hover state */
    text-decoration: underline;
}



/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    padding: 0 20px;
    background: linear-gradient(to right, #002B5B, #005FA8);
    background-size: cover;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 30px auto; /* Centers the paragraph horizontally */
    max-width: 700px; /* Controls the width of the text block */
    line-height: 1.8;
    text-align: center; /* Centers text inside the paragraph */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center; /* Centers flex items horizontally */
    align-items: center; /* Centers flex items vertically */
}


.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-btn {
    background: #FF7A00;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* Ensures no underline on hover */
}

.cta-btn:hover {
    background: #E66A00;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #002B5B, #004080);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer p a {
    color: #FF7A00;
    text-decoration: none;
}

.footer p a:hover {
    text-decoration: underline;
}

/* General Section Styling */
section {
    padding: 50px 20px;
    text-align: center;
}

.hero {
    background-color: #003366;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .cta-btn {
    background-color: #ff9900;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .cta-btn:hover {
    background-color: #cc7a00;
}

/* About Us Page */
.about-section {
    background-color: #f9f9f9;
    color: #333333;
    padding: 50px 20px;
    text-align: left;
}

.about-section h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Services Page */
.services-section {
    background-color: #f2f2f2;
    color: #333333;
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-item {
    margin: 20px 0;
}

.service-item h3 {
    color: #ff9900;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Footer Styling */
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin: 0;
}

