/* Fix Gray Outline Around Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix Missing Font Styles */
html, body {
    font-family: 'Poppins', sans-serif;
}

/* Fix Company Name Visibility */
.header-content h1 {
    font-size: 24px;
    font-weight: 600;
    color: white; /* Ensures visibility */
    margin-left: 15px;
}

/* Header */
#hero {
    background-color: #1C3D6E;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    color: white;
    width: 100%;
}

/* Header Content */
.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Logo and Company Name */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

/* Fix Company Name Visibility */
.logo-container h1 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap; /* Prevents wrapping */
}


/* Header Content */
.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Logo */
.logo {
    width: 60px;
    height: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}


/* Full-Page Background */
#background {
    background: url('background.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Dull/Faded Effect */
#background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* CTA Container - Centers the Message */
.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* CTA Section (Box) */
.cta-section {
    background: rgba(63, 91, 169, 0.95);
    padding: 50px; /* Bigger box */
    border-radius: 10px;
    text-align: center;
    max-width: 600px; /* Wider box */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Adds shadow effect */
    color: white;
}

/* Make text larger */
.cta-section h1 {
    font-size: 28px; /* Bigger heading */
    font-weight: 700;
}

.cta-section p {
    font-size: 18px; /* Bigger text */
    margin-bottom: 20px;
}


/* Increase button size */
.cta-button {
    font-size: 18px;
    padding: 14px 24px;
}


/* CTA Button with Shadow */
.cta-button {
    font-size: 18px;
    padding: 14px 24px;
    background: #1C3D6E;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Adds shadow effect */
}

/* Button Hover Effect */
.cta-button:hover {
    background: #152A4E;
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4); /* More intense shadow on hover */
}


/* About Us Section */
#about {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #1E3A8A, #142B50);
    color: white;
}

/* About Us Content */
.about-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Add Spacing Between Paragraphs */
#about p {
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Services Section */
#services {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #1E3A8A, #142B50);
    color: white;
}

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

/* Service Boxes */
.service-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: scale(1.05);
}

/* Service Titles */
.service-box h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

/* Service Description */
.service-box p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #1E3A8A, #142B50);
    color: white;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

/* Contact Page Submit Button */
button.cta-button {
    background: #1C3D6E;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button.cta-button:hover {
    background: #152A4E;
    transform: scale(1.05);
}


/* Services Section */
#services {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #1E3A8A, #142B50);
    color: white;
}

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

/* Service Tiers */
.service-tiers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Individual Tier Box */
.tier-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.tier-box:hover {
    transform: scale(1.05);
}

/* Highlight Standard Package */
.featured {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid white;
}

/* Service Tier Titles */
.tier-box h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

/* Service Tier Description */
.tier-box p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Service List */
.tier-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-box ul li {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 8px;
}

/* CTA Button */
.tier-box .cta-button {
    display: inline-block;
    background: #1C3D6E;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.tier-box .cta-button:hover {
    background: #152A4E;
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}


/* Footer */
footer {
    background-color: #1A2B5E;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    font-size: 14px;
}