/**
* Template Name: SoftLand
* Template URL: https://bootstrapmade.com/softland-bootstrap-app-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* -------------------------------------------------------------
                STYLING FOR FRONT END
---------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



/* 🌍 PICO Insure Brand Theme */
/*  :root {
    --primary: #5A2E85;
    --secondary: #7B3FA0;
    --btn-primary: #6B3FA0;
    --btn-hover: #532E7E;
    --donate-green: #76B223;
    --donate-hover: #5E8E1B;
    --light: #FFFFFF;
    --dark: #1C1C1C;
}
    */
:root {
    /* Main Identity */
    --primary: #FF7900;       /* Official Orange Brand Color */
    --primary-deep: #E06B00;  /* For hover states */
    --dark: #1A1A1A;          /* Professional Slate/Black */
    --secondary: #525E66;     /* Muted grey for subtext */

    --btn-primary: #6B3FA0;
    --btn-hover: #532E7E;

    /* Functional Colors */
    --success: #2ECC71;       /* Clean insurance-green */
    --light: #FFFFFF;
    --off-white: #F8F9FA;

    /* Layout */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --radius: 12px;           /* Modern, slightly rounder corners */

    --donate-green: #76B223;
    --donate-hover: #5E8E1B;
    --light: #FFFFFF;
    --dark: #1C1C1C;
}
/* 🟣 Primary Button */
/* .btn.btn-primary {
    background: linear-gradient(90deg, var(--btn-primary), var(--primary));
    border: none;
    border-radius: 8px;
    color: var(--light);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.35);
    transition: all 0.3s ease;
}
.btn.btn-primary:hover {
    background: linear-gradient(130deg, #5D2F77, var(--btn-hover));
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(108, 30, 157, 0.45);
} */

/* Let's clean up for Orange Go live */
.btn.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    padding: 0.8rem 2rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--light);
}

.btn.btn-primary:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.3);
}

.btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 19, 109, 0.3);
}

/* 💜 Outline White Button */
.btn.btn-outline-white {
    border: 2px solid var(--light);
    background: none;
    color: var(--light);
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}
.btn.btn-outline-white:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ⚫ Outline Dark Button */
.btn.btn-outline-dark {
    border: 2px solid var(--primary);
    background: none;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}
.btn.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

/* 💚 Donation Button (unchanged — premium look) */
.btn-donate {
    background: linear-gradient(90deg, #76B223, #6AAE1D);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(41, 62, 13, 0.4);
    transition: all 0.3s ease;
}
.btn-donate:hover {
    background: linear-gradient(90deg, #5E8E1B, #4C7715);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(28, 42, 8, 0.45);
}
.btn-donate:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(94, 142, 27, 0.3);
}
.btn-donate svg {
    margin-right: 6px;
    vertical-align: middle;
}

/* ✅ Renew Button (Green Gradient CTA) */
.btn-renew {
    background: linear-gradient(90deg, #76b223, #5a9e1f);
    border: none;
    color: #fff !important;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(118, 178, 35, 0.3);
}

.btn-renew:hover {
    background: linear-gradient(90deg, #6aad20, #4d8d1b);
    box-shadow: 0 4px 10px rgba(118, 178, 35, 0.5);
}

/* 🔘 General Button Enhancements */
.btn {
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
    border-radius: 6px;
}

.btn i {
    font-size: 1rem;
    vertical-align: middle;
}

/* 💬 Tooltip smooth fade */
.tooltip {
    font-size: 0.85rem;
    background-color: #feffd3;
    color: #000;
    border: #000;
}


/* 🔘 Global Button Reset */
.btn {
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}


html {
    overflow-x: hidden;
}

/* body {
    font-family: "Roboto", sans-serif;
    color: #181c14;
    line-height: 1.5;
} */

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--dark);
    background-color: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.main-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #faf7fd 40%, #f4e4fd 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.main-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(118, 178, 35, 0.08) 0%, transparent 70%);
    animation: subtleGlow 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes subtleGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.main-section .login-form {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}


    /* Modern Form Styling */
    .sign-in-from {
        padding: 4rem !important;
        max-width: 500px;
        margin: auto;
    }

    .form-group label {
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-control {
        height: 50px;
        border-radius: 10px;
        border: 1.5px solid #e9ecef;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.3);
    }

    /* Side Detail Overlay */
    .sign-in-detail {
        position: relative;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3rem;
    }

    .sign-in-detail::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(135deg, rgba(42, 23, 0, 0.9) 0%, var(--primary) 100%);
        z-index: 1;
    }

    .sign-in-detail > * {
        position: relative;
        z-index: 2;
    }

    .owl-dot.active span {
        background: var(--primary) !important;
        width: 30px !important;
    }

    .powered-by {
        font-size: 0.85rem;
        margin-top: 2rem;
        color: #adb5bd;
    }

a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover {
    color: var(--btn-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em; /* Tighter headings = more professional */
}

label{
    font-weight: 450;
}

    .table thead th {
        background-color: #f8f9fa;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1px;
        font-weight: 700;
        color: #6c757d;
        border-bottom: none;
        padding: 1.2rem;
    }

    .table tbody td {
        padding: 1.2rem;
        vertical-align: middle;
        border-bottom: 1px solid #f1f1f1;
        font-size: 0.95rem;
    }

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

.text-black {
    color: #181c14 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-blue {
    color: #244de2;
}

.text-original {
    color: var(--original) !important;
}

.border-top {
    border-top: 1px solid #f2f2f2 !important;
}

.border-bottom {
    border-bottom: 1px solid #f2f2f2 !important;
}

figure figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.8rem;
}

section {
    overflow: hidden;
}

.section {
    padding: 2.7rem 0;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    background: var(--dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ffc94a;
    color: #fff;
}

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

/* Feature 1 */
.feature-1 .wrap-icon {
    margin: 0 auto;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-1 .wrap-icon.icon-1 {
    background: linear-gradient(-45deg, var(--light), var(--dark));
}

.feature-1 .wrap-icon i {
    font-size: 40px;
    line-height: 0;
    color: #fff;
}

.feature-1 h3 {
    font-size: 20px;
}

.feature-1 p {
    color: #b1b1b1;
}

/* Step */
.step {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 40px;
}

.step .number {
    background: linear-gradient(-45deg, var(--light), var(--dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 10px;
    /* display: block; */
}

.step p:last-child {
    margin-bottom: 0px;
}

/* Review */
.review h3 {
    font-size: 20px;
}

.review p {
    line-height: 1.8;
    font-style: italic;
    color: #333333;
}

.review .stars span {
    color: var(--light);
}

.review .stars .muted {
    color: #ccc;
}

.review .review-user img {
    width: 70px;
    margin: 0 auto;
}

/* Testimonial Carousel */
.testimonials-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary);
}

.testimonials-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

/* Pricing */
.pricing {
    padding: 50px;
    background: linear-gradient(-45deg, var(--light), var(--dark));
    color: #fff;
    padding-bottom: 12rem !important;
    position: relative;
    border-radius: 4px;
    color: #181c14;
    background: #fff;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

.pricing h3 {
    color: var(--primary);
}

.pricing .price-cta {
    text-decoration: none;
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    left: 0;
}

.pricing .price-cta .price {
    display: block;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 300;
}

.pricing .popularity {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2rem;
    display: block;
    margin-bottom: 20px;
}

.pricing ul {
    margin-bottom: 50px;
}

.pricing ul li {
    margin-bottom: 10px;
}

.pricing .btn-white {
    background: #fff;
    border: 2px solid rgb(241, 241, 241);
    border-radius: 4px;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.pricing .btn-white:hover {
    color: var(--primary);
}

.pricing.popular {
    background: #fff;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    color: #181c14;
    background: linear-gradient(-45deg, var(--light), var(--dark));
    color: #fff;
    box-shadow: none;
}

.pricing.popular .popularity {
    color: #b3b3b3;
}

.pricing.popular h3 {
    color: #fff;
    background: none;
}

.pricing.popular .btn-white {
    border: 2px solid var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        to right,
        rgb(255, 66, 66) 0%,
        rgb(126, 27, 141) 100%
    );
    color: #fff;
    margin: 2rem 0 5rem 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

.cta-section .btn {
    background: #181c14;
    color: #fff;
}

.cta-section .btn i {
    margin-right: 5px;
    font-size: 24px;
    line-height: 0;
}

/* Contact Form */
.form-control {
    height: 40px;
    border-radius: 5;
    border: 1px solid #dae0e5;
}

.form-control:active,
.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--primary);
}

.php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.php-email-form .error-message br + br {
    margin-top: 25px;
}

.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--light);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #f96e2a;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.php-email-form textarea {
    min-height: 160px;
}

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

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

/* Blog */
.post-entry {
    margin-bottom: 60px;
}

.post-entry .post-text .post-meta {
    text-decoration: none;
    color: #ccc;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.post-entry .post-text h3 {
    font-size: 20px;
    color: #181c14;
}

.post-entry .post-text h3 a {
    text-decoration: none;
    color: #181c14;
}

.post-entry .post-text h3 a:hover {
    text-decoration: none;
    color: var(--primary);
}

.post-entry .post-text .readmore {
    color: var(--primary);
}

.sidebar-box {
    margin-bottom: 30px;
    padding: 25px;
    font-size: 15px;
    width: 100%;
    float: left;
    background: #fff;
}

.sidebar-box *:last-child {
    margin-bottom: 0;
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.categories li,
.sidelink li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted gray("300");
    list-style: none;
}

.categories li:last-child,
.sidelink li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories li a,
.sidelink li a {
    text-decoration: none;
    display: block;
}

.categories li a span,
.sidelink li a span {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
}

.categories li.active a,
.sidelink li.active a {
    text-decoration: none;
    color: #181c14;
    font-style: italic;
}

.comment-form-wrap {
    clear: both;
}

.comment-list {
    padding: 0;
    margin: 0;
}

.comment-list .children {
    padding: 50px 0 0 40px;
    margin: 0;
    float: left;
    width: 100%;
}

.comment-list li {
    padding: 0;
    margin: 0 0 30px 0;
    float: left;
    width: 100%;
    clear: both;
    list-style: none;
}

.comment-list li .vcard {
    width: 80px;
    float: left;
}

.comment-list li .vcard img {
    width: 50px;
    border-radius: 50%;
}

.comment-list li .comment-body {
    float: right;
    width: calc(100% - 80px);
}

.comment-list li .comment-body h3 {
    font-size: 20px;
}

.comment-list li .comment-body .meta {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #ccc;
}

.comment-list li .comment-body .reply {
    padding: 5px 10px;
    background: #e6e6e6;
    color: #181c14;
    text-transform: uppercase;
    font-size: 14px;
}

.comment-list li .comment-body .reply:hover {
    color: #181c14;
    background: #e3e3e3;
}

.search-form {
    background: #f7f7f7;
    padding: 10px;
}

.search-form .form-group {
    position: relative;
}

.search-form .form-group input {
    padding-right: 50px;
}

.search-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /* background: linear-gradient(150deg, var(--primary) 0%, rgb(82, 57, 190) 50%); */

    /* QIC Theme */
    background: #fff;
    height: 70px;
    transition: all 1s;
    z-index: 997;
    transition: all 1s;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; /* Adjust the value for more or less rounding */
    padding: 10px; /* Optional: add padding */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */ /* Optional: add shadow for effect */
}

#header.header-scrolled {
    /* Pico Insurance Theme */
    /* background: linear-gradient(150deg, var(--primary) 0%, rgb(82, 57, 190) 50%); */

    /* Green & Gold Theme */
    background: #fff;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add shadow for effect */
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    /* Pico Theme */
    /* color: #fff; */

    /* QIC Theme */
    color: #000;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    font-weight: 500;
    /* Pico Theme */
    /* color: rgba(255, 255, 255, 0.65); */

    /* QI Theme */
    color: var(--secondary);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    /* Pico Insure Theme */
    color: #000;

    /* QIC Theme */
    /* color: var(--primary); */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: #101c36;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--primary);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--dark);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #101c36;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--dark);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(-45deg, #674eb0, #4f226f, #5d386d, #4a3932);
    url(../img/hero-bg.jpg) center center / cover no-repeat;;
    background-size: 400% 400%;
    animation: waveMotion 12s ease infinite;
}

@keyframes waveMotion {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.hero-section .wave {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    bottom: -150px;
}

@media screen and (max-width: 992px) {
    .hero-section .wave {
        bottom: -180px;
    }
}

.hero-section .wave svg {
    width: 100%;
}

.hero-section,
.hero-section > .container > .row {
    height: 100vh;
    min-height: 880px;
}

.hero-section.inner-page {
    height: 50vh;
    min-height: 0;
}

.hero-section.inner-page .hero-text {
    transform: translateY(-150px);
    margin-top: -120px;
}

@media screen and (max-width: 992px) {
    .hero-section.inner-page .hero-text {
        margin-top: -80px;
    }
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-top: 40px;
    }
}

@media screen and (max-width: 992px) {
    .hero-section .hero-text-image {
        margin-top: 4rem;
    }
}

.hero-section p {
    font-size: 18px;
    color: #fff;
}

.hero-section .iphone-wrap {
    position: relative;
}

@media screen and (max-width: 992px) {
    .hero-section .iphone-wrap {
        text-align: center;
    }
}

.hero-section .iphone-wrap .phone-2,
.hero-section .iphone-wrap .phone-1 {
    position: absolute;
    top: -48%;
    overflow: hidden;
    left: 0;
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

@media screen and (max-width: 992px) {
    .hero-section .iphone-wrap .phone-2,
    .hero-section .iphone-wrap .phone-1 {
        position: relative;
        top: 0;
        max-width: 100%;
    }
}

.hero-section .iphone-wrap .phone-2,
.hero-section .iphone-wrap .phone-1 {
    width: 250px;
}

@media screen and (max-width: 992px) {
    .hero-section .iphone-wrap .phone-1 {
        margin-left: -150px;
    }
}

.hero-section .iphone-wrap .phone-2 {
    margin-top: 50px;
    margin-left: 100px;
    width: 250px;
}

@media screen and (max-width: 992px) {
    .hero-section .iphone-wrap .phone-2 {
        width: 250px;
        position: absolute;
        margin-top: 0px;
        margin-left: 100px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    position: relative;
    padding: 5rem 0 2.5rem 0;
    color: #fff;
    background: linear-gradient(-45deg, #5B2C6F, #3E1E68, #2C3E50, #4A235A);
    background-size: 400% 400%;
    animation: footerWave 18s ease infinite;
}

@keyframes footerWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.footer h3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
}

.footer .copyright {
    margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
    font-size: 14px;
}

.social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    position: relative;
    text-align: center;
    transition: 0.3s background ease;
    color: #0d1e2d;
    line-height: 0;
}

.social a span {
    display: inline-block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social a:hover {
    color: #fff;
    background: var(--dark);
}

.social a i {
    line-height: 0;
}

footer p,
footer .credits,
footer h3 {
    color: #fff;
}

/*--------------------------------------------------------------
# Others
--------------------------------------------------------------*/

/*----------------------------------------------
    Tooltip Styling
    ------------------------------------------------*/
.custom-tooltip {
    --bs-tooltip-bg: #49243e;
    --bs-tooltip-color: var(--bs-white);
}

/*----------------------------------------------
    FAQ Accordion Styling
    ------------------------------------------------*/
/* Accordion Header Button */
.accordion-button {
    background-color: transparent !important; /* No background color */
    color: #181c14; /* Default text color */
    border: none; /* Remove default border */
    box-shadow: none; /* Remove box-shadow */
}

/* Active State (Expanded) */
.accordion-button:not(.collapsed) {
    background-color: transparent !important; /* Keep it plain */
    color: var(--primary) !important; /* Ensure primary color is applied */
}

/* Hover and Focus States */
.accordion-button:hover,
.accordion-button:focus {
    background-color: transparent !important; /* Plain background */
    color: var(--primary); /* Highlighted text color */
}

/* Accordion Body */
.accordion-body {
    background-color: #ffffff; /* Light background for the content */
    color: #333333; /* Custom text color */
}

/* ------------------
  Custom Cards
  ----------------------
  */
.gradient-card-dark {
    background: linear-gradient(
        60deg,
        #46734d 40%,
        #316339 80%
    ); /* Gradient colors */
    border: none; /* Remove border if desired */
    border-radius: 10px; /* Optional: Add rounded corners */
    padding: 20px;
}

.gradient-card .card-body {
    color: #ff5733; /* Make text color white to contrast with the background */
}

.gradient-card-light {
    background: linear-gradient(
        150deg,
        #ffffff 30%,
        rgb(229, 229, 229) 100%
    ); /* Gradient colors */
    border: none; /* Remove border if desired */
    border-radius: 10px; /* Optional: Add rounded corners */
    padding: 20px;
}

.card-bg-orange {
    background-color: #f96e2a;
}

.reward {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.reward-shadowed {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    transition: box-shadow 0.3s ease;
}

.reward-shadowed:hover {
    box-shadow:
    0 4px 10px rgba(255, 123, 0, 0.413),     /* Orange (#ff7900) */
    0 6px 20px rgba(255, 102, 0, 0.172),     /* Deeper Orange */
    0 8px 30px rgba(188, 82, 7, 0.364);         /* Subtle black for depth */
}

.magic-image {
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.magic-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gradientos {
    background: linear-gradient(95deg, #f8f9fa, #ffba44);
    min-height: 100vh; /* Just for testing */
}

.bg-success {
    color: #6ec207;
}

.bg-original {
    color: var(--original);
}

.lead {
    font-size: 1rem;
    font-weight: 300;
}

/*---------------------------------------------------------------------
                                  Badge
-----------------------------------------------------------------------*/
.badge {
    padding: 0.1em 0.5em;
    font-weight: 500;
    line-height: 1.3;
    text-transform: capitalize;
}
.breadcrumb.bg-primary .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

/*----------------------------------------------
Background Color
------------------------------------------------*/
.bg-primary,
.badge-primary {
    background-color: #4379f2 !important;
}
.bg-secondary,
.badge-secondary {
    background-color: #777d74 !important;
}
.bg-success,
.badge-success {
    background-color: #00ca00 !important;
}
.bg-danger,
.badge-danger {
    background-color: #e64141 !important;
}
.bg-warning,
.badge-warning {
    background-color: #ffd400 !important;
}
.bg-info,
.badge-info {
    background-color: #00d0ff !important;
}
.bg-light,
.badge-light {
    background-color: #e9edf4 !important;
}
.bg-dark,
.badge-dark {
    background-color: #374948 !important;
}

/*----------------------------------------------
Custom Background Color
------------------------------------------------*/
.bg-cyan,
.badge-cyan {
    background-color: #0cd2e3 !important;
    color: #ffffff !important;
}
.bg-cobalt-blue,
.badge-cobalt-blue {
    background-color: #3f79f1 !important;
    color: #ffffff !important;
}
.bg-spring-green,
.badge-spring-green {
    background-color: #1be1b3 !important;
    color: #ffffff !important;
}
.bg-amber,
.badge-amber {
    background-color: #f4b72a !important;
    color: #ffffff !important;
}
.bg-pink,
.badge-pink {
    background-color: #fd6c9e !important;
    color: #ffffff !important;
}

/*----------------------------------------------
Background Color Opacity
------------------------------------------------*/
.iq-bg-primary {
    background: #e5f2ff !important;
    color: #7b6cf6 !important;
}
.iq-bg-secondary {
    background: #f1f2f1 !important;
    color: #777d74 !important;
}
.iq-bg-success {
    background: #e5fae5 !important;
    color: #00ca00 !important;
}
.iq-bg-danger {
    background: #fcecec !important;
    color: #e64141 !important;
}
.iq-bg-warning {
    background: #fffbe5 !important;
    color: #ffd400 !important;
}
.iq-bg-info {
    background: #e5faff !important;
    color: #00d0ff !important;
}
.iq-bg-dark {
    background: #ebecec !important;
    color: #374948 !important;
}

/*--------------*/
.iq-bg-primary-hover:hover {
    background: #e5f2ff !important;
}
.iq-bg-primary-secondary-hover:hover {
    background: #f1f2f1 !important;
}
.iq-bg-primary-success-hover:hover {
    background: #e5fae5 !important;
}
.iq-bg-primary-danger-hover:hover {
    background: #fcecec !important;
}
.iq-bg-primary-warning-hover:hover {
    background: #fffbe5 !important;
}
.iq-bg-primary-info-hover:hover {
    background: #e5faff !important;
}
.iq-bg-primary-dark-hover:hover {
    background: #ebecec !important;
}

/*----------------------------------------------
Text Color
------------------------------------------------*/
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: #777d74 !important;
}
.text-success {
    color: #347928 !important;
}
.text-danger {
    color: #e64141 !important;
}
.text-warning {
    color: #ffd400 !important;
}
.text-info {
    color: #00d0ff !important;
}
.text-light {
    color: #e9edf4 !important;
}
.text-dark {
    color: #374948 !important;
}
.text-white {
    color: #ffffff !important;
}

/*----------------------------------------------
Custom Text Color
------------------------------------------------*/
.text-cyan {
    color: #0cd2e3 !important;
}
.text-cobalt-blue {
    color: #3f79f1 !important;
}
.text-spring-green {
    color: #1be1b3 !important;
}
.text-amber {
    color: #f4b72a !important;
}
.text-pink {
    color: #fd6c9e !important;
}

/* Icons (To be moved) */

.radix-icons--info-circled {
    display: inline-block;
    width: 15px;
    height: 15px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M7.5.877a6.623 6.623 0 1 0 0 13.246A6.623 6.623 0 0 0 7.5.877M1.827 7.5a5.673 5.673 0 1 1 11.346 0a5.673 5.673 0 0 1-11.346 0m6.423-3a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0M6 6h1.5a.5.5 0 0 1 .5.5V10h1v1H6v-1h1V7H6z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.tracking-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.general-info-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile Floating Action Button */
@media (max-width: 768px) {
    .btn-mobile-fab {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        box-shadow: 0 10px 20px rgba(255, 121, 0, 0.4);
    }
    .action-tile {
        padding: 1rem !important;
        border: none !important;
        background: white !important;
        box-shadow: var(--shadow-sm);
    }
}

/* Desktop Icon Tile Hover */
.action-tile:hover {
    background: #fff !important;
    border-color: var(--primary) !important;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Hero Gradient - Orange Identity */
.pico-hero-gradient {
    background: linear-gradient(135deg, #FF7900 0%, #CC6100 100%);
    border-radius: 0 0 40px 40px;
}

/* Partner Cards */
.partner-card {
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    cursor: pointer;
    border-radius: 16px !important;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.partner-logo-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px;
}

/* Professional Search Bar */
#search-input {
    border-radius: 12px;
    padding: 15px 25px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.15);
}

/* Premium Card Styling */
.premium-policy-card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.premium-policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 20px rgba(0,0,0,0.12) !important;
}

.text-orange {
    color: #FF7900;
}

/* Custom Checkbox for the Modal */
#agreed {
    width: 20px;
    height: 20px;
    accent-color: #FF7900;
}

/* Modal Polish */
.modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 2rem;
}

/* Dashed Border Effect for Empty States */
.border-dashed {
    border: 2px dashed #dee2e6 !important;
    background-color: #fafafa !important;
}

/* Icon Shape Glow */
.icon-shape {
    transition: all 0.3s ease;
}

.empty-state-container:hover .icon-shape {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 121, 0, 0.2) !important;
}

/* Typography spacing */
.tracking-wider {
    letter-spacing: 2px;
}

/* Button Pulse (Optional) */
.btn-primary.shadow-sm {
    transition: all 0.3s ease;
}

.btn-primary.shadow-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 121, 0, 0.3) !important;
}

/* Status Colors */
.bg-success-light { background-color: rgba(25, 135, 84, 0.1); }

/* Card Hover Effects */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    border-color: var(--primary);
}

/* Customizing FilePond for a professional look */
.filepond--root {
    font-family: 'Ubuntu', sans-serif;
}

.filepond--panel-root {
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .card.p-5 {
        padding: 1.5rem !important;
    }
    .reward {
        padding: 1.25rem !important;
    }
}

/* Stepper UI */
.stepper-ui {
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
}
.step-dot {
    text-align: center;
    position: relative;
    color: #ccc;
    transition: all 0.3s ease;
}
.step-dot span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 5px;
    font-weight: bold;
    font-size: 0.8rem;
}
.step-dot small {
    display: block;
    font-size: 0.65rem;
    font-weight: bold;
    text-uppercase;
}
.step-dot.active { color: #FF7900; } /* Orange Brand Color */
.step-dot.active span { background: #FF7900; color: white; box-shadow: 0 4px 10px rgba(255, 121, 0, 0.3); }

.step-line {
    flex-grow: 1;
    height: 2px;
    background: #f0f0f0;
    margin-bottom: 20px;
}

/* Form Styles */
.form-control-lg, .form-select-lg {
    border-radius: 12px;
    padding: 1rem;
}
.border-dashed {
    border-style: dashed !important;
}
.rounded-4 { border-radius: 1.25rem !important; }

/* FilePond Adjustments */
.filepond--root {
    margin-bottom: 0;
}

/* Allow the dropdown to overflow the card boundaries */
.dependent-card, .card {
    overflow: visible !important;
}

/* Ensure the dropdown sits on top of everything else */
.dropdown-menu {
    z-index: 9999 !important;
}

/* Modal Refinements */
#makeDonation .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#makeDonation .modal-header {
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #edf2f7;
    padding: 1.5rem 2rem;
}

#makeDonation .modal-title {
    font-weight: 700;
    color: #2d3748;
}

#makeDonation .modal-body {
    padding: 2rem;
}

/* Custom form styling inside modal */
#makeDonation .col-form-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

#makeDonation .form-control, #makeDonation .form-select {
    border-radius: 10px;
    padding: 0.6rem 1rem;
    border: 1px solid #e2e8f0;
}

#makeDonation .form-control:focus {
    border-color: #FF7900;
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.1);
}

/* Progress highlight */
.policy-highlight {
    background: #fff5eb;
    color: #FF7900;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* DONATION SUCESSFULL PAGE STYLES */
    .thank-you-page {
        background: radial-gradient(circle at center, rgba(40, 167, 69, 0.05) 0%, #ffffff 70%);
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    /* Pulsing success icon */
    .success-icon-container {
        position: relative;
        display: inline-block;
    }

    .success-icon-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background: rgba(40, 167, 69, 0.2);
        z-index: -1;
        animation: pulse-green 2s infinite;
    }

    @keyframes pulse-green {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(1.5); opacity: 0; }
    }

    /* Summary Card */
    .donation-summary-card {
        background: white;
        border: 1px solid #edf2f7;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
        padding: 2rem;
        margin-top: 2rem;
    }

    .impact-text {
        font-style: italic;
        color: #718096;
        border-left: 3px solid #FF7900;
        padding-left: 1rem;
    }

    .btn-return {
        background: transparent;
        color: #4a5568;
        border: 2px solid #e2e8f0;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-return:hover {
        background: #f8f9fa;
        border-color: #cbd5e0;
    }

    .btn-again {
        background: #FF7900;
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 121, 0, 0.2);
    }

    .btn-again:hover {
        background: #e66d00;
        transform: translateY(-2px);
        color: white;
    }
