/* ===================================
   Anti-Fraud Agency - Custom Styles
   ===================================*/

/* Root Variables */
:root {
    --primary-color: #0f4caa;
    --primary-hover: #0c3d8a;
    --secondary-color: #333130;
    --background-light: #fff3f2;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #6c757d;
    --border-color: #ddd;
    --transition-speed: 0.3s;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Navigation */
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 991px) {
    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
        gap: 0.5rem;
    }
}

.phone-icon {
    width: 30px;
    height: 30px;
    color: #333;
}

.get-started-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 0.8rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 200px;
    transition: background var(--transition-speed) ease;
    text-align: center;
    font-weight: 700;
}

.get-started-btn:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 767px) {
    .get-started-btn {
        width: 100%;
    }
}

/* Hero Section - Homepage */
.hero-section {
    padding: 4rem 0;
}

.hero-content {
    text-align: left;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.95rem 2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition-speed) ease;
    font-weight: 700;
}

.cta-button:hover {
    background-color: var(--primary-hover);
}

.hero-image-container {
    text-align: right;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .hero-content {
        text-align: left;
        margin-bottom: 2rem;
    }

    .hero-image-container {
        text-align: center;
    }
}

/* Services Section */
.services-container {
    padding: 100px 0;
}

.section-title {
    font-size: 0.9rem;
}

.services-heading {
    font-size: 2.5rem;
}

.services-button {
    border-radius: 0;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1rem;
}

.services-description {
    font-size: 1rem;
    line-height: 1.6;
}

.service-card {
    padding: 1rem;
    transition: all var(--transition-speed) ease;
}

.service-card:hover {
    border-radius: 10px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.service-icon {
    width: 55px;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Recovery Plan Section */
.recovery-plan-container {
    padding: 0 0 50px;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.greeting {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recovery-title {
    font-size: 2.3rem;
    font-weight: 700;
    padding: 10px 0;
    line-height: 1.2;
}

.recovery-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Company Section */
.company-container {
    padding: 50px 0;
}

.company-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.company-title {
    font-size: 2.5rem;
    font-weight: 700;
    padding: 10px 0;
    line-height: 1.2;
}

.company-description {
    font-size: 0.875rem;
    margin: 10px 0 20px;
    line-height: 1.5;
}

.company-button {
    border-radius: 0;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.company-button:hover {
    background-color: var(--primary-hover);
}

/* Custom Accordion */
.custom-accordion {
    width: 100%;
    margin-top: 20px;
}

.accordion-item-custom {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.accordion-header-custom:hover {
    background-color: #f1f1f1;
}

.accordion-number {
    font-weight: 700;
    margin-right: 10px;
}

.accordion-title {
    flex-grow: 1;
    text-align: center;
}

.accordion-icon {
    font-size: 18px;
    transition: transform var(--transition-speed) ease;
}

.accordion-body-custom {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
    font-size: 14px;
}

.accordion-body-custom p {
    margin: 0;
    padding: 15px 0;
}

.accordion-item-custom.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item-custom.open .accordion-body-custom {
    max-height: 200px;
    padding: 0 15px 15px;
}

/* Testimonials / Reviews Section */
.testimonial-section {
    padding: 60px 0;
}

.testimonial-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: left;
}

.testimonial-author {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 15px;
    font-weight: 700;
}

/* Sponsors Section */
.sponsor-section {
    padding: 2rem 0;
    text-align: center;
}

.sponsor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.sponsor-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 150px;
    max-width: 200px;
}

.sponsor-image {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease-in-out, transform 0.2s ease-in-out;
}

.sponsor-image:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Blog Card / Carousel */
.blog-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
}

.blog-card {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin-right: 20px;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.nav-button:first-of-type {
    left: 10px;
}

.nav-button:last-of-type {
    right: 10px;
}

/* Service Detail Pages */
.service-detail-container {
    padding: 50px 0 0;
}

.service-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
    padding: 0;
}

.service-hero-row {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.service-image-column {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.service-info-column {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0;
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-company-info {
    text-align: left;
    max-width: 80%;
}

.service-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Other Services Grid */
.other-services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.other-service-card {
    background-color: var(--background-light);
    padding: 20px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.333% - 40px);
    transition: transform var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
}

.other-service-card:hover {
    transform: translateY(-5px);
}

.other-service-title {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-decoration: underline;
    color: var(--primary-color);
    font-weight: 700;
}

.other-service-description {
    font-size: 13px;
    color: #000;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Get In Touch Section */
.get-in-touch-container {
    padding: 50px 0 0;
}

.get-in-touch-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.get-in-touch-row {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.get-in-touch-image {
    background-image: url('../img/getintouch.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.get-in-touch-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0;
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-in-touch-content {
    text-align: left;
    max-width: 80%;
}

.get-in-touch-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.get-in-touch-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.get-in-touch-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Be Part Section */
.be-part-container {
    padding: 50px 0;
}

.be-part-heading {
    font-size: 2.5rem;
}

.be-part-button {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    font-size: 1.25rem;
}

.be-part-rating {
    margin-top: 20px;
}

.rating-value {
    font-size: 2rem;
}

.star-icon {
    color: var(--primary-color);
    font-size: 2rem;
}

.rating-text {
    font-size: 2rem;
}

.rating-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Be Part 2 - Image Columns */
.be-part2-column {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    transition: all 0.5s ease;
}

.be-part2-column::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 44, 68, 0.8);
    transition: top 0.5s ease;
}

.be-part2-column:hover::before {
    top: 0;
}

.be-part2-column:hover {
    transform: scale(1);
}

.be-part2-column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    z-index: -1;
    transition: transform 0.5s ease;
}

.be-part2-column:hover::after {
    transform: scale(1.1);
}

.be-part2-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: left;
    width: 100%;
    transition: transform 0.5s ease;
}

.be-part2-column:hover .be-part2-content {
    transform: translateY(-10px);
}

.be-part2-arrow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.5s ease;
    color: #fff;
}

.be-part2-column:hover .be-part2-arrow {
    bottom: 10px;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .hero-title,
    .services-heading,
    .recovery-title,
    .company-title,
    .service-title,
    .get-in-touch-title,
    .be-part-heading {
        font-size: 2rem;
    }

    .service-hero,
    .get-in-touch-hero {
        height: auto;
        padding: 2rem 0;
    }

    .service-hero-row,
    .get-in-touch-row {
        flex-direction: column;
    }

    .service-image-column,
    .service-info-column,
    .get-in-touch-image,
    .get-in-touch-info {
        position: relative;
        width: 100%;
        height: auto;
    }

    .service-image-column {
        height: 300px;
    }

    .get-in-touch-image {
        height: 300px;
    }

    .service-company-info,
    .get-in-touch-content {
        max-width: 100%;
    }

    .other-service-card {
        flex-basis: calc(50% - 40px);
    }

    .blog-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {

    .hero-title,
    .recovery-title,
    .company-title,
    .service-title,
    .get-in-touch-title,
    .be-part-heading {
        font-size: 1.5rem;
    }

    .other-service-card {
        flex: 1 1 100%;
    }

    .blog-card {
        width: 100%;
    }
}

/* Fonts */
@font-face {
    font-family: Geist Mono;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/9610d9e46709d722-s.woff2) format("woff2");
    unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Geist Mono;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/747892c23ea88013-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Geist Mono;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/93f479601ee12b01-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Geist Mono Fallback;
    src: local("Arial");
    ascent-override: 74.67%;
    descent-override: 21.92%;
    line-gap-override: 0.00%;
    size-adjust: 134.59%
}

.__className_9a8899 {
    font-family: Geist Mono, Geist Mono Fallback;
    font-style: normal
}

.__variable_9a8899 {
    --font-geist-mono: "Geist Mono", "Geist Mono Fallback"
}

@font-face {
    font-family: Geist;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/8d697b304b401681-s.woff2) format("woff2");
    unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Geist;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/ba015fad6dcf6784-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Geist;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/569ce4b8f30dc480-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Geist Fallback;
    src: local("Arial");
    ascent-override: 95.94%;
    descent-override: 28.16%;
    line-gap-override: 0.00%;
    size-adjust: 104.76%
}

.__className_5cfdac {
    font-family: Geist, Geist Fallback;
    font-style: normal
}

.__variable_5cfdac {
    --font-geist-sans: "Geist", "Geist Fallback"
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/034d78ad42e9620c-s.woff2) format("woff2");
    unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/fe0777f1195381cb-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/eafabf029ad39a43-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/db911767852bc875-s.woff2) format("woff2");
    unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/f10b8e9d91f3edcb-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/8888a3826f4a3af4-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/29e7bbdce9332268-s.woff2) format("woff2");
    unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/c3bc380753a8436c-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/0484562807a97172-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/29a4aea02fdee119-s.woff2) format("woff2");
    unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/a1386beebedccca4-s.woff2) format("woff2");
    unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/b957ea75a84b6ea7-s.p.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-family: Poppins Fallback;
    src: local("Arial");
    ascent-override: 93.62%;
    descent-override: 31.21%;
    line-gap-override: 8.92%;
    size-adjust: 112.16%
}

.__className_6bee3b {
    font-family: Poppins, Poppins Fallback;
    font-style: normal
}

.__variable_6bee3b {
    --font-poppins: "Poppins", "Poppins Fallback"
}

/* Footer Section */
.footer-section {
    background-color: #100f0c;
    color: #ffffff;
    padding: 40px 0;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-horizontal-line {
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 20px 0;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #cccccc;
    margin-top: 20px;
}

/* Services Landing Page Hero Image */
.services-landing-image-col {
    background-image: url('../img/service_banner.jpg');
}

/* Contact Us Page */
.contact-us-container {
    padding: 50px 0 0;
}

.contact-us-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.contact-us-hero-row {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.contact-us-image-column {
    background-image: url('../img/contact_us.jpg');
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    height: 80%;
    width: 50%;
    left: 0;
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
}

.contact-us-info-column {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
    background-color: var(--background-light);
    padding: 2rem;
    color: #000;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-company-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-us-company-info p {
    font-size: 1.2rem;
    margin: .75rem 0;
}

.contact-us-form-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.contact-us-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.contact-us-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-us-submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: .75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
    width: 100%;
}

.contact-us-submit-btn:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 768px) {
    .contact-us-hero {
        height: auto;
        padding: 2rem 0;
    }

    .contact-us-image-column,
    .contact-us-info-column {
        position: static;
        width: 100%;
        height: 300px;
        transform: none;
        margin: 0;
    }

    .contact-us-image-column {
        height: 400px;
    }

    .contact-us-info-column {
        margin-top: -20px;
        height: auto;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.popup-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.popup-icon.success {
    color: green;
}

.popup-icon.error {
    color: red;
}

.popup-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.popup-close-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}


/* Start Your Claim Page */
.loader-container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spinner-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-grow {
    display: inline-block;
    width: 60px;
    height: 60px;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
    animation-delay: 0.3s;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.progress-bar-container {
    width: 200px;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 60%;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: progressAnimation 1.5s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

.form-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 0 20px;
}

.form-title {
    text-align: center;
    margin-top: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.question-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slideInRight {
    animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.input-field {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.options-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.option-card {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 1rem;
}

.option-card:hover {
    border-color: var(--primary-color);
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #e7f0ff 0%, #f0f7ff 100%);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.btn-nav {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-previous {
    background-color: #f0f0f0;
    color: #333;
}

.btn-previous:hover:not(:disabled) {
    background-color: #e0e0e0;
}

.btn-next {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 40px;
}

.btn-next:hover:not(:disabled) {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 255, 0.3);
}

.btn-submit {
    background-color: #28a745;
    color: #fff;
    padding: 12px 40px;
}

.btn-submit:hover:not(:disabled) {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.error-message {
    color: #dc3545;
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 500;
}

.success-container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-container h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-container p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 500px;
}