/* navbar style start  */
#navbar {
    position: fixed;
    top: var(--nav-top-offset);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5rem;
    transition:
        top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease,
        padding 0.4s ease;

    animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#navbar.transparent {
    background: transparent;
    box-shadow: none;
}

#navbar.scrolled {
    --nav-top-offset: 0px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.12);
    padding: 0 56px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 34px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-white {
    display: block;
    opacity: 1;
    position: relative;
}

.logo-black {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.nav-left {
    position: relative;
}

#navbar.scrolled .logo-white {
    opacity: 0;
}

#navbar.scrolled .logo-black {
    opacity: 1;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50px;
    padding: 12px 18px;
    gap: 10px;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled .nav-links-wrap {
    background: rgba(210, 32, 32, 0.06);
    border-color: rgba(210, 32, 32, 0.2);
    padding: 6px 10px;
    gap: 4px;
}

.nav-links-wrap a {
    font: 400 1.125rem var(--font-heading);
    text-decoration: none;
    color: var(--secondary-text);
    padding: 7px 16px;
    border-radius: 50px;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s, background 0.3s;
}

.nav-links-wrap a {
    animation: navSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nav-links-wrap a:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-links-wrap a:nth-child(2) {
    animation-delay: 0.10s;
}

.nav-links-wrap a:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-links-wrap a:nth-child(4) {
    animation-delay: 0.20s;
}

#navbar.scrolled .nav-links-wrap a {
    color: #2a2a2a;
}


.nav-links-wrap a:hover,
.nav-links-wrap a.active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--secondary-text);
}

#navbar.scrolled .nav-links-wrap a:hover,
#navbar.scrolled .nav-links-wrap a.active {
    background: rgba(210, 32, 32, 0.09);
    color: var(--red);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-cta {
    font: 400 1.125rem var(--font-heading);
    text-decoration: none;
    color: var(--secondary-text);
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    border-radius: 50px;
    padding: 12px 18px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: navSlideDown 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: color 0.35s, border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta:hover::before {
    transform: scaleX(1);
}

.nav-cta:hover {
    color: var(--red);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.22);
}

#navbar.scrolled .nav-cta {
    color: var(--red);
    border-color: var(--red);
}

#navbar.scrolled .nav-cta::before {
    background: var(--red);
}

#navbar.scrolled .nav-cta:hover {
    color: white;
    box-shadow: 0 4px 20px rgba(210, 32, 32, 0.28);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    transition: opacity 0.3s;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: white;
    transition: transform 0.35s, opacity 0.25s, background 0.35s;
}

#navbar.scrolled .hamburger span {
    background: #1a1a1a;
}

.hamburger.open {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;

    --menu-origin-x: calc(100% - 60px);
    --menu-origin-y: 52px;
    clip-path: circle(0% at var(--menu-origin-x) var(--menu-origin-y));
    transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.open {
    clip-path: circle(170% at var(--menu-origin-x) var(--menu-origin-y));
    pointer-events: all;
}

.mobile-menu a {
    text-decoration: none;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    padding: 12px 0;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.25s, opacity 0.4s, transform 0.4s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.12s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.19s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.26s;
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: 0.33s;
}

.mobile-menu.open a:nth-child(6) {
    transition-delay: 0.40s;
}

.mobile-menu a:hover {
    color: white;
}

.mobile-menu .mob-cta {
    margin-top: 28px;
    background: white;
    color: var(--red) !important;
    border-radius: 50px;
    padding: 14px 44px !important;
    font-size: 1rem !important;
    font-weight: 700;
}

.mobile-menu .mob-cta:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    color: var(--red) !important;
}

.mob-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s 0.1s, background 0.2s;
}

.mobile-menu.open .mob-close {
    opacity: 1;
}

.mob-close:hover {
    background: rgba(255, 255, 255, 0.25);
}


@media (max-width: 1024px) {

    .nav-links-wrap,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #navbar {
        grid-template-columns: 1fr auto;
        padding: 0 32px;
    }

    #navbar.scrolled {
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    #navbar {
        padding: 0 20px;
    }

    #navbar.scrolled {
        padding: 0 20px;
    }
}


@keyframes navSlideDown {
    from {
        transform: translateY(-120%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* navbar style end  */


/* hero sec tyle start  */
.hero-section {
    background: var(--primary-color);
    height: 100vh;
    position: relative;
    display: flex;

}

.hero-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-shape-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.hero-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    gap: 1rem;
}

.hero-icon-center {
    position: absolute;
    z-index: 0;
}

.hero-content-wrap h1 {
    font: 600 3rem var(--font-heading);
    color: var(--secondary-text);
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
    margin: 0;
}

.hero-content-wrap p {
    font: 400 1.125rem var(--font-body);
    color: var(--secondary-text);
    z-index: 1;
}

.hero-content-wrap .hero-buttons {
    display: flex;
    gap: 2rem;
}

.hero-buttons a {
    font: 400 1.125rem var(--font-body);
    color: var(--secondary-text);
    text-decoration: none;
    z-index: 1;
    border-radius: 2rem;
    backdrop-filter: blur(19.200000762939453px);
    background: #00000040;
    padding: 1rem 1.2rem;
    border: 1px solid #FFFFFF5C;
    margin: 0;
}

@media screen and (max-width: 360px) {
    .hero-content-wrap h1 {
        font: 600 2rem var(--font-heading);

    }

    .hero-content-wrap p {
        font: 400 1rem var(--font-body);
        text-align: center;
    }

    .hero-buttons a {
        text-align: center;
        font: 400 1rem var(--font-body);
        padding: 1rem;
    }

    .hero-content-wrap .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .hero-content-wrap h1 {
        font: 600 2rem var(--font-heading);

    }

    .hero-content-wrap p {
        font: 400 1rem var(--font-body);
        text-align: center;
    }

    .hero-buttons a {
        text-align: center;
        font: 400 1rem var(--font-body);
        padding: 1rem;
    }

    .hero-content-wrap .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* hero sec style end  */

/* about sec style start  */
.about-home {
    padding: 5rem 0;
}

.section-title {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem;
}

.section-title h2 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    max-width: 605px;
    width: fit-content;
}

.about-home-content p {
    font: 400 1.125rem var(--font-body);
    color: var(--primary-text);
    line-height: 1.5;
}

.about-home-image {
    display: flex;
    justify-content: center;
}

/* about sec style end  */

/* why sec style start  */
.why-section {
    background-color: var(--secondary-color);
    padding: 5rem 0;
}

.why-section-content-wrp {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

.why-section-card {
    background: #FFFFFF05;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(19.2px);
    -webkit-backdrop-filter: blur(19.2px);
    border-radius: 20px;
    padding: 48px 40px;
    color: var(--secondary-text);
}

.why-section-card.why-main {
    flex: 2;
}

.why-section-card h2 {
    font: 600 2.4rem var(--font-heading);
    color: var(--secondary-text);
    margin: 0 0 2rem 0;
}

.why-section-card p {
    font: 400 1.125rem var(--font-body);
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
}

/* ── Right Column ── */
.why-section-cards-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-section-card.why-small {
    flex: 1;
}

.why-section-card.why-small h3 {
    font: 600 1.25rem var(--font-heading);
    font-weight: 600;
    color: var(--secondary-text);
    margin: 0 0 1rem 0;
}

.why-section-card.why-small p {
    font: 400 1.125rem var(--font-body);
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .why-section-content-wrp {
        flex-direction: column;
    }

    .why-section-card h2 {
        font-size: 2rem;
    }
}

/* why sec style end  */

/* how we help sec style start  */

.how-we-help {
    background: url('/assets/images/how-colwort-helps.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

.section-title {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem;
    flex-direction: column;
    align-items: center;
}

.section-title .help-section-title {
    color: var(--secondary-text);
}

.section-title p {
    font: 400 1rem var(--font-body);
    line-height: 1.3;
    max-width: 630px;
    text-align: center;
    color: var(--secondary-text);
}


.how-we-help .how-section-cards {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
}

.how-section-card {
    flex: 1;
    background: #FFFFFF05;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(19.2px);
    -webkit-backdrop-filter: blur(19.2px);
    border-radius: 2rem;
    padding: 2.5rem 3rem;
    color: var(--secondary-text);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 455px;
    width: 100%;
}

.how-section-card h3 {
    font: 600 1.75rem var(--font-heading);
    color: var(--secondary-text);
    margin: 0;
}

.how-section-card p {
    font: 400 1rem var(--font-body);
    color: var(--secondary-text);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    text-wrap-style: pretty;
}

.how-section-card .btn-register {
    display: inline-block;
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border: 1px solid #FFFFFF66;
    border-radius: 2rem;
    background: transparent;
    color: var(--secondary-text);
    font: 400 0.95rem var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.how-section-card .btn-register:hover {
    background: #FFFFFF15;
    border-color: #FFFFFFaa;
}

/* Responsive */
@media (max-width: 768px) {
    .how-section-cards {
        flex-direction: column;
    }

    .how-section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 360px) {
    .section-title .help-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-title p {
        font: 400 0.9rem var(--font-body);
    }

    .how-we-help .how-section-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .section-title .help-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-title p {
        font: 400 0.9rem var(--font-body);
    }

    .how-we-help .how-section-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .how-we-help .how-section-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
}

/*  how we help sec style end  */

/* operation sec style start  */

.operate-section {
    padding: 5rem 0;
}

.operate-section .section-title {
    margin: 0;
}

.operate-section .section-title p {
    color: #000000;
    line-height: 1.3;
    max-width: 750px;
    text-align: center;
    margin: 0;
}

.glob-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 360px) {
    .operate-section .section-title {
        margin: 0;
        text-align: center;
    }

    .section-title h2 {
        font: 600 2rem var(--font-heading);
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .operate-section .section-title {
        margin: 0;
        text-align: center;
    }

    .section-title h2 {
        font: 600 2rem var(--font-heading);
    }
}

/* operation sec style end  */

/* cta sec style start  */

.cta {
    background: url('/assets/images/Cta-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
}

.cta-wrp {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cta-wrp h3 {
    font: 500 2.125rem var(--font-heading);
    color: var(--secondary-text);
    max-width: 400px;
    width: 100%;
    margin: 0;
}

.btn-start {
    display: inline-block;
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border: 1px solid #FFFFFF66;
    border-radius: 2rem;
    background: transparent;
    color: var(--secondary-text);
    font: 400 0.95rem var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.btn-start:hover {
    color: var(--secondary-text);
    background: #FFFFFF15;
    border-color: #FFFFFFaa;
}

@media screen and (max-width: 360px) {
    .cta-wrp {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cta-wrp h3 {
        font: 500 2.125rem var(--font-heading);
        text-align: center;
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .cta-wrp {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cta-wrp h3 {
        font: 500 2.125rem var(--font-heading);
        text-align: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .cta-wrp {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cta-wrp h3 {
        font: 500 2.125rem var(--font-heading);
        text-align: center;
    }
}

/* cta style sec end  */

/* faq sec style start  */

.faq-section {
    padding: 5rem 0;
    font-family: "Segoe UI", sans-serif;
}

.faq-title {
    font: 600 2rem var(--font-heading);
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    font: 500 1.3rem var(--font-heading);
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    font: 400 2rem var(--font-heading);
}

.faq-answer {
    font: 400 1.125rem var(--font-body);
    color: #666666;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    content: "–";
}

/* Faq sec style end  */

/* footer style start  */
.footer {
    background: #ffffff;
    padding: 5rem 0 0 0;
    font-family: var(--font-body);
    position: relative;
}

.footer-bottom {
    background: url('/assets/images/footer-bottom.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0 0;
}

.footer-b-wrp {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-text);
    letter-spacing: -0.5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    font: 400 1.125rem var(--font-body);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary-text);
    line-height: 1.5;
}

.footer-contact-item a {
    text-decoration: none;
    color: var(--primary-text);
}

.footer-contact-item img {
    flex-shrink: 0;
    margin-top: 6px;
}

.footer-sitemap h4,
.footer-social h4 {
    font: 600 1.25rem var(--font-heading);
    color: var(--primary-text);
    margin: 0 0 20px 0;
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-sitemap ul li a {
    font: 400 1.125rem var(--font-body);
    text-decoration: none;
    color: var(--primary-text);
    transition: color 0.2s;
}

.footer-sitemap ul li a:hover {
    color: var(--primary-color);
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 2rem;
    color: var(--primary-text);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    box-shadow: 0px 6px 12px 0px #18274B1F;
    box-shadow: 0px 8px 24px 0px #18274B14;
}

.footer-social-icons a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.wave {
    width: 100%;
}


.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary-text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
    opacity: 0.75;
}

@media screen and (max-width: 360px) {
    .footer-top {
        display: flex;
        flex-direction: column;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .footer-b-wrp {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .footer-top {
        display: flex;
        flex-direction: column;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .footer-b-wrp {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .footer-top {
        display: flex;
        flex-direction: column;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .footer-b-wrp {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .footer-bottom-links {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

/* footer style end  */

/* inner page banner style start  */
.inner-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.inner-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
}


.inner-banner__title {
    font: 600 2.5rem var(--font-heading);
    color: #f5f0e8;
}

/* inner page banner style end  */

/* forms style start  */
.register-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.form-wrapper {
    width: 100%;
    max-width: 620px;
}

.register-form-wrapper h6 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-text);
    max-width: 400px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group.no-margin {
    margin-bottom: 0;
}

.field {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.field label {
    font: 500 1rem var(--font-heading);
    color: #666;
    position: relative;
    top: 0.65rem;
    margin: 0 0 0 10px;
    padding: 0 4px;
    background: #fff;
    width: fit-content;
    z-index: 1;
    transition: color 0.2s;
}

.field:focus-within label {
    color: var(--primary-color);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1.5px solid #aaa;
    border-radius: 8px;
    outline: none;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-text);
    padding: 12px 14px;
    transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary-color);
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper .chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    color: #888;
    font-size: 0.95rem;
    border: 1.5px solid #aaa;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
}

.file-upload-area input[type="file"] {
    display: none;
}

.upload-icon {
    color: #888;
    flex-shrink: 0;
}

.field-file {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.field-file>span.field-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 700;
    position: relative;
    top: 0.55rem;
    margin: 0 0 0 10px;
    padding: 0 4px;
    background: #fff;
    width: fit-content;
    z-index: 1;
}

.btn-signup {
    width: 100%;
    padding: 16px;
    background: var(--primary-text);
    color: var(--secondary-text);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: background 0.2s;
}

.btn-signup:hover {
    background: var(--primary-color);
}

.signin-text {
    font: 400 1rem var(--font-heading);
    text-align: left;
    margin-top: 1rem;
    color: #444;
    margin-bottom: 0.1rem;
}

.signin-text a {
    color: #5a0ebd;
    text-decoration: none;
}

.signin-text a:hover {
    text-decoration: underline;
}

@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* forms style end  */

/* seeker pages style start  */
.seeker-wrp {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.seeker-content-wrp {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seeker-content-wrp h5 {
    font: 500 2.3rem var(--font-heading);
    color: var(--primary-text);
    margin: 0;
}

.seeker-content-wrp p {
    font: 500 1.125rem var(--font-heading);
    color: var(--primary-text);
    text-wrap-style: pretty;
    line-height: 1.3;
}

.row-seeker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.image-wrp-seekr {
    width: fit-content;
    border-radius: 1rem;
    overflow: hidden;
}

.register-now {
    display: inline-block;
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border: 1px solid #FFFFFF66;
    border-radius: 2rem;
    background: var(--secondary-color);
    color: var(--secondary-text);
    font: 400 0.95rem var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.register-now:hover {
    color: var(--secondary-text);
}

.disclaimer {
    font: 500 1.125rem var(--font-heading);
    color: var(--primary-text);
    text-wrap-style: pretty;
    line-height: 1.3;
}

@media screen and (max-width: 360px) {
    .inner-banner__title {
        font: 600 2rem var(--font-heading);
    }

    .row-seeker {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-seeker-two {
        flex-direction: column-reverse;
    }

    .seeker-wrp {
        gap: 2rem;
    }

    .seeker-content-wrp h5 {
        font: 500 2rem var(--font-heading);
    }
}

@media screen and (min-width: 361px) and (max-width: 559px) {
    .inner-banner__title {
        font: 600 2rem var(--font-heading);
    }

    .row-seeker {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-seeker-two {
        flex-direction: column-reverse;
    }

    .seeker-wrp {
        gap: 2rem;
    }

    .seeker-content-wrp h5 {
        font: 500 1.8rem var(--font-heading);
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .inner-banner__title {
        font: 600 1.8rem var(--font-heading);
    }

    .seeker-wrp {
        gap: 2rem;
    }

    .row-seeker {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-seeker-two {
        flex-direction: column-reverse;
    }

    .seeker-content-wrp h5 {
        font: 500 1.8rem var(--font-heading);
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .row-seeker {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-seeker-two {
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

/* seeker page style end  */












.page-wrapper {
    padding: 3rem 2rem 4rem;
}

.page-wrapper h6 {
    font: 600 2.4rem var(--font-heading);
    color: var(--primary-text);
    margin-bottom: 1.8rem;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.dropdown-wrapper {
    position: relative;
}

.filter-btn {
    padding: 1rem;
    background: var(--primary-color);
    color: var(--secondary-text);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    line-height: 1;
    user-select: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
}

.filter-btn:hover {
    background: var(--secondary-color);
}

.filter-btn svg {
    flex-shrink: 0;
}

.filter-btn .chevron {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
}

.dropdown-wrapper.open .filter-btn .chevron {
    transform: rotate(180deg);
}



/* ── Dropdown menu ── */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    z-index: 100;
    overflow: hidden;
    animation: dropIn 0.15s ease;
}

.dropdown-wrapper.open .dropdown-menu {
    display: block;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    transition: background 0.12s;
}

.dropdown-menu li label:hover {
    background: #f5f5f5;
}

.dropdown-menu li label input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0;
}

.post-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
    letter-spacing: 0.01em;
}

.post-btn:hover {
    background: #333;
    transform: translateY(-1px);
    color: #fff;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-family: var(--font-body);
    table-layout: fixed;
}

col.col-name {
    width: calc((100% - 280px) / 2);
}

col.col-summary {
    width: calc((100% - 280px) / 2);
}

col.col-view {
    width: 80px;
}

col.col-status {
    width: 200px;
}

thead tr {
    border-bottom: 2px solid #e8e8e8;
}

th {
    text-align: left;
    padding: 1rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

th.col-view,
th.col-status {
    text-align: center;
}

td {
    padding: 1rem 1.4rem;
    font-size: 0.9rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: var(--primary-text);
    overflow: hidden;
    text-overflow: ellipsis;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr {
    transition: background 0.13s;
}

tbody tr:hover {
    background: #fafafa;
}

td.col-name {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

td.col-summary {
    color: #555;
    line-height: 1.5;
    white-space: nowrap;
}

td.col-view {
    text-align: center;
}

td.col-status {
    text-align: center;
}

.eye-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.15s, transform 0.15s;
    border-radius: 4px;
}

.eye-btn:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-width: 80px;
    text-align: center;
}

.badge-approved {
    background: #d4f0e6;
    color: #1a7a52;
}

.badge-pending {
    background: #dde8f7;
    color: #2a5cbf;
}

.badge-onhold {
    background: #fdf0d0;
    color: #9a6c00;
}

.badge-rejected {
    background: #fce0dd;
    color: #b84033;
}


col.col-action {
    width: 200px;
}

th.col-action {
    text-align: center;
}

td.col-action {
    text-align: center;
}

.connect-btn {
    display: inline-block;
    padding: 0.32rem 1.1rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-width: 80px;
    text-align: center;
    background: #d0eef7;
    color: #1a6a8a;
    border: 1.5px solid #a8d8ed;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
    text-decoration: none;
}

.connected-inv-sec {
    padding: 6rem 0;
}

.post-new-idea-btn {
    text-decoration: none;
}

.view-for-detail {
    text-decoration: none;
}

.connect-btn:hover {
    background: #1a6a8a;
    color: #fff;
    border-color: #1a6a8a;
    transform: translateY(-1px);
}


col.col-action {
    width: 200px;
}

th.col-action {
    text-align: center;
}

td.col-action {
    text-align: center;
}

.connect-btn {
    display: inline-block;
    padding: 0.32rem 1.1rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-width: 80px;
    text-align: center;
    background: #d0eef7;
    color: #1a6a8a;
    border: 1.5px solid #a8d8ed;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
}

.connect-btn:hover {
    background: #1a6a8a;
    color: #fff;
    border-color: #1a6a8a;
    transform: translateY(-1px);
}

.publish-btn {
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #1a6a8a;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s;
}

.publish-btn:hover {
    background: #0f4f69;
}

.connect-btn.connected {
    background: #d4f0e6;
    color: #1a7a52;
    border: 1px solid #1a7a52;
}

/* about page style  */
.about-section {
    padding: 56px 0;
}

.about-intro {
    font: 400 1.125rem var(--font-body);
    color: var(--primary-text);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.about-divider {
    width: 40px;
    height: 3px;
    background: #378ADD;
    border: none;
    margin: 0 0 2rem 0;
    border-radius: 0;
    opacity: 1;
}

.ceo-label {
    font: 600 1rem var(--font-body);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #dc3545;
    margin-bottom: 28px;
}

.ceo-quote {
    border-left: 3px solid #dc3545;
    padding: 4px 0 4px 24px;
    margin: 0 0 28px 0;
    border-radius: 0;
}

.ceo-quote p {
    font: 400 1.125rem var(--font-body);
    font-style: italic;
    color: var(--primary-text);
    line-height: 1.5;
    margin: 0;
}

.ceo-body {
    font: 400 1.125rem var(--font-body);
    color: var(--primary-text);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Signature */

.ceo-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ceo-sig__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0C447C;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 0.875rem var(--font-heading);
    color: #fff;
    flex-shrink: 0;
}

.ceo-sig__name {
    font: 500 1rem var(--font-heading);
    color: var(--primary-text);
    margin-bottom: 3px;
}

.ceo-sig__role {
    font: 400 0.8125rem var(--font-body);
    color: var(--primary-text);
    opacity: 0.6;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .about-intro {
        margin-bottom: 36px;
    }

    .ceo-quote p {
        font-size: 1rem;
    }
}

/* about page style end  */


/* policy pages style  */
.privacy-section {
    padding: 56px 0;
}

.privacy-intro {
    font: 400 1.125rem var(--font-body);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--primary-text);
}

.privacy-divider {
    width: 40px;
    height: 3px;
    background: #378ADD;
    border: none;
    margin-bottom: 2rem;
}

.privacy-heading {
    font: 600 1.2rem var(--font-heading);
    margin: 28px 0 12px;
    color: #0C447C;
}

.privacy-text {
    font: 400 1.05rem var(--font-body);
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.privacy-list {
    margin: 0 0 1.5rem 20px;
    color: var(--primary-text);
}

.privacy-list li {
    margin-bottom: 6px;
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 40px 0;
    }

    .privacy-text {
        font-size: 0.95rem;
    }
}

.btn-submit:disabled {
    background: #93c5fd;
    /* lighter blue */
    cursor: not-allowed;
    opacity: 0.7;
}

.connect-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* policy pages style end  */
