:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Roboto", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #475569;
    --heading-color: #4b4b4b;
    --accent-color: #14741b;
    --surface-color: #ffffff;
    --contrast-color: #aaffaa;
}

:root {
    --nav-color: #4b4b4b;
    --nav-hover-color: #14741b;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #4b4b4b;
    --nav-dropdown-hover-color: #14741b;
}

.light-background {
    --background-color: #fafafb;
    --surface-color: #ffffff;
}

/* .dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
} */

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
    overflow-x: hidden;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: #074570;
    font-size: 20px;
    font-family: var(--nav-font);
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    white-space: normal;     /* allow wrapping (instead of nowrap) */
    word-wrap: break-word;   /* break long words if needed */
    overflow-wrap: break-word; /* modern version of word-wrap */
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 767px) {
    a {
        color: #074570;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        white-space: nowrap;
        transition: 0.3s;
        white-space: normal;     /* allow wrapping (instead of nowrap) */
        word-wrap: break-word;   /* break long words if needed */
        overflow-wrap: break-word; /* modern version of word-wrap */
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.hamburger-icon,
.close-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    height: 88px;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    overflow-y: hidden;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    width: 200px;
    height: auto;
}

.header .btn-makeapayment,
.header .btn-seeifiqualify,
.header .btn-makeapayment:focus,
.header .btn-seeifiqualify:focus {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
}

.header .btn-makeapayment:hover,
.header .btn-seeifiqualify:hover,
.header .btn-makeapayment:focus:hover,
.header .btn-seeifiqualify:focus:hover {
    color: #ffffff;
    background: var(--accent-color);
}

@media (max-width: 1400px) {
    .header .btn-getstarted {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}
@media (max-width: 1394px) {
    .header .btn-getstarted {
        font-size: 12px;
    }
    .navmenu {
        width: 100%;
        margin-right: 10px;
    }
}

@media (max-width: 1300px) {
    .navmenu {
        width: 50%;
    }
}

@media (max-width: 1201px) {
    .navmenu {
        width: auto;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
    /* --background-color: rgba(0, 0, 0, 0); */
    overflow-y: hidden;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .navmenu li {
        position: relative;
        padding: 8px 0 8px 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #074570;
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #2980b9;
        text-decoration: underline;
    }

    .btn-getstarted {
        display: flex;
        gap: 16px;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1200px) {
    .header .btn-getstarted {
        display: none;
    }

    .header .logo img {
        width: 150px;
        height: auto;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 24px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: #074570;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), white 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: color-mix(in srgb, var(--accent-color), white 90%);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        background-color: #2980b9;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        transform: rotate(180deg);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
        position: absolute;
        inset: 60px 20px 20px 20px;
        overflow-y: auto;
        z-index: 9998;
        background-color: var(--nav-mobile-background-color);
        padding: 10px 0;
        margin: 0;
    }

    .mobile-nav-active .navmenu a,
    .mobile-nav-active .navmenu a:focus {
        display: flex;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer .footer-container {
    padding: 0;
}

.footer .footer-top-container {
    background-color: #27282d;
    padding-top: 63px;
    padding-bottom: 30px;
}

.footer .footer-top-container .footer-left {
    gap: 41px;
}

.footer .footer-top-container .footer-left .footer-image {
    max-width: 200px;
}
.footer .footer-top-container .footer-left .footer-image h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: white;
}

.footer .footer-top-container .footer-left .footer-image img {
    width: 200px;
    height: auto;
}

.footer .footer-about h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.footer .footer-about p {
    color: #d9d9d9;
    font-size: 14px;
    margin-bottom: 0;
}

.footer .footer-about .social-links .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--default-color);
    margin-right: 8px;
    transition: 0.3s;
}
.footer .footer-about .linked-link img {
    height: 36px;
    width: auto;
}

.footer nav a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 500;
    width: 120px;
    height: 25px;
    overflow-y: hidden;
}

.footer nav a:hover {
    opacity: 0.8;
}

.footer .form {
    max-width: 316px;
}

.footer .input-group .form-control {
    background-color: #f5f9fc;
    color: #495057;
    font-size: 14px;
}

.footer .input-group {
    margin-top: 9%;
}

.footer .input-group input {
    height: 40px;
    border-radius: 8px 0px 0 8px;
}

.footer .input-group .btn {
    height: 40px;
    border-color: #ffffff;
    font-size: 14px;
}

.footer .input-group .btn:hover {
    background-color: #fff;
    color: #27282d;
}

.copyright-container {
    background-color: #2e2f31;
    min-height: 72px;
}

.copyright-container p {
    color: #ced0d2;
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1200px) {
    .copyright {
        max-width: 100%;
    }
}

@media (min-width: 1000px) {
    .footer .footer-about {
        margin-bottom: auto;
        margin-top: auto;
    }
}

@media (max-width: 1000px) {
    .footer nav a {
        margin-bottom: 24px;
    }

    .footer .footer-about {
        margin-bottom: auto;
        margin-top: auto;
    }
}

@media (max-width: 768px) {
    .footer {
        display: flex;
    }

    .footer .footer-nav-subscribe {
        align-items: center;
    }

    .footer .form {
        max-width: 90%;
    }

    .footer .footer-links ul {
        justify-content: center;
        gap: 15px;
    }

    .footer .footer-newsletter {
        margin-left: auto;
        margin-right: auto;
    }

    .copyright-container p {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #000;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Mail
--------------------------------------------------------------*/
.mailto-link {
    position: relative;
}

.mailto-message {
    top: 1px;
    left: 60%;
    margin-bottom: -5px;
    transform: translate(-50%, -100%);
    position: absolute;
    display: none;
    width: auto;
    white-space: nowrap;
    font-size: 12px;
    background-color: white;
    color: black;
    padding: 2px 6px;
    border-radius: 2px;

    &:after,
    &:before {
        content: "";
    }

    &:before {
        top: 100%;
        left: 50%;
        border: solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(0, 0, 0, 0);
        border-top-color: #ffffff;
        border-width: 4px;
        margin-left: -4px;
    }
}

.mailto-link:hover .mailto-message,
.mailto-link:focus .mailto-message,
.mailto-link:focus-within .mailto-message {
    display: block;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 80px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 58px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Logo Styles
--------------------------------------------------------------*/
.logo-image {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1))
        drop-shadow(0 0 10px rgba(255, 255, 255, 1))
        drop-shadow(0 0 15px rgba(255, 255, 255, 1))
        drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    background-image: url(../images/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 88px;
    position: relative;
    color: #ffffff;
    min-height: 882px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 3033px) {
    .hero {
        min-height: 700px;
    }
}
@media (max-width: 2238px) {
    .hero {
        min-height: 650px;
    }
}
@media (max-width: 2000px) {
    .hero {
        min-height: 620px;
    }
}
@media (max-width: 1800px) {
    .hero {
        min-height: 520px;
    }
}
@media (max-width: 1600px) {
    .hero {
        min-height: 420px;
    }
}
@media (max-width: 1409px) {
    .hero {
        min-height: 350px;
    }
}
@media (max-width: 1340px) {
    .hero {
        min-height: 350px;
    }
}
@media (max-width: 1166px) {
    .hero {
        min-height: 350px;
    }
}

@media (max-width: 1000px) {
    .hero {
        min-height: 350px;
    }
}
@media (max-width: 982px) {
    .hero {
        min-height: 300px;
    }
}
@media (max-width: 892px) {
    .hero {
        min-height: 270px;
    }
}
@media (max-width: 820px) {
    .hero {
        min-height: 245px;
    }
}

.hero .hero-left .hero-image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.hero .hero-left img,
.hero .hero-right img {
    width: 100%;
    transition: all 0.3s ease;
    display: block;
}

.hero .hero-left .corner-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    max-width: 80%;
    box-sizing: border-box;
}

/* Mobile First - Default styles for smallest screens */
@media (max-width: 575.98px) {
    .hero .hero-left .corner-tag {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 10px;
        max-width: 70%;
    }

    .hero .hero-image-container:hover .corner-tag {
        font-size: 2.8vw;
        max-width: 85%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero .hero-left .corner-tag {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
        max-width: 60%;
    }

    .hero .hero-image-container:hover .corner-tag {
        font-size: 2.4vw;
        max-width: 75%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero .hero-left .corner-tag {
        font-size: 14px;
        padding: 8px 15px;
        max-width: 50%;
    }

    .hero .hero-image-container:hover .corner-tag {
        font-size: 2vw;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero .hero-left .corner-tag {
        font-size: 16px;
        padding: 10px 18px;
    }
}

.hero .hero-left .corner-tag::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.hero .hero-image-container:hover .corner-tag {
    transform: translateY(0);
    opacity: 1;
    width: auto;
    max-width: 50%;
    font-size: 1.2vw;
}

@media (max-width: 1200px) {
    .hero .hero-image-container:hover .corner-tag {
        font-size: 1.4vw;
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .hero .hero-image-container:hover .corner-tag {
        font-size: 1.8vw;
        max-width: 70%;
    }
}

@media (max-width: 576px) {
    .hero .hero-image-container:hover .corner-tag {
        font-size: 2.2vw;
        max-width: 80%;
    }
}

.hero .hero-image-container:hover img {
    transform: scale(1.03);
}

.hero .container-fluid,
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    color: var(--accent-color);
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero .subheading {
    color: #eda210;
    font-size: 28px;
}

.hero .btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    color: #ffffff;
}

.hero .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.position-absolute.top-50.end-0.translate-middle-y {
    z-index: 3;
}
.position-absolute.bottom-0.end-0.p-4 {
    z-index: 3;
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 40px;
    }

    .hero .subheading {
        font-size: 18px;
    }

    .hero .btn-primary {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 991.98px) {
    .hero .position-absolute.top-50.end-0.translate-middle-y {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        padding-right: 0;
        width: 100%;
    }

    .hero .swiper-pagination-bullet {
        margin: 0 5px;
    }

    /* About Us button */
    .hero .position-absolute.bottom-0.end-0.p-4 {
        position: static;
        justify-content: center;
        padding: 20px 15px;
        width: 100%;
        gap: 10px;
    }

    .hero .row .col-lg-6:first-child {
        /* Left column */
        margin-bottom: 20px;
    }

    .hero .row .col-lg-6.text-center {
        margin-bottom: 20px;
    }

    .hero .row .col-lg-6 img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .hero .hero-image-container img,
    .hero .hero-right img {
        max-width: 80%;
        height: auto;
    }
    .hero {
        background-image: url(../images/hero-bg-res.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 88px;
        position: relative;
        color: #ffffff;
        min-height: 906px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
}
@media (max-width: 705px) {
    .hero {
        min-height: 600px;
    }
}
@media (max-width: 685px) {
    .hero {
        min-height: 550px;
    }
}
@media (max-width: 562px) {
    .hero {
        min-height: 530px;
    }
}
@media (max-width: 476px) {
    .hero {
        min-height: 450px;
    }
}
@media (max-width: 432px) {
    .hero {
        min-height: 425px;
    }
}
@media (max-width: 375px) {
    .hero {
        min-height: 400px;
    }
}
@media (max-width: 320px) {
    .hero {
        min-height: 380px;
    }
}
@media (max-width: 286px) {
    .hero {
        min-height: 340px;
    }
}
@media (max-width: 250px) {
    .hero {
        min-height: 300px;
    }
}
@media (max-width: 200px) {
    .hero {
        min-height: 260px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-us {
    margin-top: 88px;
}

.about .content h1 {
    font-size: 32px;
}

.about .content h3 {
    color: var(--accent-color);
    font-size: 24px;
}

.about .content p {
    font-size: 18px;
}

.about .content p span {
    color: var(--accent-color);
}

.about .content h1 span {
    color: var(--accent-color);
}

.about .content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul li span {
    font-size: 18px;
}

.about .content .find-more {
    font-size: 16px;
    font-weight: 500;
}

.custom-arrow {
    margin-left: 16px;
    font-size: 1.5rem;
    font-weight: bolder;
}

@media (min-width: 1200px) {
    .about .image {
        padding-right: 40px;
    }

    .about .content {
        padding-left: 40px;
    }
}

@media (max-width: 1200px) {
    .about {
        padding: 0;
    }
    .about-container {
        max-width: 100%;
    }

    .about .image {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .about .about-container img {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
# About us group Section
--------------------------------------------------------------*/
.about-us-group .title h1 {
    font-size: 32px;
}

.about-us-item {
}

.about-us-item .image {
    text-align: center;
    height: 350px;
}

.about-us-item .image img {
    width: 100%;
}

.about-us-item .title {
}

.about-us-item .title h2 {
    text-align: center;
    font-size: 20px;
}

.about-us-item p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-us-item .image img {
        max-width: 80%;
        height: 330px;
        overflow-y: hidden;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    height: 300px;
    transition: all ease-in-out 0.3s;
    padding: 0 40px;
}

.services .service-item .icon {
    color: var(--contrast-color);
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .service-item .icon img {
    max-height: 80px;
    width: auto;
    display: block;
}

.services .service-item .title p {
    font-size: 18px;
    color: #034466;
    margin-bottom: 8px;
}

.services .service-item h2 {
    font-weight: 900;
    margin: 10px 0 15px 0;
    font-size: 48px;
    color: var(--accent-color);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .services .service-item {
        margin-bottom: 40px;
    }
}

/*--------------------------------------------------------------
# 35 Years Section
--------------------------------------------------------------*/
.call-to-action {
    background-image: url(../images/35years.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    padding: 80px 0;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.call-to-action p {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
}

.call-to-action h3,
.call-to-action p {
    text-shadow: 0 0 2px rgba(0, 0, 0, 1), 0 0 4px rgba(0, 0, 0, 1),
        0 0 6px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.8),
        0 0 14px rgba(0, 0, 0, 0.75), 0 0 16px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 0, 0, 0.3),
        0 0 26px rgba(0, 0, 0, 0.2), 0 0 28px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(0, 0, 0, 0.1);
}

.process .content .description p:first-of-type {
    color: #4d4e4f;
}

.process .content .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    border: 2px solid var(--accent-color);
}

.process .content .cta-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

.process .content .title h1 {
    font-size: 32px;
}

@media (max-width: 992px) {
    .process .image {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .process .image {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
# See if you qualify Section
--------------------------------------------------------------*/
.qualify {
    background-color: var(--accent-color);
    color: #ffffff;
    min-height: 300px;
}

.qualify .map-container {
    position: relative;
    width: 90%;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualify .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.qualify .info {
    padding-right: 32px;
}

.qualify .form {
    padding-left: 32px;
}

.qualify h2 {
    color: #aaffaa;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.qualify p {
    color: #ffffff;
    font-size: 18px;
}

.qualify form .top-form {
    margin-bottom: 24px;
}

.qualify form label {
    color: #ffffff;
    margin-bottom: 5px;
}

.qualify form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
}

.qualify form .form-control::placeholder {
    color: white;
}

.qualify form .btn-success {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 1px solid white;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 38px;
}

.qualify form .btn-success:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 991.98px) {
    .qualify {
        background-size: cover;
        background-position: bottom center;
        padding: 40px 0;
        min-height: auto;
        max-height: auto;
    }

    .qualify .form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .qualify .info {
        padding-right: 15px;
        padding-left: 15px;
    }

    .qualify form .top-form {
        margin-bottom: 0;
    }

    .qualify form .row .col-lg-6 {
        margin-bottom: 15px;
    }

    .qualify form .row .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .qualify form .btn-success {
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# Friendly neighborhood Section
--------------------------------------------------------------*/
.friendly-neighborhood {
    background-image: url(../images/friendly-neighborhood.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    padding: 80px 0 80px 0;
    position: relative;
    color: #ffffff;
    z-index: 1;
}

.friendly-neighborhood:before {
    content: "";
    background-color: rgba(33, 37, 41, 0.9);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.friendly-neighborhood .container {
    position: relative;
    z-index: 2;
}

.friendly-neighborhood p {
    color: #ffffff;
    font-size: 40px;
}

.friendly-neighborhood span {
    color: #aaffaa;
}

.friendly-neighborhood .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.friendly-neighborhood .cta-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .title h2 {
    font-size: 40px;
    font-weight: 900;
    padding: 0;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 28px;
}

.leadership .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.leadership .team-member {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 1px 1px 15.2px rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
}

.leadership .team-member img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    margin-bottom: 40px;
    display: block;
}

.leadership .team-member .content {
    padding: 0 22px;
}

.leadership .team-member h4 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100%;
}

.leadership .team-member p {
    color: var(--default-color);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .leadership .team-member {
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Community Support Section
--------------------------------------------------------------*/

.community-support .title {
    margin-bottom: 32px;
}

.community-support .title h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--heading-color);
}

.community-support .title p {
    font-size: 20px;
    color: var(--default-color);
}

.community-support .row {
    display: flex;
    flex-wrap: wrap;
}

.community-support .logo-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-support .logo-item img {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    display: block;
}

@media (min-width: 992px) {
    .community-support .row .col-lg-2 {
        flex: 0 0 calc(100% / 9);
        max-width: calc(100% / 9);
    }
}

@media (max-width: 1200px) {
    .community-support .title {
        padding: 0 10px;
    }
}

/*--------------------------------------------------------------
# Process Banner Section
--------------------------------------------------------------*/
.process-banner {
    background-image: url(../images/process-bg.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center; /* Add this */
    overflow: hidden;
    margin-top: 88px;
}

.process-banner {
    background-image: url(../images/process-bg.jpg);
    background-size: cover; /* Changed from 100% auto */
    background-repeat: no-repeat;
    background-position: center center; /* Changed to center */
    width: 100%;
    height: 60vh; /* Use viewport height instead of fixed ratio */
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 88px;
}

@media (max-width: 2000px) {
    .process-banner {
        height: 50vh;
        background-position: center 60%; /* Adjust background position for mobile */
    }
}
/* Optional: Adjust height for mobile */
@media (max-width: 1440px) {
    .process-banner {
        height: 40vh;
        background-position: center 30%; /* Adjust background position for mobile */
    }
}
/* Optional: Adjust height for mobile */
@media (max-width: 768px) {
    .process-banner {
        height: 30vh;
        background-position: center 30%; /* Adjust background position for mobile */
    }
}

.process-banner h2 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 32px;
    word-break: break-word;
}

@media (max-width: 768px) {
    .process-banner h2 {
        font-size: 32px;
        word-break: break-word;
        hyphens: auto;
    }
}

/* .process-banner .container {
    position: relative;
    z-index: 2;
}

.process-banner p {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
}

.process-banner p span {
    color: #aaffaa;
}

.process-banner p:last-child {
    font-size: 20px;
} */
/*--------------------------------------------------------------
# Process paragraph Section
--------------------------------------------------------------*/
.process-paragraph {
    padding: 0 40px 0 40px;
}

.process-paragraph p {
    font-size: 24px;
}
/*--------------------------------------------------------------
# Process group Section
--------------------------------------------------------------*/
.proccess-group {
    overflow-y: hidden;
}

.proccess-group .title p {
    font-size: 20px;
    padding-left: 38px;
    padding-right: 38px;
}

.proccess-item {
}

.proccess-item .image {
    text-align: center;
    height: 350px;
}

.proccess-item .image img {
    width: 100%;
}

.proccess-item .title {
}

.proccess-item .title h2 {
    text-align: center;
    font-size: 24px;
}

.proccess-item p {
    font-size: 20px;
}

@media (max-width: 768px) {
    .proccess-item .image img {
        max-width: 80%;
        height: 330px;
        overflow-y: hidden;
    }
}
/*--------------------------------------------------------------
# Contact Hero Section
--------------------------------------------------------------*/
.contact-hero {
    background-image: url(../images/contact-us-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 85%;
    min-height: 447px;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h2 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 32px;
}

.contact-hero p {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-hero p span {
    color: #aaffaa;
}

.contact-hero p:last-child {
    font-size: 20px;
}

@media (max-width: 768px) {
    .contact-hero h2 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-hero {
        min-height: 300px;
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
# Contact Form and Info Section
--------------------------------------------------------------*/
.contact-form-info {
    background-color: var(--background-color);
}

.contact-form-info .contact-left {
    background-color: #89afd3;
    padding: 16px;
    border-radius: 8px;
}

.contact-form-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
}

.contact-form-info .php-email-form label {
    font-size: 18px;
    font-weight: 500;
}

.contact-form-info .php-email-form .form-control,
.contact-form-info .php-email-form textarea,
.contact-form-info .php-email-form select {
    box-shadow: none;
    font-size: 16px;
    border-radius: 4px;
    border-color: #ced4da;
    padding: 12px 15px;
}

.contact-form-info .php-email-form input:focus,
.contact-form-info .php-email-form textarea:focus,
.contact-form-info .php-email-form select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
    font-size: 16px;
}

.contact-form-info .php-email-form textarea {
    resize: vertical;
}

.contact-form-info .php-email-form .text-muted.small {
    font-size: 12px;
    color: #6c757d !important;
    margin-top: 5px;
}

.contact-form-info .php-email-form .form-check {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-form-info .php-email-form .form-check-input {
    border-radius: 4px;
    border-color: #ced4da;
    margin-top: 0.25em;
}

.contact-form-info .php-email-form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.contact-form-info .php-email-form .form-check-label {
    font-size: 16px;
    color: var(--default-color);
    cursor: pointer;
}

.contact-form-info .php-email-form .form-button {
    margin-top: 38px;
}

.contact-form-info .php-email-form select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.contact-form-info .php-email-form .my-3 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.contact-form-info .php-email-form button[type="submit"] {
    background: var(--accent-color);
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.contact-form-info .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), black 20%);
}

.contact-form-info .col-lg-6 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 13px;
}

.contact-form-info .col-lg-6 p {
    font-size: 18px;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form-info .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--default-color);
    margin-right: 8px;
    transition: 0.3s;
}

.contact-right .social-links .linked-link {
    width: 90px;
    border-radius: 0%;
    color: var(--default-color);
    margin-right: 8px;
    transition: 0.3s;
}

.contact-right h1 {
    font-size: 32px;
}

.contact-form-info .social-links a:hover {
    background: #cfe3f0;
    color: #fff;
}

.contact-form-info .accent-color {
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .contact-form-info .col-lg-6:first-child {
        margin-bottom: 40px;
    }
}

.contact-form-info .contact-right h3 {
    font-size: 40px;
    font-weight: 900;
}

.contact-form-info .contact-right p {
    font-size: 18px;
}

.contact-form-info .php-email-form .form-button {
    margin-top: 38px;
}

.contact-form-info .php-email-form .form-button > div {
    width: 50%;
}

.contact-form-info
    .php-email-form
    .d-flex.align-items-center.justify-content-between
    button[type="submit"] {
    margin-top: 0;
}

@media (min-width: 992px) {
    .contact-form-info .contact-right {
        padding-left: 40px;
    }
}

/*--------------------------------------------------------------
# Contact Info Wrapper Section
--------------------------------------------------------------*/
.contact-super-hero {
    height: 570px;
    margin-top: 88px;
    padding: 0;
}

.contact-super-hero .contact-info-wrapper {
    padding: 40px 50px;
    border-radius: 8px;
    margin-top: -4%;
}

.contact-info-wrapper .info-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 26px;
    text-align: center;
    height: 100%;
    gap: 15px;
    border: 1px solid #074570;
}

.contact-info-wrapper .info-item .icon {
    min-width: 50px;
    min-height: 50px;
    background-color: #fcf2dc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-wrapper .info-item .text-start h3 {
    margin-bottom: 4px;
}

.contact-info-wrapper .info-item i {
    font-size: 22px;
    color: #eda210;
}

.contact-info-wrapper .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.contact-info-wrapper .info-item p {
    font-size: 18px;
    color: var(--default-color);
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .contact-info-wrapper .info-item p {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .contact-super-hero .contact-info-wrapper {
        margin-top: -8%;
    }

    .contact-super-hero
        .contact-info-wrapper
        .contact-info-wrapper-items
        .item-1 {
        margin-bottom: 16px;
    }

    .contact-super-hero
        .contact-info-wrapper
        .contact-info-wrapper-items
        .item-2 {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        max-width: 90%;
    }

    .contact-super-hero {
        height: 530px;
    }
}

@media (max-width: 576px) {
    .contact-super-hero .contact-info-wrapper {
        padding: 16px 20px;
    }

    .contact-super-hero {
        height: 530px;
    }

    .contact-info-wrapper .info-item {
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 26px;
        text-align: center;
        height: 100%;
        gap: 15px;
    }

    .contact-info-wrapper .info-item .icon {
        min-height: 24px;
        min-width: 24px;
        width: 24px;
        height: 24px;
        background-color: #fcf2dc;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-info-wrapper .info-item .text-start h3 {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .contact-info-wrapper .info-item i {
        font-size: 12px;
        color: #eda210;
    }

    .contact-info-wrapper .info-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--heading-color);
    }

    .contact-info-wrapper .info-item p {
        font-size: 10px;
        color: var(--default-color);
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .contact-info-wrapper .col-lg-3 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .contact-info-wrapper .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-wrapper .col-sm-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*--------------------------------------------------------------
# FAQ hero Section
--------------------------------------------------------------*/
.faq-hero {
    background-image: url(../images/faq-page.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 530px;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 88px;
}
.tax-hero {
    background-image: url(../images/tax-calendar.jpg);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center 0%;
}

.faq-hero:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h2 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 32px;
}

.faq-hero p {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
}

.faq-hero p span {
    color: #aaffaa;
}

.faq-hero p:last-child {
    font-size: 20px;
}

.faq-hero .calendar-buttons a {
    color: #ffffff;
    border-color: #ffffff;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.faq-hero .calendar-buttons a:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .faq-hero h2 {
        font-size: 32px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-hero {
        min-height: 300px;
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
# FAQ Items
--------------------------------------------------------------*/
.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* FAQ Table of Contents */
.faq-toc {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid #074570;
}

.faq-toc h3 {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-item {
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
    line-height: 1.5;
}

.toc-item:hover {
    color: var(--accent-color);
    background-color: rgba(20, 116, 27, 0.05);
    padding-left: 16px;
}

/* Add smooth scrolling to all elements with IDs */
[id] {
    scroll-margin-top: 100px; /* Adjust this value based on your header height */
}

/* Highlight the current section in TOC when scrolling */
.toc-item.active {
    color: var(--accent-color);
    font-weight: 500;
    background-color: rgba(20, 116, 27, 0.1);
    border-left: 3px solid var(--accent-color);
    padding-left: 16px;
}

.faq-number {
    background: #e68e07;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    border: 2px solid #ffffff;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    padding-top: 4px;
}

.faq-question h5 {
    color: #2c3e50;
}

.faq-answer {
    padding-left: 56px;
    margin-top: 8px;
}

.faq-answer p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0 20px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin-bottom: 12px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer li strong {
    color: #074570;
    font-weight: 600;
}

.faq-answer a {
    color: #074570;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #2980b9;
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .faq-question {
        gap: 16px;
    }

    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer {
        padding-left: 48px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Registration Section
--------------------------------------------------------------*/
.register {
    background-color: #1a202c;
    color: #ffffff;
    padding: 100px 0;
    background-image: url(../images/contact-us-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 30% center;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 800px;
    margin-top: 88px;
}

.register:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.register .container {
    position: relative;
    z-index: 2;
}

.register h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.register hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
    margin-bottom: 20px;
}

.register form label {
    color: #ffffff;
    margin-bottom: 8px;
}

.register form .form-control,
.register form textarea {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 4px;
    box-shadow: none;
}

.register form .form-control::placeholder,
.register form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.register form .form-control:focus,
.register form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}

.register form textarea {
    resize: vertical;
}

.register form .form-check {
    margin-top: 20px;
}

.register form .form-check-input {
    border-radius: 4px;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0.25em;
}

.register form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.register form .form-check-label {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.register form .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

.register form .btn-success {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.register form .btn-success:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.register-form {
    padding-left: 40px;
    padding-right: 40px;
}

.register-form .form-left {
    padding-right: 40px;
}

.register-form .form-right {
    padding-left: 40px;
}

.term {
    padding-right: 52px;
}

.check-term {
    padding-right: 10px;
}

.captcha-submit {
    padding-left: 40px;
}

@media (max-width: 768px) {
    .term {
        padding: 0;
    }

    .captcha-submit {
        padding-left: 0;
    }

    .register form .btn-success,
    .register form .g-recaptcha {
        width: 100%;
    }

    .register h4 {
        font-size: 18px;
    }

    .register form .form-check-label {
        font-size: 12px;
    }

    .register form .btn-success {
        padding: 10px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .register form .align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .register form .align-items-center > .form-group:last-child {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {
    .register-form .form-left {
        padding-right: 0;
    }

    .register-form .form-right {
        padding-left: 0;
        padding-right: 10px;
    }

    .captcha-submit {
        flex-direction: column;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Events Section (Tax Calendar)
--------------------------------------------------------------*/
.events {
    background-color: #ffffff;
    /* White background as seen in the image */
    padding: 60px 0;
    /* Adjust padding as needed */
}

.events .events-title {
    font-size: 24px;
    /* Adjust font size */
    font-weight: 700;
    /* Adjust font weight */
    color: var(--heading-color);
    margin-bottom: 30px;
    /* Space below the title */
}

.events .event-list {
    margin-bottom: 30px;
    /* Space below the list */
}

.events .event-item {
    background-color: #ffffff;
    /* White background for items */
    border: 1px solid #e0e0e0;
    /* Light grey border */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    padding: 20px;
    /* Inner padding */
    display: flex;
    align-items: center;
    /* Vertically align content */
    margin-bottom: 15px;
    /* Space between items */
}

.events .event-item .event-icon {
    min-width: 40px;
    /* Fixed width for icon container */
    height: 40px;
    /* Fixed height for icon container */
    background-color: #e8f5e9;
    /* Light green background for icon */
    border-radius: 50%;
    /* Circular icon background */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    /* Space between icon and text */
}

.events .event-item .event-icon i {
    font-size: 20px;
    /* Icon size */
    color: var(--accent-color);
    /* Accent color for icon */
}

.events .event-item .event-content {
    flex-grow: 1;
    /* Allow content to take remaining space */
}

.events .event-item .event-content .d-flex {
    margin-bottom: 5px;
    /* Space between title/date and description */
}

.events .event-item .event-content .event-title {
    font-size: 18px;
    /* Title font size */
    font-weight: 600;
    /* Title font weight */
    color: var(--heading-color);
    margin-bottom: 0;
}

.events .event-item .event-content .event-date {
    font-size: 16px;
    /* Date font size */
    font-weight: 600;
    /* Date font weight */
    color: var(--accent-color);
    /* Accent color for date */
    flex-shrink: 0;
    /* Prevent date from shrinking */
    margin-left: 10px;
    /* Space between title and date */
}

.events .event-item .event-content .event-description {
    font-size: 14px;
    /* Description font size */
    color: var(--default-color);
    line-height: 1.5;
    /* Adjust line height */
    margin-bottom: 10px;
    /* Space below description */
}

.events .event-item .event-content .view-more {
    font-size: 14px;
    /* View More font size */
    color: var(--default-color);
    /* Default color for link */
    text-decoration: none;
    /* No underline */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.events .event-item .event-content .view-more i {
    margin-left: 5px;
    /* Space between text and arrow */
    font-size: 12px;
    /* Arrow icon size */
    transition: margin-left 0.3s ease;
    /* Smooth transition for hover effect */
}

.events .event-item .event-content .view-more:hover {
    color: var(--accent-color);
    /* Accent color on hover */
}

.events .event-item .event-content .view-more:hover i {
    margin-left: 10px;
    /* Move arrow on hover */
}

@media (max-width: 768px) {
    .events .events-title {
        font-size: 20px;
    }

    .events .event-item {
        padding: 15px;
    }

    .events .event-item .event-icon {
        min-width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .events .event-item .event-icon i {
        font-size: 16px;
    }

    .events .event-item .event-content .event-title {
        font-size: 16px;
    }

    .events .event-item .event-content .event-date {
        font-size: 14px;
    }

    .events .event-item .event-content .event-description {
        font-size: 12px;
    }

    .events .event-item .event-content .view-more {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Thanks hero Section
--------------------------------------------------------------*/
.thanks-hero {
    background-image: url(../images/contact-us-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0%;

    min-height: 550px;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 88px;
}

.thanks-hero:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.thanks-hero .container {
    position: relative;
    z-index: 2;
}

.thanks-hero h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 40px;
}

.thanks-hero img {
    margin-bottom: 18px;
}

.thanks-hero p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 40px;
}

.thanks-hero p:last-child {
    font-size: 20px;
}

@media (max-width: 768px) {
    .thanks-hero h2 {
        font-size: 32px;
    }

    .thanks-hero p {
        font-size: 16px;
    }

    .thanks-hero {
        min-height: 300px;
        padding: 60px 0;
    }
}

.thanks-hero .calendar-buttons .btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 0 10px;
}

.thanks-hero .calendar-buttons .btn-outline-secondary {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.thanks-hero .calendar-buttons .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 576px) {
    .thanks-hero .calendar-buttons .btn {
        margin: 5px 0;
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login {
    background-color: #1a202c;
    color: #ffffff;
    background-image: url(../images/contact-us-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    padding: 80px 0;
    margin-top: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
}

.login:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.login .container {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.login .container .login-container {
    width: 100%;
}

.login .login-form-container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.login h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.login form label {
    color: #cccccc;
    margin-bottom: 5px;
    font-weight: 400;
}

.login form .form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: none;
}

.login form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
    background-color: rgba(50, 51, 56, 1);
}

/*--------------------------------------------------------------
# Video Gallery Section
--------------------------------------------------------------*/
.video-gallery {
    background-color: rgba(215, 233, 216, 0.5);
}

.video-item {
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 24px;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

.youtube-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.video-item:hover .youtube-play-button {
    background-color: #f00;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-item:hover .youtube-play-icon {
    transform: scale(1.1);
}

.video-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.video-modal .modal-content {
    border: none;
    border-radius: 0;
    background: transparent;
}

.video-modal .modal-body {
    padding: 0;
}

.video-modal .ratio {
    --bs-aspect-ratio: 56.25%;
}

.login form .btn-success {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.login form .btn-success:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 768px) {
    .login .login-form-container {
        padding: 20px;
    }

    .login h3 {
        font-size: 22px;
    }

    .login form label {
        font-size: 14px;
    }

    .login form .form-control {
        padding: 10px;
    }

    .login form .btn-success {
        padding: 10px 30px;
        font-size: 16px;
    }
}

.trp-auth-form {
    margin-top: 33px;
}

.bullet-link::before {
  content: "•";   /* adds bullet before text */
  font-weight: bold;
  margin-right: 8px;
  text-decoration: none;
}
