/* General Styling */
:root {
    --primary-blue: #1A2C5B; /* Deep Blue */
    --accent-silver: #A9B0B8; /* Metallic Silver/Grey */
    --vibrant-blue: #00BFFF; /* Vibrant Electric Blue (example) */
    --light-grey: #F5F5F5;
    --text-color: #333;
    --heading-color: #1A2C5B;
}

body {
    font-family: 'DM Sans', sans-serif; /* Changed from: 'Roboto', sans-serif; */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif; /* Changed from: 'Montserrat', sans-serif; */
    color: var(--heading-color);
    margin-bottom: 15px;
}

h1 {
    font-size: 3em;
    text-align: center;
    color: #fff; /* For hero section */
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.6em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    padding: 60px 0;
    text-align: center;
}

.section:nth-child(even) {
    background-color: var(--light-grey);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

.primary-btn {
    background-color: var(--vibrant-blue);
    color: #fff;
    border: 2px solid var(--vibrant-blue);
}

.primary-btn:hover {
    background-color: #0099cc; /* Slightly darker vibrant blue */
    text-decoration: none;
}

.secondary-btn {
    background-color: transparent;
    color: #fff; /* For hero section */
    border: 2px solid #fff; /* For hero section */
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(104, 112, 131, 0.6), rgba(104, 112, 131,0.6)), url('hero-background02.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Adjust as needed */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-logo {
    max-width: 200px; /* Adjust logo size */
    margin-top: 0; /* Changed: Removed top margin */
    margin-bottom: 15px; /* Changed: Halved bottom margin from 30px to 15px */
    border-radius: 15px; /* Added: Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Added: Slight shadow for elevation */
}

.hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

.hero-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section p {
    max-width: 800px;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-item h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

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

.service-item ul li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: var(--text-color);
}

/* Why Choose Us */
.why-choose-us-section .reasons-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 30px auto 0 auto;
    text-align: left;
}

.why-choose-us-section .reasons-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--vibrant-blue);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-choose-us-section .reasons-list li strong {
    color: var(--primary-blue);
}

/* Contact Section */
.contact-section .contact-info {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-section .contact-info p {
    margin: 10px 0;
}

.contact-section .contact-info a {
    color: var(--primary-blue);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 30px 20px;
    font-size: 0.9em;
    text-align: center;
}

.footer .footer-links a {
    color: #fff;
    margin: 0 10px;
}

.footer .separator {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section h2 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section h2 {
        font-size: 1.2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}