/* styles.css */



/* General Styles */
body {
    font-family: 'Arial', sans-serif; /* Consider using Google Fonts for better typography */
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background */
}

/* Header */
header {
    background: #50b3a2; /* Main color */
    color: white;
    padding: 20px 0; /* Increased padding */
    border-bottom: #e8491d 3px solid; /* Orange border */
}

#branding img {
    max-width: 150px; /* Set maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and title */
    vertical-align: middle; /* Align logo with text */
}

/* Navigation */
header nav a {
    color: #ffffff; /* White text for links */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s; /* Smooth color transition */
}

header nav a:hover {
    color: #e8491d; /* Change color on hover to orange */
}

/* Main Section Styles */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h2, h3, h4 {
    text-align: center; /* Center align all headings */
    color: #50b3a2; /* Main color for headings */
    margin-top: 20px; /* Space above headings */
}

.about-content, .services-grid, .pricing-grid {
    background-color: #ffffff; /* White background for content */
    padding: 20px; /* Padding for content */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 20px; /* Space below the content */
}

.service-card, .pricing-card {
    background: #f9f9f9; /* Light background for cards */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Padding inside cards */
    margin: 10px; /* Space between cards */
    transition: transform 0.3s; /* Smooth transform on hover */
}

.service-card:hover, .pricing-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section .button {
    background: #e8491d; /* Button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s; /* Smooth background transition */
}

.cta-section .button:hover {
    background: #d7371a; /* Darker shade on hover */
}

/* Footer */
footer {
    background: #50b3a2; /* Same as header */
    color: white;
    text-align: center;
    padding: 20px 0; /* Increased padding */
}

footer nav ul {
    padding: 0;
    list-style: none;
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center; /* Center the footer links */
}

footer nav ul li {
    margin: 0 15px; /* Space between footer links */
}

footer nav ul li a {
    color: white; /* White text for footer links */
    text-decoration: none; /* No underline */
    transition: color 0.3s; /* Smooth color transition */
}

footer nav ul li a:hover {
    color: #e8491d; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column; /* Stack items on smaller screens */
    }
    .contact-container {
        flex-direction: column; /* Stack contact info and form */
    }
}

/* Center align the navigation menu */
nav ul {
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: center; /* Center the menu items */
    padding: 0; /* Remove default padding */
    list-style: none; /* Remove bullet points */
}

/* Service and Pricing Grid Styles */
.services-grid, .pricing-grid {
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: center; /* Center the cards */
    flex-wrap: wrap; /* Allow wrapping to the next line if necessary */
    margin: 20px 0; /* Space above and below the grid */
}

.service-card, .pricing-card {
    flex: 1 1 200px; /* Allow cards to grow and shrink, with a minimum width */
    margin: 10px; /* Space between cards */
    max-width: 300px; /* Set a maximum width for cards */
}

/* Optional: Add a transition effect for cards */
.service-card, .pricing-card {
    transition: transform 0.3s; /* Smooth transform on hover */
}

.service-card:hover, .pricing-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Navigation Menu Styles */
header nav ul {
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: center; /* Center the menu items */
    padding: 0; /* Remove default padding */
    list-style: none; /* Remove bullet points */
}

header nav ul li {
    margin: 0 20px; /* Space between menu items */
}

header nav ul li a {
    font-weight: bold; /* Make the menu items bold */
    color: #ffffff; /* White text for links */
    text-decoration: none; /* No underline */
    text-transform: uppercase; /* Uppercase letters */
    transition: color 0.3s; /* Smooth color transition */
}

header nav ul li a:hover {
    color: #e8491d; /* Change color on hover to orange */
}

/* Pricing Section Styles */
#pricing {
    background-color: #ffffff; /* White background for the pricing section */
    padding: 40px 20px; /* Padding for the section */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px 0; /* Space above and below the section */
}

/* Highlight Box Styles */
.highlight-box {
    background-color: #f9f9f9; /* Light gray background for highlight boxes */
    border-left: 5px solid #e8491d; /* Orange left border */
    padding: 15px; /* Padding inside highlight boxes */
    margin: 20px 0; /* Space above and below highlight boxes */
    border-radius: 5px; /* Rounded corners */
}

/* Pricing Card Styles */
.pricing-card {
    background: #f4f4f4; /* Light background for pricing cards */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside cards */
    margin: 10px; /* Space between cards */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transform and shadow on hover */
    text-align: center; /* Center align text in cards */
}

.pricing-card:hover {
    transform: translateY(-5px); /* Slightly lift the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Price Styles */
.price {
    font-size: 24px; /* Larger font size for prices */
    color: #e8491d; /* Orange color for prices */
    font-weight: bold; /* Bold text for prices */
}

/* Call to Action Styles */
.cta-section {
    background-color: #50b3a2; /* Main color for CTA section */
    color: white; /* White text */
    padding: 20px; /* Padding for CTA section */
    border-radius: 10px; /* Rounded corners */
    margin-top: 40px; /* Space above CTA section */
}

.cta-section .button {
    background: #e8491d; /* Button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s; /* Smooth background transition */
}

.cta-section .button:hover {
    background: #d7371a; /* Darker shade on hover */
}
<!-- Add this CSS to your styles.css file -->
<style>
.announcement-marquee {
    background-color: #e8491d; /* Orange color from your theme */
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-top: 0;
    font-weight: bold;
}

.announcement-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

</style>