﻿
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&display=swap');

/* Body Styling */
body {
    font-family: 'Raleway', sans-serif !important;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4 !important;
}

/* Header Styling */
header {
    background-color: white !important; 
    padding: 20px;
    color: white;
    text-align: center;
}

    header h1 {
        font-weight: 800; /* Raleway Extrabold */
        margin: 0;
    }

nav a {
    color: #1979CA !important;
    padding: 10px;
    text-decoration: none;
    font-weight: 600; /* Raleway Semibold */
}

    nav a:hover {
        color: #FED412 !important;
    }
a:hover{text-decoration:none !important}
/* Footer Styling */
footer {
    background-color: #1979CA !important; /* Blue */
    color: white;
    padding: 20px;
}

    footer a {
        color: #FED412 !important; /* Gold */
        text-decoration: none;
    }

        footer a:hover {
            color: #94C846 !important; /* Lime */
        }

    footer p {
        font-size: 0.9em;
        margin: 0;
    }
.bg-primary, .modal-header {
    background-color: #1979CA !important; /* Blue */
    color: white;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #1979CA !important;
    border-color: #1979CA !important;
}
    /* Buttons */
    button {
    background-color: #FED412; /* Gold */
    color: #1979CA; /* Blue */
    border: none;
    padding: 10px 20px;
    font-weight: 600; /* Raleway Semibold */
    cursor: pointer;
}

    button:hover {
        background-color: #94C846; /* Lime */
        color: white;
    }

/* General Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.fsp-number {
    font-size: 1rem;
    color: #FED412; 
    margin-top: 10px;
    font-weight: bold;
}

h2, h4,h3,h1 {
    font-weight: 600; /* Raleway Semibold */
    color: #1979CA; /* Blue */
}
.fas, .fa {
    color: #1979CA;
}
p {
    font-weight: 300; /* Raleway Light */
    line-height: 1.6;
}

/* Custom Section Styling */
.section {
    background-color: white;
    padding: 40px;
    margin-bottom: 20px;
}

.section-dark {
    background-color: #f4f4f4;
    padding: 40px;
    margin-bottom: 20px;
}

.section h2 {
    font-weight: 800; /* Raleway Extrabold */
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    header, footer {
        text-align: center;
    }

    .container {
        padding: 10px;
    }
}

/* Custom Toggler Background */
.custom-toggler {
    border-color: #FED412;
}

.custom-toggler .navbar-toggler-icon {
    background-color: transparent; /* Toggle button color */
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #FED412; /* Link color */
}

.navbar-nav .nav-link:hover {
    color: #fff; /* Optional: White color on hover */
}

/* Align Nav to the Right */
.navbar-collapse {
    justify-content: flex-end; /* Ensures the nav menu floats to the right */
}
/* Custom Toggler Background */
.custom-toggler {
    border-color: #FED412;
    background-color: transparent; /* Transparent background */
}

/* Hamburger Menu Lines */
.navbar-toggler-icon .line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: #FED412; /* Line color */
    transition: all 0.3s ease;
}

/* Optional: Change line colors on hover */
.custom-toggler:hover .line {
    background-color: white;
}
/* Service Page Custom Styling */
.service-header {
    background-color: #1979CA; /* Brand Blue */
    color: white;
    padding: 20px 0;
}

.service-title {
    font-weight: 800; /* Raleway Extrabold */
    margin-bottom: 10px;
}

.service-subtitle {
    font-weight: 400; /* Regular weight */
}

.service-benefits {
    list-style-type: none;
    padding-left: 0;
}

    .service-benefits li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .service-benefits li::before {
            content: "✔"; /* Custom checkmark */
            color: #94C846; /* Lime */
            position: absolute;
            left: 0;
            top: 0;
        }

/* Ensure images are responsive */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Custom Styling for Retirement Planning */
.service-header {
    background-color: #1979CA; /* Brand Blue */
    color: white;
    padding: 20px 0;
}

.service-title {
    font-weight: 800; /* Raleway Extrabold */
    margin-bottom: 10px;
}

.service-subtitle {
    font-weight: 400; /* Regular weight */
}

.service-benefits {
    list-style-type: none;
    padding-left: 0;
}

    .service-benefits li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .service-benefits li::before {
            content: "✔"; /* Custom checkmark */
            color: #94C846; /* Lime */
            position: absolute;
            left: 0;
            top: 0;
        }

/* Additional Tips Styling */
.retirement-tips li {
    margin-bottom: 15px;
}

    .retirement-tips li strong {
        color: #1979CA; /* Brand Blue */
    }

/* Ensure images are responsive */
.img-fluid {
    max-width: 100%;
    height: auto;
}
/* Funeral Cover Plans Styling */
.card {
    border: 1px solid #1979CA; /* Brand Blue border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-weight: 600;
    color: #1979CA; /* Brand Blue for titles */
}

.card-text {
    font-weight: 400;
}

.card-body {
    padding: 20px;
}

/* Add margin between cards on smaller screens */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}

/* Custom Button for Call to Action */
.btn-primary {
    background-color: #FED412; /* Gold */
    border: none;
    padding: 10px 20px;
    font-weight: 600; /* Raleway Semibold */
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #94C846; /* Lime */
        color: white;
    }
/* Custom Contact Us Styling */
.service-title {
    font-weight: 800; /* Raleway Extrabold */
    color: #1979CA; /* Brand Blue */
    margin-bottom: 10px;
}

.service-subtitle {
    font-weight: 400;
    color: #333;
}

.contact-info ul {
    padding-left: 0;
    list-style: none;
}

    .contact-info ul li {
        margin-bottom: 10px;
    }

.contact-info a {
    color: #1979CA;
}

    .contact-info a:hover {
        color: #FED412;
    }

/* Form Styling */
form .form-group label {
    font-weight: 600;
}

form .form-control {
    border-radius: 4px;
}

form button[type="submit"] {
    background-color: #FED412;
    border: none;
    font-weight: 600;
}

    form button[type="submit"]:hover {
        background-color: #94C846;
        color: white;
    }

/* Google Map Section */
.embed-responsive {
    margin-top: 20px;
}
/* Footer Button Styling */
.footer .btn-primary {
    background-color: #FED412; /* Brand Gold */
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

    .footer .btn-primary:hover {
        background-color: #94C846; /* Lime */
        color: white;
    }

/* Modal Styling */
.modal-header {
    background-color: #1979CA; /* Brand Blue */
    color: white;
}

.modal-footer .btn-primary {
    background-color: #FED412; /* Brand Gold */
}

    .modal-footer .btn-primary:hover {
        background-color: #94C846; /* Lime */
    }
/* Horizontal Scroll Styling */
.services-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
}

    .services-wrapper::-webkit-scrollbar {
        display: none; /* Hide default scrollbar for WebKit browsers */
    }

.services-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#services .card {
    min-width: 300px;
    max-width: 300px;
}

#services .card img {
    height: 200px;
    object-fit: cover;
}

#services .card {
    transition: transform 0.3s;
}

#services .card:hover {
    transform: scale(1.05);
}
/* Horizontal Scroll Styling */
.services-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
}

    .services-wrapper::-webkit-scrollbar {
        display: none; /* Hide default scrollbar for WebKit browsers */
    }

.services-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Buttons Styling */
.scroll-left, .scroll-right {
    position: relative;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-left {
    position: absolute;
    left: 10px;
}

.scroll-right {
    position: absolute;
    right: 10px;
}

.card {
    min-width: 300px;
}

    .card img {
        height: 200px;
        object-fit: cover;
    }
/* Horizontal Scroll Styling */
.services-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
}

    .services-wrapper::-webkit-scrollbar {
        display: none; /* Hide default scrollbar for WebKit browsers */
    }

.services-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Floating Buttons */
.scroll-left, .scroll-right {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

    .scroll-left:hover, .scroll-right:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

/* Card Icon Styling */
.card-body i {
    color: #1979CA; /* Blue color for icons */
}

.card {
    transition: transform 0.3s;
}

    .card:hover {
        transform: scale(1.05);
    }
/* General Styling */
#estate-planning h4 {
    font-weight: bold;
}

#estate-planning .lead {
    font-size: 1.25rem;
}

/* Icon Styling */
#estate-planning .fa {
    color: #1979CA;
}
.accordion .card{width:100% !important}
#estate-planning .card-header button {
    color: #1979CA;
    text-decoration: none;
}

    #estate-planning .card-header button:hover {
        color: #94C846;
    }

/* Accordion Styling */
#estate-planning .accordion .card-header {
    background-color: #F9F9F9;
    border-bottom: 1px solid #EEE;
}

#estate-planning .accordion .card-body {
    background-color: #FFF;
}

#estate-planning .btn-primary {
    background-color: #FED412;
    border-color: #FED412;
}

    #estate-planning .btn-primary:hover {
        background-color: #94C846;
        border-color: #94C846;
    }
/* General Styling */
#investment-planning h4 {
    font-weight: bold;
}

#investment-planning .lead {
    font-size: 1.25rem;
}

/* Icon Styling */
#investment-planning .fa {
    color: #1979CA;
}

#investment-planning .card-header button {
    color: #1979CA;
    text-decoration: none;
}

    #investment-planning .card-header button:hover {
        color: #94C846;
    }

/* Accordion Styling */
#investment-planning .accordion .card-header {
    background-color: #F9F9F9;
    border-bottom: 1px solid #EEE;
}

#investment-planning .accordion .card-body {
    background-color: #FFF;
}

/* Call to Action Button */
#investment-planning .btn-primary {
    background-color: #FED412;
    border-color: #FED412;
}

    #investment-planning .btn-primary:hover {
        background-color: #94C846;
        border-color: #94C846;
    }
