/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: #014aab;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-logo {
    max-width: 100px;
    margin: 0 auto 15px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.header p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #d9e6f2;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fade {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Caption */
.caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    max-width: 80%;
    animation: fadeIn 1s ease-in-out;
}

/* Navigation Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Pagination Dots */
.dot-container {
    text-align: center;
    margin: 15px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #00509e;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    font-size: 1rem;
    background: #00509e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background: #003f7f;
}

/* Blog Cards */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: left;
    transition: transform 2s ease, box-shadow 2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card h2 {
    color: #00509e;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-card p, .blog-card ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #555; /* Mid Gray Text */
}
.blog-card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.cta-button {
    display: inline-block;
    background: #e76f51; /* Coral Red Button */
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d35449; /* Darker Coral */
}

.quote-tool {
    background: #264653; /* Deep Blue Background */
    color: #f4f4f9;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

/* Footer */
.footer {
    background: #003f7f;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
}
.footer .social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.footer .social-media a:hover {
    color: #ffc107;
}
.contact-info a {
    color: white; /* Set text color to white */
    text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
    color: #ffc107; /* Optional: Change color to gold on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .caption {
        font-size: 0.8rem;
    }

    .prev,
    .next {
        font-size: 1.2rem;
        padding: 8px;
    }

    .blog-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.2rem;
    }
    .header p {
        font-size: 1rem;


    .caption {
        font-size: 0.7rem;
        padding: 8px 15px;
    }

    .prev,
    .next {
        font-size: 1rem;
        padding: 6px;
    }

    .blog-card {
        max-width: 100%;
    }
    .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}





