* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}



body {
    background: #000;
}

/* =========================start HERO SECTION========================= */

.cfv-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 30px 7%;
    background:
        radial-gradient(circle at top left,
            rgba(254, 222, 0, .18),
            transparent 25%),

        radial-gradient(circle at bottom right,
            rgba(212, 160, 23, .18),
            transparent 25%),

        linear-gradient(135deg,
            #000 0%,
            #0d0d0d 40%,
            #1a1400 100%);
}

/* =========================
BACKGROUND GRID
========================= */

.cfv-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(254, 222, 0, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 222, 0, .05) 1px, transparent 1px);

    background-size: 50px 50px;

    opacity: .4;
}

/* =========================
GLOW EFFECTS
========================= */

.cfv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cfv-glow1 {
    width: 300px;
    height: 300px;
    background: rgba(254, 222, 0, .15);
    top: -100px;
    left: -100px;
}

.cfv-glow2 {
    width: 350px;
    height: 350px;
    background: rgba(212, 160, 23, .15);
    bottom: -120px;
    right: -120px;
}

/* =========================
NAVBAR
========================= */

.cfv-navbar {
    position: relative;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 35px;

    border: 1px solid rgba(255, 255, 255, .08);

    background: rgba(255, 255, 255, .04);

    backdrop-filter: blur(18px);

    border-radius: 20px;
}

/* Logo */

.cfv-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cfv-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            rgba(254, 222, 0, .15),
            rgba(255, 255, 255, .04));

    border: 1px solid rgba(254, 222, 0, .15);

    backdrop-filter: blur(10px);

    overflow: hidden;

    box-shadow:
        0 0 25px rgba(254, 222, 0, .15);
}

.cfv-logo-link img {
    width: 85%;
    object-fit: contain;
}

.cfv-logo-text h2 {
    color: #fff;
    font-size: 28px;
}

.cfv-logo-text span {
    color: #d5d5d5;
    font-size: 13px;
}

/* Nav Links */

.cfv-nav-links {
    display: flex;
    gap: 18px;
}

.cfv-nav-links a {
    text-decoration: none;
    color: #fff;

    padding: 12px 20px;

    border-radius: 10px;

    transition: .4s;
}

.cfv-nav-links a:hover {
    background: rgba(254, 222, 0, .12);
    color: #fede00;
}

.cfv-nav-links i {
    margin-right: 8px;
}

/* =========================
CONTAINER
========================= */

.cfv-container {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 70px;

    padding-top: 90px;
}

/* =========================
LEFT CONTENT
========================= */

.cfv-left {
    flex: 1;
}

.cfv-mini-badge {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .18);

    color: #fede00;

    margin-bottom: 30px;

    font-size: 14px;
}

.cfv-left h1 {
    font-size: 76px;
    line-height: 1.1;
    color: #fff;

    margin-bottom: 30px;
}

.cfv-left h1 span {
    color: #fede00;
    text-shadow: 0 0 25px rgba(254, 222, 0, .3);
}

.cfv-left p {
    color: #cfcfcf;

    font-size: 18px;
    line-height: 1.8;

    max-width: 700px;

    margin-bottom: 45px;
}

/* Features */

.cfv-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    margin-bottom: 50px;
}

.cfv-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px 24px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    backdrop-filter: blur(12px);
}

.cfv-feature-box i {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background:
        linear-gradient(135deg, #fede00, #d4a017);

    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.cfv-feature-box h4 {
    color: #fff;
    margin-bottom: 5px;
}

.cfv-feature-box span {
    color: #bcbcbc;
    font-size: 13px;
}

/* =========================
SEARCH BOX
========================= */

.cfv-search-box {
    display: flex;
    gap: 20px;

    padding: 25px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(254, 222, 0, .12);

    backdrop-filter: blur(18px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.cfv-input-box {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #0f0f0f;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

    padding: 0 20px;
}

.cfv-input-box i {
    color: #fede00;
    font-size: 20px;
}

.cfv-input-box input {
    width: 100%;
    height: 65px;

    background: none;
    border: none;
    outline: none;

    color: #fff;
    font-size: 18px;
}

.cfv-search-box button {
    border: none;
    outline: none;

    padding: 0 35px;

    border-radius: 15px;

    background:
        linear-gradient(135deg, #fede00, #d4a017);

    color: #000;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: .4s;
}

.cfv-search-box button:hover {
    transform: translateY(-3px);
}

.cfv-search-box button i {
    margin-left: 10px;
}

/* =========================
RIGHT CARD
========================= */

.cfv-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cfv-card {
    position: relative;

    width: 470px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(254, 222, 0, .15);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .5),
        0 0 40px rgba(254, 222, 0, .08);
}

.cfv-card-top {
    height: 8px;

    background:
        linear-gradient(to right,
            #fede00,
            #d4a017,
            #fede00);
}

.cfv-card-content {
    padding: 45px;
}

.cfv-status {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #4dff9c;
}

.cfv-status i {
    font-size: 24px;
}

.cfv-card-content h3 {
    color: #fff;
    font-size: 38px;

    margin-bottom: 20px;
}

.cfv-card-content p {
    color: #cfcfcf;
    line-height: 1.8;

    margin-bottom: 35px;
}

/* Details */

.cfv-card-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cfv-detail {
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cfv-detail span {
    display: block;

    color: #9d9d9d;

    margin-bottom: 8px;
}

.cfv-detail strong {
    color: #fff;
    font-size: 18px;
}

.cfv-valid {
    color: #4dff9c !important;
}

/* Shine */

.cfv-shine {
    position: absolute;

    top: -120px;
    left: -100px;

    width: 180px;
    height: 500px;

    background: rgba(255, 255, 255, .05);

    transform: rotate(25deg);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px) {

    .cfv-container {
        flex-direction: column;
    }

}



/* =========================
   LAPTOP / SMALL DESKTOP (1024px)
========================= */
@media (max-width: 1024px) {

  .cfv-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .cfv-left h1 {
    font-size: 56px;
  }

  .cfv-left p {
    margin: auto;
    font-size: 17px;
  }

   .cfv-features {
    margin-top: 20px;
  }


}

/* =========================
   TABLET (768px)
========================= */
@media (max-width: 768px) {

  .cfv-navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .cfv-logo-text h2 {
    font-size: 24px;
  }

  .cfv-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

    .cfv-card {
        width: 100%;
    }

  .cfv-left h1 {
    font-size: 44px;
  }

  .cfv-left p {
    font-size: 16px;
    line-height: 1.7;
  }

  .cfv-features {
    justify-content: center;
    margin-top: 20px;
  }
  
}

/* =========================
   LARGE MOBILE (600px)
========================= */
@media (max-width: 600px) {

  .cfv-hero {
    padding: 20px 5%;
  }

  .cfv-left h1 {
    font-size: 36px;
  }

  .cfv-mini-badge {
    font-size: 12px;
    padding: 10px 16px;
  }

    .cfv-features {
    margin-top: 20px;
  }
  
}

/* =========================
   MOBILE (480px)
========================= */
@media (max-width: 480px) {

  .cfv-left h1 {
    font-size: 30px;
  }

  .cfv-left p {
    font-size: 15px;
  }

  .cfv-logo-link {
    width: 60px;
    height: 60px;
  }

  .cfv-logo-text h2 {
    font-size: 20px;
  }

  .cfv-nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }
  .cfv-features {
    margin-top: 20px;
  }
 
}

/* =========================
   SMALL MOBILE (360px)
========================= */
@media (max-width: 360px) {

  .cfv-left h1 {
    font-size: 26px;
  }

  .cfv-left p {
    font-size: 14px;
  }

  .cfv-nav-links {
    gap: 10px;
  }

  .cfv-card-content h3 {
    font-size: 22px;
  }

    .cfv-features {
    margin-top: 20px;
  }
}

/* =========================end HERO SECTION========================= */

/* =========================start VERIFICATION SEARCH SECTION======================== */

.cfvs-search-section {
    position: relative;
    overflow: hidden;

    padding: 120px 7%;

    background:
        linear-gradient(135deg,
            #050505 0%,
            #0d0d0d 45%,
            #1a1400 100%);
}

/* =========================
BACKGROUND GLOWS
========================= */

.cfvs-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cfvs-glow-left {
    width: 300px;
    height: 300px;

    background: rgba(254, 222, 0, .12);

    top: -100px;
    left: -100px;
}

.cfvs-glow-right {
    width: 350px;
    height: 350px;

    background: rgba(212, 160, 23, .10);

    bottom: -100px;
    right: -100px;
}

/* =========================
CONTAINER
========================= */

.cfvs-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;
}

/* =========================
HEADING
========================= */

.cfvs-heading {
    text-align: center;
    margin-bottom: 70px;
}

.cfvs-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .18);

    color: #fede00;

    font-size: 14px;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.cfvs-heading h2 {
    font-size: 64px;
    color: #fff;

    margin-bottom: 25px;
}

.cfvs-heading h2 span {
    color: #fede00;
    text-shadow: 0 0 20px rgba(254, 222, 0, .3);
}

.cfvs-heading p {
    max-width: 800px;
    margin: auto;

    color: #cfcfcf;

    font-size: 18px;
    line-height: 1.8;
}

/* =========================
SEARCH BOX
========================= */

.cfvs-search-box {
    position: relative;

    border-radius: 35px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(254, 222, 0, .12);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 40px rgba(254, 222, 0, .06);
}

.cfvs-search-top {
    height: 8px;

    background:
        linear-gradient(to right,
            #fede00,
            #d4a017,
            #fede00);
}

.cfvs-search-content {
    display: flex;
    align-items: center;
    gap: 50px;

    padding: 60px;
}

/* =========================
LEFT ICON
========================= */

.cfvs-search-icon {
    width: 220px;
    display: flex;
    justify-content: center;
}

.cfvs-icon-circle {
    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    box-shadow:
        0 0 40px rgba(254, 222, 0, .25);
}

.cfvs-icon-circle::before {
    content: '';

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    border: 1px dashed rgba(254, 222, 0, .3);
}

.cfvs-icon-circle img {
    width: 165px;

    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

/* =========================
FORM
========================= */

.cfvs-search-form {
    flex: 1;
}

.cfvs-search-form label {
    display: block;

    color: #fede00;

    font-size: 18px;
    font-weight: 600;

    margin-bottom: 18px;
}

.cfvs-input-group {
    display: flex;
    align-items: center;

    gap: 15px;

    height: 75px;

    padding: 0 25px;

    border-radius: 18px;

    background: #0d0d0d;

    border: 1px solid rgba(255, 255, 255, .08);

    margin-bottom: 30px;
}

.cfvs-input-group i {
    color: #fede00;
    font-size: 22px;
}

.cfvs-input-group input {
    width: 100%;
    height: 100%;

    background: none;
    border: none;
    outline: none;

    color: #fff;
    font-size: 18px;
}

/* =========================
BUTTON
========================= */

.cfvs-search-buttons button {
    height: 65px;

    padding: 0 40px;

    border: none;
    outline: none;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    color: #000;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: .4s;

    box-shadow:
        0 15px 40px rgba(254, 222, 0, .25);
}

.cfvs-search-buttons button:hover {
    transform: translateY(-3px);
}

.cfvs-search-buttons button i {
    margin-left: 10px;
}

/* =========================
INFO BOXES
========================= */

.cfvs-search-info {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-top: 35px;
}

.cfvs-info-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .06);
}

.cfvs-info-box i {
    color: #fede00;
}

.cfvs-info-box span {
    color: #d6d6d6;
    font-size: 14px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px) {

    .cfvs-search-content {
        flex-direction: column;
        text-align: center;
    }

    .cfvs-search-icon {
        width: 100%;
    }

}

@media(max-width:768px) {

    .cfvs-search-section {
        padding: 90px 6%;
    }

    .cfvs-heading h2 {
        font-size: 42px;
    }

    .cfvs-search-content {
        padding: 35px 25px;
    }

    .cfvs-icon-circle {
        width: 120px;
        height: 120px;
    }

    .cfvs-icon-circle i {
        font-size: 45px;
    }

    .cfvs-input-group {
        height: 65px;
    }

    .cfvs-search-buttons button {
        width: 100%;
    }

}

/* =========================end VERIFICATION SEARCH SECTION======================== */




/* =========================start VERIFICATION RESULT SECTION========================= */

.cfvrs-result-section {
    position: relative;
    overflow: hidden;

    padding: 120px 7%;

    background:
        linear-gradient(135deg,
            #000 0%,
            #0d0d0d 45%,
            #1a1400 100%);
}

/* =========================
BACKGROUND GRID
========================= */

.cfvrs-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(254, 222, 0, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 222, 0, .04) 1px, transparent 1px);

    background-size: 50px 50px;

    opacity: .4;
}

/* =========================
GLOWS
========================= */

.cfvrs-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cfvrs-glow-left {
    width: 320px;
    height: 320px;

    background: rgba(254, 222, 0, .12);

    top: -100px;
    left: -100px;
}

.cfvrs-glow-right {
    width: 350px;
    height: 350px;

    background: rgba(212, 160, 23, .10);

    bottom: -120px;
    right: -120px;
}

/* =========================
CONTAINER
========================= */

.cfvrs-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;
}

/* =========================
HEADING
========================= */

.cfvrs-heading {
    text-align: center;
    margin-bottom: 70px;
}

.cfvrs-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .18);

    color: #fede00;

    font-size: 14px;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.cfvrs-heading h2 {
    font-size: 62px;
    color: #fff;

    margin-bottom: 25px;
}

.cfvrs-heading h2 span {
    color: #fede00;
    text-shadow: 0 0 20px rgba(254, 222, 0, .25);
}

.cfvrs-heading p {
    color: #cfcfcf;

    max-width: 750px;
    margin: auto;

    font-size: 18px;
    line-height: 1.8;
}

/* =========================
CARD
========================= */

.cfvrs-card {
    position: relative;

    overflow: hidden;

    border-radius: 35px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(254, 222, 0, .12);

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 40px rgba(254, 222, 0, .06);

    padding: 60px;
}

.cfvrs-card-top {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 8px;

    background:
        linear-gradient(to right,
            #fede00,
            #d4a017,
            #fede00);
}

/* =========================
STATUS HEADER
========================= */

.cfvrs-status-header {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-bottom: 50px;
}

.cfvrs-status-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #00ff99,
            #00c76f);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 35px rgba(0, 255, 153, .25);
}

.cfvrs-status-icon i {
    color: #000;
    font-size: 42px;
}

.cfvrs-status-content h3 {
    color: #fff;
    font-size: 38px;

    margin-bottom: 10px;
}

.cfvrs-status-content span {
    color: #bcbcbc;
    font-size: 16px;
}

/* =========================
DETAILS GRID
========================= */

.cfvrs-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 40px;
}

.cfvrs-detail-box {
    padding: 28px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;
}

.cfvrs-detail-box:hover {
    transform: translateY(-4px);

    border-color: rgba(254, 222, 0, .25);
}

.cfvrs-detail-box span {
    display: block;

    color: #9f9f9f;

    font-size: 14px;

    margin-bottom: 12px;
}

.cfvrs-detail-box strong {
    color: #fff;

    font-size: 20px;
    line-height: 1.5;
}

/* =========================
MODULES
========================= */

.cfvrs-modules-box,
.cfvrs-description-box {
    margin-top: 30px;

    padding: 35px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .06);
}

.cfvrs-modules-box h4,
.cfvrs-description-box h4 {
    color: #fede00;

    font-size: 24px;

    margin-bottom: 18px;
}

.cfvrs-modules-box p,
.cfvrs-description-box p {
    color: #d5d5d5;

    line-height: 1.9;

    font-size: 17px;
}

/* =========================
BOTTOM
========================= */

.cfvrs-bottom {
    margin-top: 45px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;
}

.cfvrs-valid-badge {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 28px;

    border-radius: 18px;

    background: rgba(0, 255, 153, .12);

    border: 1px solid rgba(0, 255, 153, .25);

    color: #4dff9c;

    font-weight: 600;
}

.cfvrs-qr-info {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 28px;

    border-radius: 18px;

    background: rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .18);

    color: #fede00;

    font-weight: 600;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px) {

    .cfvrs-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .cfvrs-result-section {
        padding: 90px 6%;
    }

    .cfvrs-heading h2 {
        font-size: 42px;
    }

    .cfvrs-card {
        padding: 35px 25px;
    }

    .cfvrs-status-header {
        flex-direction: column;
        text-align: center;
    }

    .cfvrs-details-grid {
        grid-template-columns: 1fr;
    }

    .cfvrs-status-content h3 {
        font-size: 28px;
    }

    .cfvrs-bottom {
        flex-direction: column;
    }

}


/* =========================end VERIFICATION RESULT SECTION========================= */





/* =========================start AUTHENTICITY NOTICE SECTION======================== */

.cfan-auth-section {
    position: relative;
    overflow: hidden;

    padding: 120px 7%;

    background:
        linear-gradient(135deg,
            #050505 0%,
            #0d0d0d 45%,
            #1a1400 100%);
}

/* =========================
BACKGROUND GRID
========================= */

.cfan-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(254, 222, 0, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 222, 0, .04) 1px, transparent 1px);

    background-size: 50px 50px;

    opacity: .35;
}

/* =========================
GLOWS
========================= */

.cfan-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cfan-glow-left {
    width: 320px;
    height: 320px;

    background: rgba(254, 222, 0, .10);

    top: -120px;
    left: -120px;
}

.cfan-glow-right {
    width: 350px;
    height: 350px;

    background: rgba(212, 160, 23, .10);

    bottom: -120px;
    right: -120px;
}

/* =========================
CONTAINER
========================= */

.cfan-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

/* =========================
LEFT CONTENT
========================= */

.cfan-left {
    flex: 1;
}

.cfan-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .18);

    color: #fede00;

    font-size: 14px;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.cfan-left h2 {
    font-size: 62px;
    color: #fff;

    line-height: 1.2;

    margin-bottom: 30px;
}

.cfan-left h2 span {
    color: #fede00;
    text-shadow: 0 0 20px rgba(254, 222, 0, .25);
}

.cfan-left p {
    color: #cfcfcf;

    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 45px;
}

/* =========================
NOTICE LIST
========================= */

.cfan-notice-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cfan-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 28px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    transition: .4s;
}

.cfan-notice-box:hover {
    transform: translateY(-4px);

    border-color: rgba(254, 222, 0, .22);
}

.cfan-icon {
    min-width: 70px;
    height: 70px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;
    font-size: 28px;

    box-shadow:
        0 0 25px rgba(254, 222, 0, .25);
}

.cfan-text h4 {
    color: #fff;

    font-size: 24px;

    margin-bottom: 12px;
}

.cfan-text p {
    color: #c8c8c8;

    font-size: 16px;
    line-height: 1.8;

    margin: 0;
}

/* =========================
RIGHT CARD
========================= */

.cfan-right {
    flex: 1;

    display: flex;
    justify-content: center;
}

.cfan-card {
    position: relative;

    width: 480px;

    overflow: hidden;

    border-radius: 35px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(254, 222, 0, .12);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 40px rgba(254, 222, 0, .08);
}

.cfan-card-top {
    height: 8px;

    background:
        linear-gradient(to right,
            #fede00,
            #d4a017,
            #fede00);
}

.cfan-card-content {
    padding: 50px;
}

.cfan-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 50px;

    background: rgba(0, 255, 153, .12);

    border: 1px solid rgba(0, 255, 153, .25);

    color: #4dff9c;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 30px;
}

.cfan-card-content h3 {
    color: #fff;

    font-size: 38px;

    line-height: 1.3;

    margin-bottom: 25px;
}

.cfan-card-content p {
    color: #d0d0d0;

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 35px;
}

/* =========================
SECURITY POINTS
========================= */

.cfan-security-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cfan-point {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 22px;

    border-radius: 16px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .06);

    color: #fff;

    font-weight: 500;
}

.cfan-point i {
    color: #fede00;
}

/* =========================
SHINE
========================= */

.cfan-shine {
    position: absolute;

    top: -120px;
    left: -90px;

    width: 180px;
    height: 500px;

    background: rgba(255, 255, 255, .05);

    transform: rotate(25deg);
}


/* =========================
INVALID RESULT DESIGN
========================= */

.cf-invalid-wrapper {
    text-align: center;

    padding: 90px 40px;

    color: #fff;
}

.cf-invalid-icon {
    width: 130px;
    height: 130px;

    margin: auto auto 35px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #ff4d4d,
            #c40000);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 40px rgba(255, 0, 0, .25);
}

.cf-invalid-icon i {
    font-size: 60px;
    color: #fff;
}

.cf-invalid-wrapper h2 {
    font-size: 48px;
    color: #fff;

    margin-bottom: 20px;
}

.cf-invalid-wrapper p {
    max-width: 700px;
    margin: auto;

    color: #d5d5d5;

    font-size: 18px;
    line-height: 1.9;
}

.cf-invalid-bottom {
    margin-top: 35px;
}

.cf-invalid-bottom span {
    display: inline-block;

    padding: 15px 28px;

    border-radius: 50px;

    background: rgba(255, 0, 0, .08);

    border: 1px solid rgba(255, 0, 0, .18);

    color: #ff7b7b;

    font-weight: 600;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px) {

    .cfan-container {
        flex-direction: column;
    }

}

@media(max-width:768px) {

    .cfan-auth-section {
        padding: 90px 6%;
    }

    .cfan-left h2 {
        font-size: 42px;
    }

    .cfan-card {
        width: 100%;
    }

    .cfan-card-content {
        padding: 35px 25px;
    }

    .cfan-card-content h3 {
        font-size: 30px;
    }

    .cfan-notice-box {
        flex-direction: column;
    }

}

/* =========================end AUTHENTICITY NOTICE SECTION======================== */




/* =========================start QR SECTION========================= */

.cfqr-section {
    position: relative;

    padding: 130px 5%;

    background: #050505;

    overflow: hidden;
}

/* Background Glow */

.cfqr-section::before {
    content: '';

    position: absolute;

    right: -250px;
    top: 50px;

    width: 550px;
    height: 550px;

    background:
        radial-gradient(circle,
            rgba(254, 222, 0, .12),
            transparent 70%);
}

/* =========================
CONTAINER
========================= */

.cfqr-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 90px;

    align-items: center;
}

/* =========================
LEFT
========================= */

.cfqr-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 50px;

    background:
        rgba(254, 222, 0, .08);

    border: 1px solid rgba(254, 222, 0, .16);

    margin-bottom: 35px;
}

.cfqr-tag i {
    color: #fede00;
}

.cfqr-tag span {
    color: #fede00;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: .5px;
}

.cfqr-left h2 {
    color: #fff;

    font-size: 64px;
    line-height: 1.15;

    margin-bottom: 28px;
}

.cfqr-left p {
    color: #bfbfbf;

    font-size: 22px;
    line-height: 1.9;

    margin-bottom: 50px;
}

/* =========================
STEPS
========================= */

.cfqr-steps {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.cfqr-step {
    display: flex;
    gap: 24px;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .04),
            rgba(255, 255, 255, .015));

    border: 1px solid rgba(255, 255, 255, .06);

    transition: .4s;
}

.cfqr-step:hover {
    transform: translateY(-4px);

    border-color:
        rgba(254, 222, 0, .22);
}

.cfqr-step-number {
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;

    font-size: 22px;
    font-weight: 800;

    flex-shrink: 0;
}

.cfqr-step h4 {
    color: #fff;

    font-size: 24px;

    margin-bottom: 10px;
}

.cfqr-step p {
    color: #bfbfbf;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}

/* =========================
RIGHT CARD
========================= */

.cfqr-right {
    display: flex;
    justify-content: center;
}

.cfqr-card {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 45px;

    border-radius: 35px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .015));

    border: 1px solid rgba(255, 255, 255, .08);

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .35);
}

/* Glow */

.cfqr-glow {
    position: absolute;

    top: -120px;
    right: -120px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(254, 222, 0, .18),
            transparent 70%);
}

/* =========================
QR BOX
========================= */

.cfqr-box {
    position: relative;

    width: 280px;
    height: 280px;

    margin: auto;

    padding: 25px;

    border-radius: 28px;

    background: #fff;

    overflow: hidden;
}

/* Fake QR Pattern */

.cfqr-pattern {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    width: 100%;
    height: 100%;
}

.cfqr-pattern div {
    background: #000;

    border-radius: 10px;
}

/* =========================
SCAN LINE
========================= */

.cfqr-scan-line {
    position: absolute;

    left: 50%;
    top: 70px;

    transform: translateX(-50%);

    width: 280px;
    height: 5px;

    background:
        linear-gradient(to right,
            transparent,
            #fede00,
            transparent);

    box-shadow:
        0 0 20px rgba(254, 222, 0, .7);

    animation: cfscan 2.5s linear infinite;
}

@keyframes cfscan {

    0% {
        top: 70px;
    }

    50% {
        top: 320px;
    }

    100% {
        top: 70px;
    }

}

/* =========================
BOTTOM
========================= */

.cfqr-bottom {
    text-align: center;

    margin-top: 45px;
}

.cfqr-bottom h4 {
    color: #fff;

    font-size: 28px;

    margin-bottom: 12px;
}

.cfqr-bottom p {
    color: #bfbfbf;

    font-size: 17px;

    line-height: 1.8;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px) {

    .cfqr-container {
        grid-template-columns: 1fr;
    }

    .cfqr-left h2 {
        font-size: 42px;
    }

    .cfqr-left p {
        font-size: 18px;
    }

    .cfqr-box {
        width: 230px;
        height: 230px;
    }

    .cfqr-scan-line {
        width: 230px;
    }

}




/*===================start CodeFuturix Skill Assessment Program Section===================== */

.cf-sap-section {
    position: relative;
    padding: 90px 20px;
    background: #000;
    color: #fff;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Background Pattern */
.cf-sap-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(254, 222, 0, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

/* Container */
.cf-sap-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.cf-sap-header {
    text-align: center;
    margin-bottom: 60px;
}

.cf-sap-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(254, 222, 0, 0.15);
    border: 1px solid #fede00;
    color: #fede00;
    border-radius: 30px;
    font-size: 15px;
    letter-spacing: 1px;
}

.cf-sap-title {
    font-size: 44px;
    margin: 18px 0;
    background: linear-gradient(90deg, #fede00, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cf-sap-subtitle {
    max-width: 800px;
    margin: auto;
    color: #ccc;
    line-height: 1.9;
    font-size: 19px;
}

/* Main Card */
.cf-sap-main-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 222, 0, 0.2);
    border-radius: 22px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* Section Titles */
.cf-sap-intro h3,
.cf-sap-features h3,
.cf-sap-trust h3 {
    color: #fede00;
    margin-bottom: 12px;
    font-size: 26px;
}

/* Paragraphs */
.cf-sap-intro p,
.cf-sap-trust p {
    color: #ddd;
    line-height: 1.9;
    font-size: 18px;
}

/* Grid */
.cf-sap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

/* Cards */
.cf-sap-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 18px;
    transition: 0.3s;
}

.cf-sap-card:hover {
    transform: translateY(-6px);
    border-color: #fede00;
}

.cf-sap-card h4 {
    margin: 0;
    font-size: 22px;
}

.cf-sap-card span {
    display: block;
    color: #fede00;
    margin: 10px 0;
    font-weight: bold;
    font-size: 17px;
}

.cf-sap-card p {
    color: #bbb;
    font-size: 16px;
}

/* Highlight Card */
.cf-sap-card.highlight {
    border: 1px solid #fede00;
    background: linear-gradient(135deg, rgba(254, 222, 0, 0.1), rgba(0, 0, 0, 0.7));
}

/* Features */
.cf-sap-features ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #ddd;
    font-size: 17px;
}

.cf-sap-features li {
    margin: 10px 0;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
    .cf-sap-title {
        font-size: 38px;
    }

    .cf-sap-main-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .cf-sap-section {
        padding: 70px 15px;
    }

    .cf-sap-title {
        font-size: 32px;
    }

    .cf-sap-subtitle {
        font-size: 17px;
    }

    .cf-sap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cf-sap-section {
        padding: 55px 12px;
    }

    .cf-sap-title {
        font-size: 28px;
    }

    .cf-sap-badge {
        font-size: 13px;
    }
}

/*===================end CodeFuturix Skill Assessment Program Section===================== */





/*===================start certificate Skill Assessment footer Section===================== */


.cf-footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(254, 222, 0, 0.2);
    position: relative;
    overflow: hidden;
}


/* Main background layer */
.cf-footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at 15% 20%, rgba(254, 222, 0, 0.20), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(254, 222, 0, 0.12), transparent 55%);
}

/* Subtle grid pattern overlay */
.cf-footer-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.25;
}


/* Container */
.cf-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* Brand */
.cf-footer-brand h2 {
    color: #fede00;
    font-size: 28px;
    margin-bottom: 10px;
}

.cf-footer-brand p {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

/* Links */
.cf-footer-links h3,
.cf-footer-contact h3 {
    color: #fede00;
    margin-bottom: 12px;
    font-size: 18px;
}

.cf-footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 6px 0;
    font-size: 15px;
    transition: 0.3s;
}

.cf-footer-links a:hover {
    color: #fede00;
    transform: translateX(5px);
}

/* Contact */
.cf-footer-contact p {
    color: #ccc;
    font-size: 15px;
    margin: 6px 0;
}

/* Bottom Bar */
.cf-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cf-footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin: 5px 0;
}

.cf-footer-contact a {
    color: #fede00;
    text-decoration: none;
    font-weight: bold;
}

.cf-footer-contact a:hover {
    text-decoration: underline;
}

/* =========================
   LARGE LAPTOP / DESKTOP
========================= */
@media (max-width: 1200px) {
  .cf-footer-bg {
    opacity: 0.95;
  }

  .cf-footer-bg::after {
    background-size: 65px 65px;
    opacity: 0.22;
  }
}

/* =========================
   TABLET LANDSCAPE
========================= */
@media (max-width: 1024px) {
  .cf-footer-bg {
    opacity: 0.9;
  }

  .cf-footer-bg::after {
    background-size: 60px 60px;
    opacity: 0.2;
  }
}

/* =========================
   TABLET PORTRAIT
========================= */
@media (max-width: 768px) {
  .cf-footer-bg {
    opacity: 0.85;
  }

  .cf-footer-bg::after {
    background-size: 50px 50px;
    opacity: 0.18;
  }

  /* Reduce animation intensity */
  .cf-footer-bg {
    animation-duration: 22s;
  }
}

/* =========================
   MOBILE LARGE
========================= */
@media (max-width: 600px) {
  .cf-footer-bg {
    opacity: 0.8;
  }

  .cf-footer-bg::after {
    background-size: 45px 45px;
    opacity: 0.15;
  }
}

/* =========================
   MOBILE SMALL
========================= */
@media (max-width: 480px) {
  .cf-footer-bg {
    opacity: 0.75;
  }

  .cf-footer-bg::after {
    background-size: 35px 35px;
    opacity: 0.12;
  }

  /* Disable heavy motion for performance */
  .cf-footer-bg {
    animation: none;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px) {
  .cf-footer-bg {
    opacity: 0.7;
  }

  .cf-footer-bg::after {
    background-size: 30px 30px;
    opacity: 0.1;
  }
}


/*===================end certificate Skill Assessment footer Section===================== */
