:root {
    --cf-orange: #ff914d;
    --cf-orange-dark: #ff6600;
    --cf-text: #222;
    --cf-bg: #fff;
    --cf-border: #e5e7eb;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--cf-bg);
    color: var(--cf-text);
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
}

.cf-header {
    background: #fff;
    border-bottom: 1px solid var(--cf-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cf-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.cf-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cf-logo img {
    height: 36px;
    display: block;
}

.cf-nav {
    display: flex;
    gap: 32px;
}

.cf-nav a {
    color: #1a1a1a;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s;
}

.cf-nav a:hover {
    color: var(--cf-orange);
}

.cf-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cf-icon-btn {
    background: none;
    border: none;
    padding: 7px 6px;
    cursor: pointer;
}

.cf-icon-btn img {
    width: 21px;
    height: 21px;
    display: block;
}

.cf-support,
.cf-sales {
    color: #666;
    font-size: 0.97rem;
    margin-right: 6px;
}

.cf-login {
    background: transparent;
    border: 1.8px solid var(--cf-orange);
    border-radius: 8px;
    padding: 7px 19px;
    color: #222;
    font-weight: 500;
    font-size: 1.07rem;
    margin-left: 5px;
    cursor: pointer;
    transition: background .16s, color .16s;
}

.cf-login:hover {
    background: var(--cf-orange);
    color: #fff;
}

.cf-under-attack {
    background: var(--cf-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 17px;
    font-weight: 600;
    font-size: 1.07rem;
    margin-left: 4px;
    cursor: pointer;
    transition: background .16s;
}

.cf-under-attack:hover {
    background: var(--cf-orange-dark);
}

.cf-hamburger {
    display: none;
    flex-direction: column;
    gap: 3px;
    width: 29px;
    height: 29px;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 6px;
}

.cf-hamburger span {
    width: 100%;
    height: 3px;
    background: #444;
    border-radius: 2px;
    transition: 0.2s;
}

/* HERO SECTION */
.cf-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 460px;
    padding: 55px 0 35px 0;
}

.cf-hero-text {
    flex: 1 1 57%;
    max-width: 560px;
}

.cf-hero-text h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 22px 0;
}

.highlight {
    color: var(--cf-orange);
}

.cf-lead {
    font-size: 1.19rem;
    color: #2b2b2b;
    margin-bottom: 34px;
    margin-top: 0;
}

.cf-cta {
    background: var(--cf-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 1.21rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .16s;
    box-shadow: 0 2px 16px #ff660015;
}

.cf-cta:hover {
    background: var(--cf-orange-dark);
}

.cf-hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 420px;
    /* Remove max-width so it can expand */
    /* position: relative; (for advanced overlay effects if needed) */
}

.cf-hero-img img {
    width: 540px;
    max-width: 95vw;
    min-width: 200px;
    height: auto;
    /* 3D rotation for more earth-like effect */
    animation: globeEarthSpin 13s linear infinite;
    filter: drop-shadow(0 0 40px #fbbc0580);
    will-change: transform;
    /* Makes it overlap behind text a little on desktop for bold look */
    margin-left: -30px;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .cf-hero-img {
        min-width: 220px;
    }

    .cf-hero-img img {
        width: 270px;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .cf-hero-img img {
        width: 145px;
        margin-left: 0;
        margin-top: 0;
    }
}
@keyframes globeEarthSpin {
    0% {
        transform: perspective(1000px) rotateY(0deg) rotateZ(1deg);
    }

    80% {
        transform: perspective(1000px) rotateY(360deg) rotateZ(1deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg) rotateZ(1deg);
    }
}



/* Responsive Styles */
@media (max-width: 1120px) {

    .cf-header .container,
    .cf-hero.container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cf-header .container {
        align-items: center;
    }

    .cf-hero {
        align-items: flex-start;
        padding: 38px 0 20px 0;
        min-height: unset;
    }

    .cf-hero-img img {
        width: 210px;
    }

    .cf-hero-text h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 780px) {
    .container {
        padding: 0 10px;
    }

    .cf-header .container {
        padding: 0 7px;
    }

    .cf-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 65px;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 28px 0 16px 0;
        box-shadow: 0 3px 16px #e9e8ef61;
        z-index: 900;
    }

    .cf-nav.active {
        display: flex;
    }

    .cf-hamburger {
        display: flex;
    }

    .cf-header .container {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        height: 64px;
    }

    .cf-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0 10px 0;
    }

    .cf-hero-img {
        width: 100%;
        justify-content: center;
        margin-top: 14px;
    }

    .cf-hero-img img {
        width: 110px;
    }

    .cf-hero-text h1 {
        font-size: 1.2rem;
    }

    .cf-cta {
        padding: 11px 22px;
        font-size: 1.06rem;
    }
}

@media (max-width: 520px) {
    .cf-hero-text h1 {
        font-size: 1.01rem;
    }

    .cf-hero-img img {
        width: 78px;
    }
}

.cf-section {
    margin-top: 42px;
    margin-bottom: 42px;
}

.cf-section-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
}

.cf-section-content {
    flex: 1 1 53%;
    max-width: 560px;
}

.cf-section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.13;
}

.cf-section-content p {
    font-size: 1.21rem;
    color: #232323;
    margin-bottom: 28px;
    margin-top: 0;
}

.cf-section-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 38px;
}

.cf-sales-btn {
    background: var(--cf-orange);
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 16px 38px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
    box-shadow: 0 2px 14px #ff660015;
}

.cf-sales-btn:hover {
    background: var(--cf-orange-dark);
}

.cf-learn-more {
    color: #111;
    font-size: 1.12rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.cf-learn-more:hover {
    color: var(--cf-orange);
}

.cf-learn-more .arrow {
    color: var(--cf-orange);
    font-size: 1.3em;
}

.cf-related {
    margin-top: 38px;
}

.cf-related strong {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 16px;
}

.cf-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
}

.cf-related-links a {
    color: #111;
    font-size: 1.07rem;
    text-decoration: underline;
    transition: color .15s;
}

.cf-related-links a:hover {
    color: var(--cf-orange);
}

.cf-section-image {
    flex: 1 1 47%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 220px;
    /* Remove bg for your real asset; for now, just placeholder size */
}

.cf-section-image img {
    width: 420px;
    max-width: 97vw;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .cf-section-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .cf-section-image {
        width: 100%;
        justify-content: center;
        margin-top: 14px;
    }

    .cf-section-image img {
        width: 250px;
    }
}

@media (max-width: 700px) {
    .cf-section-content h2 {
        font-size: 1.29rem;
    }

    .cf-section-content p,
    .cf-learn-more,
    .cf-sales-btn {
        font-size: 0.97rem;
    }

    .cf-section-image img {
        width: 110px;
    }

    .cf-related-links {
        flex-direction: column;
        gap: 8px;
    }

    .cf-section {
        margin: 20px 0;
    }
}

.cf-help-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 38px 0;
}

/* Add background image */
.cf-help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('slider1.jpg');
    /* <-- your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Add dark overlay */
.cf-help-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(20, 20, 30, 0.5);
    /* opacity for darkening */
}

/* Make sure all content is above overlay */
.cf-help-section>.container {
    position: relative;
    z-index: 3;
}

.cf-help-title {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 34px;
    margin-top: 0;
}

.cf-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 36px;
    justify-content: center;
    margin-bottom: 34px;
}

.cf-help-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 10px #ff914d14;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 16px 28px 16px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111;
    transition: box-shadow 0.16s, transform 0.14s;
    min-height: 172px;
    text-align: center;
}

.cf-help-card:hover {
    box-shadow: 0 4px 22px #ff660020;
    transform: translateY(-3px) scale(1.03);
}

.cf-help-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
    display: block;
}

.cf-help-more-wrap {
    display: flex;
    justify-content: center;
}

.cf-help-more {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 16px 38px;
    font-size: 1.13rem;
    font-weight: 500;
    margin-top: 20px;
    box-shadow: 0 2px 10px #ff914d14;
    cursor: pointer;
    transition: background .14s, color .14s;
}

.cf-help-more:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 1050px) {
    .cf-help-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .cf-help-title {
        font-size: 1.35rem;
    }

    .cf-help-grid {
        grid-template-columns: 1fr;
        gap: 22px 0;
    }

    .cf-help-section {
        padding: 35px 0 24px 0;
    }

    .cf-help-card {
        font-size: 1rem;
        padding: 22px 8px 17px 8px;
        min-height: 110px;
    }

    .cf-help-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 9px;
    }

    .cf-help-more {
        padding: 11px 21px;
        font-size: .97rem;
    }
}

.cf-tabs-section {
    margin: 58px auto 0 auto;
}

.cf-tabs-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 25px;
    position: relative;
    font-size: 1.21rem;
    font-weight: 500;
    border-bottom: 1.5px solid #ececec;
}

.cf-tab-link {
    background: none;
    border: none;
    color: #7b7b7b;
    font-size: 1.11rem;
    font-weight: 500;
    cursor: pointer;
    padding: 15px 6px 9px 6px;
    position: relative;
    transition: color .15s;
    outline: none;
}

.cf-tab-link.active {
    color: #111;
    font-weight: 600;
}

.cf-tabs-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 94px;
    height: 2.5px;
    background: var(--cf-orange);
    border-radius: 5px;
    transition: left .28s cubic-bezier(.61, -0.21, .41, 1.28), width .25s;
    z-index: 2;
}

.cf-tabs-content {
    margin-top: 22px;
}

.cf-tab-panel {
    display: none;
    animation: fadeIn .26s;
}

.cf-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.cf-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0;
}

.cf-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px #ebe4d91a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    transition: box-shadow .16s, transform .13s;
}

.cf-card:hover {
    box-shadow: 0 8px 30px #ff914d28;
    transform: translateY(-5px) scale(1.025);
}

.cf-card-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(115deg, #ff914d 70%, #ffb347 120%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-card-img img {
    width: 106px;
    height: 106px;
    object-fit: contain;
    display: block;
}

.cf-card-body {
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}

.cf-card-type {
    color: #7b7b7b;
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.cf-card-title {
    color: #111;
    font-size: 1.19rem;
    font-weight: 600;
    margin: 0 0 17px 0;
    flex: 1 1 auto;
}

.cf-card-link {
    margin-top: auto;
    color: var(--cf-orange);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.04rem;
    transition: color .13s;
}

.cf-card-link:hover {
    color: #ff6600;
}

@media (max-width: 1150px) {
    .cf-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

@media (max-width: 700px) {
    .cf-tabs-nav {
        gap: 10px;
        font-size: 0.98rem;
        padding-left: 2px;
    }

    .cf-cards-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .cf-card-img {
        height: 110px;
    }

    .cf-card-img img {
        width: 58px;
        height: 58px;
    }
}

.cf-connectivity {
    background: linear-gradient(160deg, #ff914d 58%, #ff6600 100%);
    padding: 70px 0 64px 0;
    border-radius: 0 0 140px 140px / 0 0 70px 70px;
    margin-top: 64px;
}

.cf-connectivity-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 46px;
    margin-top: 0;
}

.cf-connectivity-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.cf-connectivity-item {
    flex: 1 1 0;
    text-align: center;
    padding: 0 18px;
}

.cf-connectivity-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
}

.cf-connectivity-item h3 {
    font-size: 1.38rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
}

.cf-connectivity-item p {
    color: #232323;
    font-size: 1.13rem;
    margin-bottom: 19px;
    margin-top: 0;
}

.cf-connectivity-link {
    color: #111;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    transition: color .14s;
}

.cf-connectivity-link:hover {
    color: var(--cf-orange);
}

@media (max-width: 900px) {
    .cf-connectivity-title {
        font-size: 1.27rem;
        margin-bottom: 25px;
    }

    .cf-connectivity-grid {
        flex-direction: column;
        gap: 26px;
        align-items: stretch;
    }

    .cf-connectivity {
        padding: 38px 0 36px 0;
        border-radius: 0 0 65px 65px / 0 0 40px 40px;
    }

    .cf-connectivity-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
    }

    .cf-connectivity-item h3 {
        font-size: 1.07rem;
    }

    .cf-connectivity-item p,
    .cf-connectivity-link {
        font-size: 0.97rem;
    }
}

.cf-footer {
    background: #09083d;
    color: #fff;
    padding: 48px 0 0 0;
    font-family: 'Inter', 'Segoe UI', Arial, system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

.cf-footer-main {
    display: flex;
    align-items: flex-start;
    gap: 42px;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.cf-footer-brand {
    flex: 0 0 132px;
    margin-right: 24px;
    display: flex;
    align-items: flex-start;
}

.cf-footer-logo {
    width: 122px;
    height: auto;
}

.cf-footer-columns {
    display: flex;
    gap: 36px;
    flex: 1 1 0;
}

.cf-footer-col {
    display: flex;
    flex-direction: column;
    min-width: 155px;
    gap: 4px;
}

.cf-footer-head {
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cf-footer-col a {
    color: #fff;
    opacity: 0.87;
    text-decoration: none;
    font-size: 0.99rem;
    line-height: 1.8;
    font-weight: 400;
    transition: opacity .13s;
}

.cf-footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cf-footer-contact {
    color: #ff914d;
    font-weight: 500;
    font-size: 1.08rem;
    margin-left: auto;
    min-width: 210px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cf-footer-contact span {
    color: #ff914d;
    font-weight: 500;
}

.cf-footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    margin-left: 4px;
}

.cf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #28245e;
    margin-top: 40px;
    padding: 18px 0 22px 0;
    font-size: 0.97rem;
    flex-wrap: wrap;
    gap: 10px;
}

.cf-footer-copy {
    color: #fff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cf-footer-copy a {
    color: #fff;
    opacity: 0.86;
    text-decoration: underline;
    margin: 0 7px 0 0;
}

.cf-footer-privacy {
    color: #fff;
    opacity: 0.86;
    margin: 0 6px 0 0;
    font-size: 0.97rem;
    display: inline-block;
    vertical-align: middle;
}

.cf-footer-social {
    display: flex;
    gap: 15px;
}

.cf-footer-social img {
    width: 21px;
    height: 21px;
    filter: brightness(2.2);
    opacity: 0.93;
    transition: opacity .14s;
    vertical-align: middle;
}

.cf-footer-social img:hover {
    opacity: 1;
}

@media (max-width: 1150px) {
    .cf-footer-main {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cf-footer-columns {
        gap: 16px;
    }
}

@media (max-width: 900px) {

    .cf-footer-main,
    .cf-footer-columns {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cf-footer-contact {
        margin-left: 0;
        margin-top: 18px;
    }

    .cf-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.93rem;
    }

    .cf-footer-logo {
        width: 90px;
    }
}

.cf-hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.cf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s cubic-bezier(.9, 0, .23, 1);
}

.cf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 30, 0.54);
    /* Adjust opacity here */
    z-index: 2;
}

/* Content sits above overlay */
.cf-hero-slider-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 560px;
}

@media (max-width: 900px) {
    .cf-hero-slider-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: 340px;
        gap: 18px;
    }

    .cf-hero-img img {
        width: 150px;
    }
}

/* Optional: add smooth fade for text if you wish */

/* Make all text in the hero section white */
.cf-hero-slider-content h1,
.cf-hero-slider-content p,
.cf-hero-slider-content .cf-cta {
    color: #fff;
}

.cf-hero-slider-content h1 .highlight {
    color: #FBBC05;
}

/* Button styles */
.cf-cta {
    background: #FBBC05;
    color: #222;
    /* You can use #fff for white text if you want more contrast */
    border: none;
    border-radius: 10px;
    padding: 17px 46px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 1px 4px rgba(251, 188, 5, 0.12);
    transition: background 0.2s, color 0.2s;
}

.cf-cta:hover {
    background: #e2a500;
    color: #fff;
}

/* Optional: make sure paragraph is readable on dark backgrounds */
.cf-lead {
    color: #fff !important;
}

/* Emergency Modal Overlay */
.em-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 20, 40, 0.45);
    z-index: 1100;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    animation: fadeIn 0.22s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Box */
.em-modal {
    margin: 82px 0 0 0;
    background: #fff;
    border-radius: 18px;
    max-width: 420px;
    width: 95%;
    box-shadow: 0 12px 44px #1115;
    position: relative;
    padding: 34px 28px 28px 28px;
    animation: modalUp 0.21s cubic-bezier(.41, 1.45, .54, 1.01);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* NEW: center vertically in modal */
}

@keyframes modalUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

/* Round Logo Placeholder */
.em-modal-logo {
    width: 82px;
    height: 82px;
    background: #fbbc05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -58px auto 12px auto;
    box-shadow: 0 4px 24px #fbbc0532;
    border: 5px solid #fff;
    position: relative;
    top: -48px;
}

.em-modal-logo img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 1px 4px #2221;
}

/* Modal Title */
.em-modal-title {
    color: #111;
    font-size: 1.39rem;
    font-weight: 700;
    margin: 12px 0 18px 0;
    text-align: center;
}

/* Modal Form */
.em-modal-form {
    width: 90%;
    /* Slightly less than modal width */
    max-width: 320px;
    /* Restrict so fields don't get too wide */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the fields horizontally */
    gap: 13px;
    margin: 0 auto 10px auto;
    /* Center within modal */
}

.em-modal-form input,
.em-modal-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 1.04rem;
    resize: none;
    text-align: left;
}

.em-modal-form textarea {
    min-height: 70px;
}

.em-modal-submit {
    background: #fbbc05;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.13rem;
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    transition: background .14s;
}

.em-modal-submit:hover {
    background: #e2a500;
    color: #fff;
}

/* Close Button */
.em-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #444b;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    z-index: 2;
}

.em-modal-close:hover {
    color: #d21;
}

@media (max-width: 600px) {
    .em-modal {
        padding: 23px 8px 18px 8px;
        max-width: 98vw;
    }

    .em-modal-logo {
        width: 61px;
        height: 61px;
        top: -35px;
    }

    .em-modal-logo img {
        width: 38px;
        height: 38px;
    }

    .em-modal-title {
        font-size: 1.06rem;
    }

    .em-modal-form {
        max-width: 98vw;
    }
}
/* Overlay for slider */
.apply-slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 28, 48, 0.33);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

/* The slider itself */
.apply-slider {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 98vw;
    background: #fff;
    box-shadow: -8px 0 32px #2224;
    z-index: 1120;
    transform: translateX(120%);
    transition: transform 0.33s cubic-bezier(.47, 1.64, .41, .87);
    display: flex;
    flex-direction: column;
    padding: 0 0 20px 0;
}

/* Header inside the slider */
.apply-slider-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 28px 28px 16px 28px;
    border-bottom: 1px solid #fbbc05;
    background: #fff;
    position: relative;
}

.apply-slider-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbbc05;
    padding: 6px;
}

.apply-slider-title {
    font-size: 1.36rem;
    font-weight: 700;
    color: #fbbc05;
    flex: 1;
}

.apply-slider-close {
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    transition: color .14s;
}

.apply-slider-close:hover {
    color: #d21;
}

/* Form styles */
.apply-slider-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 24px 28px;
    margin-top: 8px;
}

.apply-slider-form input,
.apply-slider-form select,
.apply-slider-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.3px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
    font-family: inherit;
}

.apply-slider-form textarea {
    min-height: 58px;
}

.apply-slider-submit {
    background: #fbbc05;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.13rem;
    margin-top: 8px;
    cursor: pointer;
    transition: background .14s;
}

.apply-slider-submit:hover {
    background: #e2a500;
    color: #fff;
}

@media (max-width: 650px) {
    .apply-slider {
        width: 99vw;
        padding: 0 0 10px 0;
    }

    .apply-slider-header,
    .apply-slider-form {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.cf-support-section {
    padding: 58px 0 48px 0;
}

.cf-support-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 38px;
    color: #2a2450;
}

.cf-support-main {
    display: flex;
    gap: 44px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left column */
.cf-support-left {
    flex: 1.2 1 320px;
    min-width: 310px;
}

/* Accordion */
.cf-accordion {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px #1111;
    margin-bottom: 28px;
}

.cf-accordion-btn {
    background: #f8f9fb;
    color: #222;
    cursor: pointer;
    padding: 17px 20px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.09rem;
    font-weight: 600;
    transition: background 0.14s;
    border-bottom: 1px solid #ececec;
}

.cf-accordion-btn.active,
.cf-accordion-btn:hover {
    background: #fbbc0540;
}

.cf-accordion-panel {
    padding: 0 20px 17px 20px;
    background: #fff;
    font-size: 1rem;
    display: none;
}

/* Support Cards */
.cf-support-cards {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.cf-support-card {
    background: #fff5e1;
    border-radius: 9px;
    box-shadow: 0 1px 6px #fbbc0530;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1 1 110px;
    min-width: 170px;
    margin-bottom: 9px;
}

.cf-support-card img {
    width: 39px;
    height: 39px;
}

.cf-support-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.cf-support-card p {
    margin: 0;
    font-size: 0.97rem;
}

/* Right column */
.cf-support-right {
    flex: 1 1 290px;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf-support-video {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px #1111;
    padding: 13px 13px 3px 13px;
    margin-bottom: 14px;
    text-align: center;
}

.cf-support-video-caption {
    font-size: .97rem;
    color: #3e375c;
    margin: 5px 0 0 0;
}

/* Support Form */
.cf-support-form {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px #1111;
    padding: 19px 15px 14px 15px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.cf-support-form h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #fbbc05;
    font-weight: 700;
}

.cf-support-form input,
.cf-support-form textarea {
    border: 1.3px solid #ddd;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: inherit;
}

.cf-support-form textarea {
    min-height: 62px;
    resize: vertical;
}

.cf-support-form button {
    background: #fbbc05;
    color: #111;
    border: none;
    border-radius: 7px;
    padding: 11px 0;
    font-size: 1.11rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background .14s;
}

.cf-support-form button:hover {
    background: #e2a500;
    color: #fff;
}

@media (max-width: 900px) {
    .cf-support-main {
        flex-direction: column;
        gap: 25px;
    }

    .cf-support-left,
    .cf-support-right {
        min-width: 0;
    }
}

.cf-diaspora-section {
    padding: 55px 0 40px 0;
}

/* Ticker */
.cf-diaspora-ticker {
    background: #fbbc05;
    color: #111;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1.08rem;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 28px;
    position: relative;
}

.cf-diaspora-ticker-inner {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 27s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-110%);
    }
}

/* News Carousel */
.cf-diaspora-news {
    margin-bottom: 32px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 12px #1112;
    padding: 22px 13px 12px 13px;
}

.cf-diaspora-news h2 {
    font-size: 1.44rem;
    margin-bottom: 16px;
}

.cf-diaspora-carousel {
    position: relative;
    width: 100%;
    min-height: 200px;
    overflow: hidden;
}

.cf-diaspora-carousel-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.44s;
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 13px;
    box-sizing: border-box;
}

.cf-diaspora-carousel-item.active {
    display: block;
    opacity: 1;
    position: relative;
}

.cf-diaspora-carousel-item img {
    width: 90px;
    height: 90px;
    border-radius: 13px;
    float: left;
    margin-right: 18px;
    object-fit: cover;
}

.cf-diaspora-carousel-caption {
    padding-top: 8px;
}

.cf-diaspora-carousel-caption h4 {
    margin: 0 0 7px 0;
    font-size: 1.12rem;
    color: #fbbc05;
}

.cf-diaspora-carousel-caption p {
    margin: 0;
    font-size: 0.99rem;
}

.cf-diaspora-carousel-controls {
    margin-top: 10px;
    text-align: right;
}

.cf-diaspora-carousel-controls button {
    background: #fbbc05;
    color: #111;
    border: none;
    font-size: 1.31rem;
    margin: 0 4px;
    border-radius: 7px;
    width: 37px;
    height: 37px;
    cursor: pointer;
    transition: background .16s;
}

.cf-diaspora-carousel-controls button:hover {
    background: #e2a500;
    color: #fff;
}

/* Community Cards */
.cf-diaspora-community {
    margin: 30px 0 38px 0;
}

.cf-diaspora-community h3 {
    margin-bottom: 17px;
    font-size: 1.17rem;
    color: #2a2450;
}

.cf-diaspora-community-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cf-diaspora-community-card {
    background: #fff5e1;
    border-radius: 10px;
    box-shadow: 0 1px 7px #fbbc0521;
    padding: 17px 12px 13px 12px;
    min-width: 180px;
    max-width: 230px;
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cf-diaspora-community-card img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.cf-diaspora-community-card h5 {
    margin: 0 0 7px 0;
    color: #fbbc05;
}

.cf-diaspora-community-card p {
    margin: 0 0 11px 0;
    font-size: 0.97rem;
}

.cf-diaspora-community-card a {
    color: #fff;
    background: #fbbc05;
    padding: 6px 19px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    transition: background .13s;
}

.cf-diaspora-community-card a:hover {
    background: #e2a500;
    color: #fff;
}

/* Engagement Form */
.cf-diaspora-engage {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 11px #1112;
    padding: 26px 20px 18px 20px;
    max-width: 440px;
    margin: 0 auto;
}

.cf-diaspora-engage h3 {
    color: #fbbc05;
    margin-bottom: 12px;
}

.cf-diaspora-engage-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.cf-diaspora-engage-form input,
.cf-diaspora-engage-form select,
.cf-diaspora-engage-form textarea {
    border: 1.3px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
}

.cf-diaspora-engage-form textarea {
    min-height: 48px;
}

.cf-diaspora-engage-form button {
    background: #fbbc05;
    color: #111;
    border: none;
    border-radius: 7px;
    padding: 10px 0;
    font-size: 1.09rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background .13s;
}

.cf-diaspora-engage-form button:hover {
    background: #e2a500;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .cf-diaspora-community-grid {
        flex-direction: column;
        gap: 12px;
    }
}

.cf-ad-scrollbar {
    width: 100%;
    overflow: hidden;
    margin: 0 0 26px 0;
    position: relative;
    background: #fff;
    padding: 10px 0 16px 0;
}

.cf-ad-scrollbar-inner {
    display: flex;
    gap: 16px;
    transition: transform 0.65s cubic-bezier(.7, 1.6, .35, 1);
    will-change: transform;
}

.cf-ad-card {
    position: relative;
    flex: 0 0 16.5%;
    /* 6 cards per row; (100/6 = 16.66%) */
    max-width: 17.5%;
    min-width: 210px;
    height: 170px;
    border-radius: 13px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 2px 16px #1112;
    display: flex;
    align-items: flex-end;
}

.cf-ad-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 24, 0.53);
    z-index: 1;
    transition: background 0.18s;
}

.cf-ad-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 18px 14px 15px 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cf-ad-card h4 {
    margin: 0 0 7px 0;
    font-size: 1.12rem;
    font-weight: 700;
}

.cf-ad-card p {
    margin: 0 0 12px 0;
    font-size: 0.99rem;
}

.cf-ad-card button {
    background: #fbbc05;
    color: #111;
    border: none;
    border-radius: 7px;
    padding: 6px 19px;
    font-size: .97rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .13s;
}

.cf-ad-card button:hover {
    background: #e2a500;
    color: #fff;
}

@media (max-width: 1400px) {
    .cf-ad-card {
        min-width: 180px;
    }
}

@media (max-width: 1000px) {
    .cf-ad-card {
        flex-basis: 33%;
        max-width: 36%;
    }
}

@media (max-width: 700px) {
    .cf-ad-card {
        flex-basis: 70%;
        max-width: 81vw;
    }

    .cf-ad-scrollbar-inner {
        gap: 12px;
    }

    .cf-ad-card {
        height: 135px;
        min-width: 160px;
    }
}
.cf-embassies-section {
    padding: 58px 0 48px 0;
}

.cf-embassies-title {
    text-align: center;
    font-size: 2.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2a2450;
}

.cf-embassies-desc {
    text-align: center;
    font-size: 1.07rem;
    color: #4e477a;
    margin-bottom: 36px;
}

.cf-embassy-continent {
    margin-bottom: 44px;
}

.cf-embassy-continent-title {
    font-size: 1.3rem;
    color: #fbbc05;
    margin: 26px 0 16px 0;
    font-weight: 700;
    letter-spacing: 1px;
    border-left: 4px solid #fbbc05;
    padding-left: 15px;
}

.cf-embassy-countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
    justify-content: flex-start;
    margin-bottom: 6px;
}

.cf-embassy-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 24px #28232813;
    flex: 1 1 320px;
    max-width: 440px;
    min-width: 290px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s;
    border-top: 5px solid #fbbc05;
}

.cf-embassy-card:hover {
    box-shadow: 0 7px 40px #1c163845;
    border-top: 5px solid #e2a500;
}

.cf-embassy-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 17px 7px 17px;
}

.cf-embassy-card-header img {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    object-fit: contain;
    background: #fbbc0527;
    border: 1.5px solid #fbbc05;
}

.cf-embassy-country {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a2450;
}

.cf-embassy-card-body {
    padding: 0 17px 14px 17px;
    font-size: 1rem;
    color: #32325d;
}

.cf-embassy-map {
    margin: 11px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 2px 9px #3333;
}

.cf-embassy-map iframe {
    width: 100%;
    height: 180px;
    border: none;
}

@media (max-width: 1100px) {
    .cf-embassy-countries-grid {
        flex-direction: column;
        gap: 19px;
    }

    .cf-embassy-card {
        max-width: 99vw;
    }
}

@media (max-width: 650px) {
    .cf-embassy-card-header {
        padding: 13px 8px 5px 8px;
    }

    .cf-embassy-card-body {
        padding: 0 8px 10px 8px;
    }
}
