* {
    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: 68px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    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
========================= */
/* =========================
RIGHT SECTION
========================= */

.cfv-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* =========================
CARD
========================= */

.cfv-card {
    position: relative;

    width: 100%;
    max-width: 520px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(254, 222, 0, .14);

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .55),
        0 0 40px rgba(254, 222, 0, .08);

    z-index: 2;
}

/* =========================
TOP BORDER
========================= */

.cfv-card-top {
    height: 8px;

    background:
        linear-gradient(to right,
            #fede00,
            #d4a017,
            #fede00);
}

/* =========================
CONTENT
========================= */

.cfv-card-content {
    padding: 45px;
    position: relative;
    z-index: 2;
}

/* =========================
PROGRAM BADGE
========================= */

.cfv-program-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 60px;

    background:
        rgba(254, 222, 0, .08);

    border:
        1px solid rgba(254, 222, 0, .16);

    color: #fede00;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 28px;

    backdrop-filter: blur(10px);
}

.cfv-program-badge i {
    font-size: 15px;
}

/* =========================
HEADING
========================= */

.cfv-card-content h3 {
    color: #fff;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;

    margin-bottom: 22px;
}

/* =========================
DESCRIPTION
========================= */

.cfv-card-content p {
    color: #d0d0d0;

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 35px;
}

/* =========================
PROGRAM LIST
========================= */

.cfv-program-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================
PROGRAM ITEM
========================= */

.cfv-program-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 22px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    border:
        1px solid rgba(255, 255, 255, .06);

    overflow: hidden;

    transition: .4s ease;
}

.cfv-program-item::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(254, 222, 0, .08),
            transparent);

    opacity: 0;

    transition: .4s;
}

.cfv-program-item:hover {
    transform:
        translateX(8px);

    border-color:
        rgba(254, 222, 0, .18);
}

.cfv-program-item:hover::before {
    opacity: 1;
}

/* =========================
ICON
========================= */

.cfv-program-item i {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    color: #000;

    font-size: 18px;

    flex-shrink: 0;

    box-shadow:
        0 10px 25px rgba(254, 222, 0, .2);
}

/* =========================
TEXT
========================= */

.cfv-program-item span {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;
}

/* =========================
BOTTOM STRIP
========================= */

.cfv-program-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    margin-top: 40px;

    padding-top: 30px;

    border-top:
        1px solid rgba(255, 255, 255, .08);
}

/* =========================
PRICE
========================= */

.cfv-program-price span {
    display: block;

    color: #bdbdbd;

    font-size: 13px;

    margin-bottom: 8px;
}

.cfv-program-price strong {
    color: #fede00;

    font-size: 44px;
    line-height: 1;

    font-weight: 800;

    text-shadow:
        0 0 25px rgba(254, 222, 0, .2);
}

/* =========================
BUTTON
========================= */

.cfv-program-btn {
    height: 58px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 16px;

    text-decoration: none;

    background:
        linear-gradient(135deg,
            #fede00,
            #d4a017);

    color: #000;

    font-size: 15px;
    font-weight: 700;

    transition: .4s ease;

    box-shadow:
        0 15px 35px rgba(254, 222, 0, .2);
}

.cfv-program-btn:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 20px 45px rgba(254, 222, 0, .3);
}

.cfv-program-btn i {
    font-size: 14px;
}

/* =========================
SHINE EFFECT
========================= */

.cfv-shine {
    position: absolute;

    top: -120px;
    left: -120px;

    width: 200px;
    height: 650px;

    background:
        rgba(255, 255, 255, .05);

    transform: rotate(24deg);

    pointer-events: none;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px) {

    .cfv-container {
        flex-direction: column;
    }

    .cfv-program-btn{
        height:56px;
        padding:0 26px;
        font-size:15px;
    }

}



/* =========================
   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;
    }

    .cfv-program-btn{
        height:54px;
        padding:0 24px;

        font-size:14px;
    }


}

/* =========================
   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;
    }

    .cfv-program-btn{
        height:52px;

        padding:0 22px;

        border-radius:14px;

        font-size:14px;
    }

}

/* =========================
   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;
    }

    .cfv-program-btn{
        width:100%;

        height:52px;

        padding:0 20px;

        justify-content:center;

        border-radius:13px;

        font-size:14px;
    }

}

/* =========================
   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;
    }

    .cfv-card-content h3 {
        font-size: 25px;
    }

    .cfv-program-btn{
        width:100%;

        height:50px;

        padding:40px 28px;

        gap:8px;

        border-radius:12px;

        font-size:15px;
        font-weight:600;
    }

    .cfv-program-btn i{
        font-size:15px;
    }

}



/* =========================
   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;
    }

    .cfv-program-btn{
        height:48px;

        padding:20px 14px;

        border-radius:11px;

        font-size:12px;

        gap:7px;
    }

    .cfv-program-btn i{
        font-size:11px;
    }
}


/* =========================end HERO SECTION========================= */

/* =========================START PROGRAM SECTION MORE VIBRANT COLOR VARIATION========================= */

.cfprog-section{
    position:relative;

    overflow:hidden;

    padding:80px 7%;

    background:
    radial-gradient(circle at top left,
    rgba(255,0,128,.18),
    transparent 24%),

    radial-gradient(circle at top right,
    rgba(255,196,0,.16),
    transparent 26%),

    radial-gradient(circle at bottom left,
    rgba(0,229,255,.14),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(255,120,0,.16),
    transparent 30%),

    linear-gradient(135deg,
    #050505 0%,
    #0c0c14 35%,
    #1a1200 100%);
}

/* =========================
NEON DIAGONAL PATTERN
========================= */

.cfprog-lines{
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
    -45deg,

    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 2px,

    transparent 2px,
    transparent 100px
    );

    opacity:.9;

    animation:cfprogMove 20s linear infinite;
}

/* =========================
COLOR OVERLAY
========================= */

.cfprog-lines::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(90deg,
    rgba(255,0,128,.04),
    transparent 25%,
    rgba(255,196,0,.04) 50%,
    transparent 75%,
    rgba(0,229,255,.04));

    mix-blend-mode:screen;
}

/* =========================
TOP GLOW LINE
========================= */

.cfprog-lines::after{
    content:'';

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:75%;
    height:3px;

    background:
    linear-gradient(to right,
    transparent,
    #ff0080,
    #fede00,
    #00e5ff,
    transparent);

    box-shadow:
    0 0 30px rgba(255,0,128,.4),
    0 0 40px rgba(0,229,255,.25);
}

/* =========================
ABSTRACT SHAPES
========================= */

.cfprog-shape{
    position:absolute;

    border-radius:40px;

    transform:rotate(25deg);

    backdrop-filter:blur(2px);
}

/* pink shape */

.cfprog-shape1{
    width:260px;
    height:260px;

    top:90px;
    right:7%;

    border:
    1px solid rgba(255,0,128,.12);

    background:
    linear-gradient(135deg,
    rgba(255,0,128,.08),
    transparent);
}

/* cyan shape */

.cfprog-shape2{
    width:190px;
    height:190px;

    bottom:110px;
    left:6%;

    border:
    1px solid rgba(0,229,255,.12);

    background:
    linear-gradient(135deg,
    rgba(0,229,255,.08),
    transparent);
}

/* =========================
ANIMATION
========================= */

@keyframes cfprogMove{

    from{
        background-position:0 0;
    }

    to{
        background-position:200px 200px;
    }

}

/* =========================
WRAPPER
========================= */

.cfprog-wrapper{
    position:relative;
    z-index:2;
}

/* =========================
HEADING
========================= */

.cfprog-heading{
    text-align:center;

    max-width:1200px;

    margin:auto auto 65px;
}

.cfprog-mini-title{
    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;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.cfprog-heading h2{
    color:#fff;

    font-size:60px;
    line-height:1.2;

    margin-bottom:25px;
}

.cfprog-heading p{
    color:#cfcfcf;

    font-size:18px;
    line-height:1.8;
}

/* =========================
CATEGORY HEAD
========================= */

.cfprog-category-head{
    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:45px;
}

.cfprog-category-line{
    flex:1;

    height:1px;

    background:
    linear-gradient(to right,
    transparent,
    rgba(254,222,0,.25),
    transparent);
}

.cfprog-category-title{
    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-weight:600;
}

.cfprog-category-title i{
    color:#fede00;
}

/* =========================
EXAM GRID
========================= */

.cfprog-exam-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-bottom:90px;
}

/* =========================
EXAM CARD
========================= */

.cfprog-exam-card{
    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:30px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s;
}

.cfprog-exam-card:hover{
    transform:translateY(-10px);
}

.cfprog-exam-price{
    position:absolute;

    top:22px;
    right:22px;

    padding:10px 18px;

    border-radius:50px;

    background:#fff;

    color:#000;

    font-weight:700;
}

.cfprog-exam-icon{
    width:80px;
    height:80px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:#fff;

    margin-bottom:25px;
}

.cfprog-green .cfprog-exam-icon{
    background:
    linear-gradient(135deg,#00c853,#009624);
}

.cfprog-blue .cfprog-exam-icon{
    background:
    linear-gradient(135deg,#2979ff,#004ecb);
}

.cfprog-purple .cfprog-exam-icon{
    background:
    linear-gradient(135deg,#aa00ff,#7200ca);
}

.cfprog-exam-card h3{
    color:#fff;

    font-size:28px;
    line-height:1.3;

    margin-bottom:18px;
}

.cfprog-exam-card p{
    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:25px;
}

/* TOPICS */

.cfprog-topic-box{
    display:flex;
    flex-wrap:wrap;

    gap:12px;

    margin-bottom:28px;
}

.cfprog-topic-box span{
    padding:10px 14px;

    border-radius:12px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:13px;
}

/* LIST */

.cfprog-exam-card ul{
    padding-left:18px;
}

.cfprog-exam-card ul li{
    color:#d5d5d5;

    margin-bottom:14px;

    line-height:1.7;
}

/* =========================
TRAINING ROWS
========================= */

.cfprog-training-wrap{
    display:flex;
    flex-direction:column;

    gap:30px;
}

.cfprog-training-row{
    display:grid;

    grid-template-columns:
    1.2fr 1fr .9fr;

    gap:30px;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s;
}

.cfprog-training-row:hover{
    transform:translateY(-6px);
}

/* LEFT */

.cfprog-train-left{
    display:flex;
    align-items:center;

    gap:25px;
}

.cfprog-train-price{
    min-width:90px;
    height:90px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:28px;
    font-weight:700;
}

.cfprog-orange .cfprog-train-price{
    background:
    linear-gradient(135deg,#ff9100,#ff6d00);
}

.cfprog-cyan .cfprog-train-price{
    background:
    linear-gradient(135deg,#00b8d4,#0088a3);
}

.cfprog-pink .cfprog-train-price{
    background:
    linear-gradient(135deg,#ff4081,#d81b60);
}

.cfprog-train-left h3{
    color:#fff;

    font-size:28px;

    margin-bottom:10px;
}

.cfprog-train-left span{
    color:#bcbcbc;
}

/* CENTER */

.cfprog-train-center{
    display:flex;
    flex-wrap:wrap;
    align-content:flex-start;

    gap:14px;
}

.cfprog-tag{
    padding:12px 16px;

    border-radius:14px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:14px;
}

/* RIGHT */

.cfprog-train-right strong{
    display:block;

    color:#fede00;

    margin-bottom:14px;

    font-size:18px;
}

.cfprog-train-right p{
    color:#d0d0d0;

    line-height:1.8;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .cfprog-training-row{
        grid-template-columns:1fr;
    }

}

@media(max-width:992px){

    .cfprog-heading h2{
        font-size:46px;
    }

}

@media(max-width:768px){

    .cfprog-section{
        padding:90px 5%;
    }

    .cfprog-heading h2{
        font-size:36px;
    }

    .cfprog-heading p{
        font-size:16px;
    }

    .cfprog-category-head{
        flex-direction:column;
    }

    .cfprog-category-line{
        display:none;
    }

}

@media(max-width:480px){

    .cfprog-heading h2{
        font-size:30px;
    }

    .cfprog-exam-card{
        padding:28px;
    }

    .cfprog-training-row{
        padding:28px;
    }

    .cfprog-train-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .cfprog-train-left h3{
        font-size:24px;
    }

}

/* =========================END PROGRAM SECTION MORE VIBRANT COLOR VARIATION========================= */


/* =========================================================START MODERN CTA BANNER======================================================= */

.cfend-section{
    position:relative;

    overflow:hidden;

    padding:90px 7%;

    background:
    linear-gradient(135deg,
    #0b0b0b 0%,
    #111111 100%);
}

/* =========================================================
BACKGROUND DECORATION
========================================================= */

.cfend-circle{
    position:absolute;

    border-radius:50%;
}

.cfend-circle1{
    width:280px;
    height:280px;

    top:-120px;
    right:-80px;

    background:
    radial-gradient(circle,
    rgba(254,222,0,.18),
    transparent 70%);
}

.cfend-circle2{
    width:220px;
    height:220px;

    bottom:-100px;
    left:-60px;

    background:
    radial-gradient(circle,
    rgba(255,136,0,.14),
    transparent 70%);
}

/* =========================================================
WRAPPER
========================================================= */

.cfend-wrapper{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;

    padding:55px 60px;

    border-radius:36px;

    background:
    linear-gradient(135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    box-shadow:
    0 25px 70px rgba(0,0,0,.45);
}

/* =========================================================
LEFT
========================================================= */

.cfend-left{
    flex:1;
}

.cfend-label{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(254,222,0,.08);

    border:1px solid rgba(254,222,0,.16);

    color:#fede00;

    font-size:14px;
    font-weight:600;
}

.cfend-left h2{
    margin-top:26px;

    color:#fff;

    font-size:52px;
    line-height:1.1;
}

.cfend-left p{
    margin-top:18px;

    max-width:600px;

    color:#cfcfcf;

    font-size:18px;
    line-height:1.9;
}

/* =========================================================
RIGHT
========================================================= */

.cfend-right{
    width:420px;

    flex-shrink:0;
}

/* INFO BOX */

.cfend-info{
    display:flex;

    gap:18px;

    margin-bottom:28px;
}

.cfend-info-box{
    flex:1;

    padding:24px 20px;

    border-radius:24px;

    text-align:center;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);
}

.cfend-info-box strong{
    display:block;

    color:#fede00;

    font-size:26px;

    margin-bottom:10px;
}

.cfend-info-box span{
    color:#d6d6d6;

    font-size:14px;
}

/* =========================================================
BUTTONS
========================================================= */

.cfend-buttons{
    display:flex;

    gap:16px;
}

.cfend-btn{
    flex:1;

    height:62px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.4s;
}

.cfend-btn-primary{
    background:
    linear-gradient(135deg,
    #fede00,
    #ff9900);

    color:#000;
}

.cfend-btn-primary:hover{
    transform:translateY(-4px);
}

.cfend-btn-secondary{
    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;
}

.cfend-btn-secondary:hover{
    border-color:
    rgba(254,222,0,.18);

    color:#fede00;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .cfend-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .cfend-right{
        width:100%;
    }

}

@media(max-width:768px){

    .cfend-left h2{
        font-size:42px;
    }

    .cfend-wrapper{
        padding:40px 32px;
    }

}

@media(max-width:480px){

    .cfend-section{
        padding:80px 5%;
    }

    .cfend-wrapper{
        padding:30px 22px;
        border-radius:28px;
    }

    .cfend-left h2{
        font-size:32px;
    }

    .cfend-left p{
        font-size:15px;
    }

    .cfend-info{
        flex-direction:column;
    }

    .cfend-buttons{
        flex-direction:column;
    }

}

/* =========================================================END MODERN CTA BANNER===================================================== */






/* =========================================================START CERTIFICATE VALUE SECTION============================================= */

.cfcert-section{
    position:relative;
    overflow:hidden;

    padding: 80px 7%;

    background:
    radial-gradient(circle at top left,
    rgba(255, 0, 0, 0.1),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(255, 140, 0, 0.295),
    transparent 30%),

    linear-gradient(135deg,
    #050505 0%,
    #0d0d0d 50%,
    #151515 100%);
}

/* =========================================================
BACKGROUND PATTERN
========================================================= */

.cfcert-pattern{
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
    120deg,

    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 2px,

    transparent 2px,
    transparent 90px);

    opacity:.5;
}

/* =========================================================
WRAPPER
========================================================= */

.cfcert-wrapper{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:50px;
}

/* =========================================================
LEFT
========================================================= */

.cfcert-left{
    flex:1;
    max-width:620px;
}

.cfcert-mini-title{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:13px 22px;

    border-radius:50px;

    background:
    rgba(254,222,0,.08);

    border:1px solid rgba(254,222,0,.14);

    color:#fede00;

    font-size:14px;
    font-weight:600;
}

.cfcert-left h2{
    margin-top:26px;

    color:#fff;

    font-size:54px;
    line-height:1.1;

    font-weight:700;
}

.cfcert-left h2 span{
    color:#fede00;
}

.cfcert-left p{
    margin-top:24px;

    color:#cfcfcf;

    line-height:1.9;

    font-size:17px;
}

/* =========================================================
FEATURES
========================================================= */

.cfcert-feature-list{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:38px;
}

.cfcert-feature{
    position:relative;

    padding:22px;

    border-radius:24px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.07);

    overflow:hidden;

    transition:.4s;
}

.cfcert-feature:hover{
    transform:translateY(-6px);

    border-color:
    rgba(254,222,0,.18);
}

.cfcert-feature::before{
    content:"";

    position:absolute;

    width:110px;
    height:110px;

    border-radius:50%;

    background:
    rgba(254,222,0,.05);

    top:-35px;
    right:-35px;
}

.cfcert-feature-icon{
    width:55px;
    height:55px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(135deg,
    #fede00,
    #d4a017);

    color:#000;

    font-size:20px;

    margin-bottom:18px;
}

.cfcert-feature h4{
    color:#fff;

    font-size:18px;

    margin-bottom:10px;
}

.cfcert-feature span{
    color:#bcbcbc;

    line-height:1.7;

    font-size:14px;
}

/* =========================================================
BUTTON
========================================================= */

.cfcert-btn{
    width:max-content;

    margin-top:40px;

    height:58px;

    padding:0 32px;

    border-radius:16px;

    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;

    background:
    linear-gradient(135deg,
    #fede00,
    #d4a017);

    color:#000;

    font-weight:700;

    transition:.4s;
}

.cfcert-btn:hover{
    transform:translateY(-4px);
}

/* =========================================================
RIGHT
========================================================= */

.cfcert-right{
    flex:1;

    display:flex;
    justify-content:center;
}
/* =========================================================
MODERN PREMIUM CERTIFICATE DESIGN
MATCHED WITH YOUR HTML CLASSNAMES
========================================================= */

.cfcert-right{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* =========================================================
CERTIFICATE CARD
========================================================= */

.cfcert-card{
    position:relative;

    width:500px;

    padding:38px;

    border-radius:34px;

    overflow:hidden;

    background:
    linear-gradient(145deg,
    #fffdf4,
    #fff5c7);

    border:5px solid #fede00;

    box-shadow:
    0 25px 70px rgba(0,0,0,.45);
}

/* TOP GOLD STRIP */

.cfcert-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:10px;

    background:
    linear-gradient(to right,
    #fede00,
    #ffae00,
    #fede00);
}

/* INNER BORDER */

.cfcert-card::after{
    content:"";

    position:absolute;

    inset:16px;

    border-radius:24px;

    border:1px dashed rgba(0,0,0,.12);

    pointer-events:none;
}

/* =========================================================
TOP
========================================================= */

.cfcert-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    position:relative;
    z-index:2;
}

/* LOGO */

.cfcert-logo{
    width:72px;
    height:72px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(135deg,
    #fb0000,
    #fede00);

    color:#fff;

    font-size:28px;
    font-weight:800;

    box-shadow:
    0 10px 25px rgba(0,94,255,.25);
}

/* ORG */

.cfcert-org{
    flex:1;
}

.cfcert-org h3{
    color:#000;

    font-size:34px;
    font-weight:800;

    margin-bottom:6px;
}

.cfcert-org span{
    color:#555;

    font-size:14px;

    letter-spacing:.5px;
}

/* =========================================================
TITLE
========================================================= */

.cfcert-title{
    margin-top:42px;

    text-align:center;

    color:#111;

    font-size:40px;
    font-weight:800;

    line-height:1.3;

    letter-spacing:1px;

    position:relative;
    z-index:2;
}

/* =========================================================
STUDENT
========================================================= */

.cfcert-student{
    margin-top:40px;

    text-align:center;

    color:#555;

    line-height:1.9;

    font-size:16px;

    position:relative;
    z-index:2;
}

.cfcert-student strong{
    display:block;

    margin-top:14px;

    color:#000;

    font-size:42px;
    font-weight:800;

    letter-spacing:1px;
}

/* =========================================================
COURSE
========================================================= */

.cfcert-course{
    margin-top:34px;

    padding:26px;

    border-radius:24px;

    text-align:center;

    background:
    linear-gradient(135deg,
    rgba(254,222,0,.18),
    rgba(255,255,255,.6));

    border:1px solid rgba(254,222,0,.35);

    position:relative;
    z-index:2;
}

.cfcert-course{
    color:#555;

    line-height:1.8;

    font-size:16px;
}

.cfcert-course span{
    display:block;

    margin-top:10px;

    color:#000;

    font-size:24px;
    font-weight:700;
}

/* =========================================================
INFO
========================================================= */

.cfcert-info-wrap{
    display:flex;

    gap:18px;

    margin-top:34px;

    position:relative;
    z-index:2;
}

.cfcert-info{
    flex:1;

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.7);

    border:1px solid rgba(0,0,0,.08);

    backdrop-filter:blur(10px);
}

.cfcert-info small{
    display:block;

    color:#666;

    margin-bottom:8px;

    font-size:13px;
}

.cfcert-info strong{
    color:#000;

    font-size:17px;
    font-weight:700;
}

/* =========================================================
BOTTOM
========================================================= */

.cfcert-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    margin-top:48px;

    position:relative;
    z-index:2;
}

/* SIGN */

.cfcert-sign{
    width:220px;
}

.cfcert-line{
    height:2px;

    background:#000;

    margin-bottom:10px;
}

.cfcert-sign span{
    color:#555;

    font-size:14px;
}

/* SEAL */

.cfcert-seal{
    width:95px;
    height:95px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(135deg,
    #fede00,
    #d4a017);

    color:#000;

    font-size:38px;

    box-shadow:
    inset 0 0 0 6px rgba(255,255,255,.35),
    0 15px 30px rgba(212,160,23,.3);
}

/* =========================================================
CORNERS
========================================================= */

.cfcert-corner{
    position:absolute;

    width:120px;
    height:120px;

    border:2px solid rgba(0,0,0,.08);

    z-index:1;
}

.cfcert-corner1{
    top:18px;
    left:18px;

    border-right:none;
    border-bottom:none;
}

.cfcert-corner2{
    right:18px;
    bottom:18px;

    border-left:none;
    border-top:none;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

    .cfcert-card{
        width:100%;

        padding:28px;
    }

    .cfcert-org h3{
        font-size:28px;
    }

    .cfcert-title{
        font-size:32px;
    }

    .cfcert-student strong{
        font-size:32px;
    }

    .cfcert-course span{
        font-size:20px;
    }

}

@media(max-width:480px){

    .cfcert-card{
        padding:24px;
    }

    .cfcert-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .cfcert-logo{
        width:62px;
        height:62px;

        font-size:22px;
    }

    .cfcert-org h3{
        font-size:24px;
    }

    .cfcert-title{
        font-size:26px;
    }

    .cfcert-student{
        font-size:14px;
    }

    .cfcert-student strong{
        font-size:26px;
    }

    .cfcert-course{
        padding:20px;
    }

    .cfcert-course span{
        font-size:17px;
    }

    .cfcert-info-wrap{
        flex-direction:column;
    }

    .cfcert-bottom{
        flex-direction:column;
        gap:30px;

        align-items:flex-start;
    }

    .cfcert-seal{
        width:78px;
        height:78px;

        font-size:30px;
    }

}
/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1150px){

    .cfcert-wrapper{
        flex-direction:column;
        align-items:center;
    }

    .cfcert-left{
        max-width:100%;
    }

}

@media(max-width:768px){

    .cfcert-left h2{
        font-size:42px;
    }

    .cfcert-feature-list{
        grid-template-columns:1fr;
    }

    .cfcert-card{
        width:100%;
        max-width:450px;
    }

}

@media(max-width:480px){

    .cfcert-section{
        padding:90px 5%;
    }

    .cfcert-left h2{
        font-size:34px;
    }

    .cfcert-left p{
        font-size:15px;
    }

    .cfcert-inner{
        padding:24px;
    }

    .cfcert-title h2{
        font-size:30px;
    }

    .cfcert-student h4{
        font-size:28px;
    }

    .cfcert-info-wrap{
        grid-template-columns:1fr;
    }

    .cfcert-bottom{
        flex-direction:column;
        gap:22px;
        align-items:flex-start;
    }

}


/* =========================================================END CERTIFICATE VALUE 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===================== */