/*=========================================================
CERTIFICATE PAGE
PART - 2A
HERO SECTION
=========================================================*/

.cv-hero-section{
    position:relative;
    overflow:hidden;
    min-height:650px;
    display:flex;
    align-items:center;
    padding:110px 0 90px;
    background:#0f172a;
}

/*=====================================
Background Image
=====================================*/

.cv-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.cv-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*=====================================
Overlay
=====================================*/

.cv-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,
        rgba(120,0,0,.92) 0%,
        rgba(170,0,0,.82) 35%,
        rgba(212,0,0,.55) 65%,
        rgba(0,0,0,.15) 100%);
    z-index:2;
}

.cv-hero-section .container{
    position:relative;
    z-index:5;
}

/*=====================================
Hero Content
=====================================*/

.cv-hero-content{
    color:#fff;
}

.cv-breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;

    font-size:15px;

}

.cv-breadcrumb a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.cv-breadcrumb a:hover{

    color:#ffe082;

}

.cv-breadcrumb span{

    color:rgba(255,255,255,.85);

}

/*=====================================
Badge
=====================================*/

.cv-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(12px);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

    margin-bottom:28px;

}

.cv-hero-badge i{

    color:#ffe082;

}

/*=====================================
Heading
=====================================*/

.cv-hero-content h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    color:#ffffff;

    margin-bottom:18px;

}

.cv-hero-content h1 span{

    display:block;

    color:#ffe082;

}

/*=====================================
Underline
=====================================*/

.cv-title-line{

    width:90px;

    height:5px;

    background:#ffe082;

    border-radius:50px;

    margin-bottom:30px;

}

/*=====================================
Paragraph
=====================================*/

.cv-hero-content p{

    max-width:620px;

    color:rgba(255,255,255,.95);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

/*=====================================
Feature List
=====================================*/

.cv-hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.cv-feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    border-radius:50px;

    transition:.35s;

}

.cv-feature-item:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

}

.cv-feature-item i{

    color:#ffe082;

    font-size:18px;

}

.cv-feature-item span{

    color:#fff;

    font-size:15px;

    font-weight:600;

}

/*=====================================
Right Image
=====================================*/

.cv-hero-image{

    position:relative;

    text-align:center;

}

.cv-hero-image img{

    max-width:100%;

    animation:cvFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.35));

}

/* Floating Animation */

@keyframes cvFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=====================================
Responsive
=====================================*/

@media(max-width:1200px){

.cv-hero-content h1{

font-size:54px;

}

}

@media(max-width:991px){

.cv-hero-section{

min-height:auto;

padding:90px 0 80px;

text-align:center;

}

.cv-hero-content{

margin-bottom:50px;

}

.cv-title-line{

margin:0 auto 30px;

}

.cv-hero-content p{

margin-left:auto;

margin-right:auto;

}

.cv-hero-features{

justify-content:center;

}

}

@media(max-width:768px){

.cv-hero-content h1{

font-size:42px;

}

.cv-hero-content p{

font-size:16px;

}

.cv-feature-item{

width:100%;

justify-content:center;

}

}

@media(max-width:576px){

.cv-hero-section{

padding:70px 0 60px;

}

.cv-breadcrumb{

font-size:13px;

flex-wrap:wrap;

justify-content:center;

}

.cv-hero-badge{

font-size:12px;

padding:8px 18px;

}

.cv-hero-content h1{

font-size:34px;

}

.cv-title-line{

width:70px;

height:4px;

}

.cv-hero-content p{

font-size:15px;

line-height:1.8;

}

.cv-feature-item{

padding:12px 16px;

}

.cv-feature-item span{

font-size:14px;

}

}
/*=========================================================
CERTIFICATE PAGE
PART - 2B
CERTIFICATE VERIFICATION SECTION
=========================================================*/

.cv-verify-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.cv-verify-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(212,0,0,.04);
    border-radius:50%;
    left:-140px;
    top:-120px;
}

.cv-verify-section::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(212,0,0,.03);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
}

/*==================================================
LEFT CONTENT
==================================================*/

.cv-info-area{
    position:relative;
}

.cv-section-tag{
    display:inline-block;
    padding:8px 22px;
    background:#ffe9e9;
    color:#d40000;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.cv-info-area h2{
    font-size:44px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
    margin-bottom:18px;
}

.cv-info-area h2 span{
    color:#d40000;
}

.cv-heading-line{
    width:80px;
    height:4px;
    background:#d40000;
    border-radius:30px;
    margin-bottom:25px;
}

.cv-info-area>p{
    color:#6b7280;
    line-height:1.9;
    font-size:16px;
    margin-bottom:20px;
}

/*==================================================
FEATURE CARDS
==================================================*/

.cv-feature-card{
    background:#ffffff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    border:1px solid #eeeeee;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.cv-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.cv-feature-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    margin:0 auto 18px;
    font-size:26px;
}

.cv-red{
    background:linear-gradient(135deg,#d40000,#ff4d4d);
}

.cv-blue{
    background:linear-gradient(135deg,#2563eb,#4f8cff);
}

.cv-green{
    background:linear-gradient(135deg,#059669,#10b981);
}

.cv-purple{
    background:linear-gradient(135deg,#7c3aed,#a855f7);
}

.cv-feature-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#111827;
}

.cv-feature-card p{
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/*==================================================
INFO BOX
==================================================*/

.cv-note-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-top:35px;
    padding:20px;
    border-left:5px solid #d40000;
    background:#fff4f4;
    border-radius:12px;
}

.cv-note-box i{
    color:#d40000;
    font-size:22px;
    margin-top:2px;
}

.cv-note-box p{
    margin:0;
    color:#444;
    line-height:1.7;
}

/*==================================================
FORM
==================================================*/

.cv-form-wrapper{
    position:relative;
    background:#ffffff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #eeeeee;
}

.cv-form-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:linear-gradient(135deg,#d40000,#ff4040);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:34px;
    margin:0 auto 25px;
    box-shadow:0 15px 35px rgba(212,0,0,.25);
}

.cv-form-tag{
    display:block;
    text-align:center;
    color:#d40000;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.cv-form-wrapper h3{
    text-align:center;
    font-size:38px;
    font-weight:800;
    color:#111827;
}

.cv-form-wrapper h3 span{
    color:#d40000;
}

.cv-form-line{
    width:70px;
    height:4px;
    background:#d40000;
    margin:18px auto 22px;
    border-radius:30px;
}

.cv-form-wrapper>p{
    text-align:center;
    color:#6b7280;
    margin-bottom:35px;
}

/*==================================================
INPUTS
==================================================*/

.cv-input-group{
    position:relative;
    margin-bottom:22px;
}

.cv-input-icon{
    position:absolute;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    color:#d40000;
    font-size:18px;
}

.cv-input-group input{
    width:100%;
    height:60px;
    border:1px solid #dddddd;
    border-radius:14px;
    padding:0 20px 0 58px;
    font-size:15px;
    transition:.3s;
    outline:none;
    background:#fafafa;
}

.cv-input-group input:focus{
    border-color:#d40000;
    background:#ffffff;
    box-shadow:0 0 0 4px rgba(212,0,0,.10);
}

/*==================================================
BUTTON
==================================================*/

.cv-submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#d40000,#ff4040);
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    box-shadow:0 15px 35px rgba(212,0,0,.25);
}

.cv-submit-btn:hover{
    background:#111827;
    transform:translateY(-4px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.cv-verify-section{
padding:80px 0;
}

.cv-info-area{
margin-bottom:50px;
}

.cv-info-area h2{
font-size:36px;
}

.cv-form-wrapper{
padding:35px;
}

}

@media(max-width:768px){

.cv-verify-section{
padding:70px 0;
}

.cv-info-area h2{
font-size:30px;
}

.cv-form-wrapper h3{
font-size:30px;
}

.cv-feature-card{
padding:22px;
}

}

@media(max-width:576px){

.cv-verify-section{
padding:60px 0;
}

.cv-form-wrapper{
padding:25px;
border-radius:18px;
}

.cv-info-area h2{
font-size:26px;
}

.cv-form-wrapper h3{
font-size:26px;
}

.cv-feature-card{
padding:20px;
}

.cv-input-group input{
height:54px;
}

.cv-submit-btn{
height:54px;
font-size:15px;
}

.cv-note-box{
padding:16px;
}

}

/*==========================================
PART-3B SUPPORT CSS
==========================================*/

.cv-error{

border:2px solid #d40000 !important;

animation:cvShake .35s;

}

@keyframes cvShake{

0%{transform:translateX(0);}

25%{transform:translateX(-6px);}

50%{transform:translateX(6px);}

75%{transform:translateX(-6px);}

100%{transform:translateX(0);}

}

/*==========================
Result Card
==========================*/

.cv-result{

margin-top:35px;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

animation:fadeResult .4s;

}

.cv-result.success{

background:#f0fff4;

border:2px solid #22c55e;

}

.cv-result.failed{

background:#fff5f5;

border:2px solid #ef4444;

}

.cv-result-icon{

font-size:60px;

margin-bottom:18px;

}

.cv-result.success .cv-result-icon{

color:#22c55e;

}

.cv-result.failed .cv-result-icon{

color:#ef4444;

}

.cv-result h3{

font-size:28px;

font-weight:700;

margin-bottom:15px;

}

.cv-result p{

color:#555;

margin-bottom:25px;

}

.cv-result table{

margin-top:15px;

}

@keyframes fadeResult{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}