body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    height: 200vh; /* Extra height to allow scrolling */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #f0f8ff 60%, #2980b9 100%);
    background-attachment: fixed;
    transition: background-color 1s ease;
}

/* Color Palette */
:root {
    --primary-color: #34495e; /* Dark Grey-Blue */
    --secondary-color: #2980b9; /* Bright Blue */
    --accent-color: #e74c3c; /* Red */
    --background-color: #ffffff; /* White */
    --text-color: #2c3e50; /* Dark Text Color */
    --light-text-color: #bdc3c7; /* Light Grey Text */
    --cta-color: #27ae60; /* Green */
    --cta-hover-color: #229954; /* Darker Green */
    --promo-color: #e74c3c; /* Promo Red */
}
header, footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 15px 0;
    text-align: center;
}
header nav, footer nav {
    margin: 10px 0;
}
header nav a, footer nav a {
    color: var(--light-text-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    transition: color 0.3s;
}
header nav a:hover, footer nav a:hover {
    color: var(--accent-color);
}
header h1, footer p {
    margin: 5px 0;
}
.top-message {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
}
section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center; /* Center content */
}
.cta-button {
    background-color: var(--cta-color);
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: var(--cta-hover-color);
}
.service-package {
    background-color: var(--background-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin: 15px 0;
    max-width: 800px; /* Limit the width of the section */
    margin: 20px auto; /* Center the section */
}
.service-package h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.service-package ul {
    list-style-type: none;
    padding: 0;
    text-align: left; /* Align text to the left for readability */
    margin: 0 auto; /* Center the list */
    max-width: 600px; /* Limit the width of the list */
}
.service-package li {
    margin: 10px 0;
    font-size: 1.1em;
}
.service-package h3 {
    color: var(--accent-color);
    margin-top: 20px;
}
.promo-section {
    background-color: var(--promo-color);
    color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 5px;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    max-width: 800px; /* Center and limit the width */
}
footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 20px;
    text-align: center;
}
footer p {
    margin: 0;
}
#why-us ul {
    list-style-type: none;
    padding: 0;
    text-align: center; /* Center the bullet points */
}
#why-us li {
    margin: 10px 0;
    font-size: 1.1em;
    display: inline-block;
    width: 100%; /* Ensures that each item takes up full width for proper centering */
}
.features {
    padding: 20px;
    text-align: left;
    background-color: var(--background-color);
    max-width: 1200px;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.features h3 {
    color: var(--secondary-color);
    margin-top: 10px;
}
.features p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Resized and Centered Images */
img.featured-image {
    width: 80%; /* Reduce image size by 20% */
    height: auto;
    display: block;
    margin: 20px auto; /* Center the images */
}

/* High-Tech Boxed Section with Moving Glow */
.boxed-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    max-width: 600px;
    margin: auto;
    text-align: center;
    margin-bottom: 20px; /* Add space below the section */
}

/* Glowing border with moving light effect */
.boxed-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 10px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, rgba(41, 128, 185, 0.5), rgba(142, 68, 173, 0.5), rgba(39, 174, 96, 0.5), rgba(41, 128, 185, 0.5));
    background-size: 300% 300%;
    animation: moveGlow 8s linear infinite;
}

.boxed-section h2 {
    color: #2980b9; /* Blue neon text */
    text-shadow: 0 0 10px rgba(41, 128, 185, 0.8);
}

.boxed-section p {
    font-size: 1.2em;
    color: #333; /* Normal text color for readability */
}

/* Animation for the glowing light effect */
@keyframes moveGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

