/*==========================================
        GOVT EXAM PREP
        CURRENT AFFAIRS
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

--primary:#800000;

--primary-dark:#5f0000;

--gold:#D4AF37;

--gold-light:#f8e7b3;

--white:#ffffff;

--bg:#f5f6fb;

--text:#333;

--light:#666;

--border:#ececec;

--shadow:0 15px 40px rgba(0,0,0,.08);

--radius:22px;

--transition:.35s;

}



*{

margin:0;

padding:0;

box-sizing:border-box;

}



html{

scroll-behavior:smooth;

}



body{

font-family:'Poppins',sans-serif;

background:var(--bg);

color:var(--text);

line-height:1.8;

}



img{

max-width:100%;

display:block;

}



a{

text-decoration:none;

}



.container{

width:min(1200px,92%);

margin:auto;

}



/*==================================
            HERO
==================================*/

.hero{

background:linear-gradient(

135deg,

var(--primary),

var(--primary-dark)

);

padding:120px 0;

position:relative;

overflow:hidden;

}



.hero::before{

content:"";

position:absolute;

width:320px;

height:320px;

border-radius:50%;

background:rgba(212,175,55,.08);

right:-120px;

top:-120px;

}



.hero::after{

content:"";

position:absolute;

width:220px;

height:220px;

border-radius:50%;

background:rgba(255,255,255,.05);

left:-70px;

bottom:-70px;

}



.hero-content{

position:relative;

z-index:2;

text-align:center;

color:#fff;

}



.hero-badge{

display:inline-block;

background:var(--gold);

color:var(--primary);

padding:10px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}



.hero h1{

font-size:4rem;

font-weight:800;

margin-bottom:20px;

}



.hero p{

max-width:760px;

margin:auto;

font-size:1.08rem;

color:rgba(255,255,255,.92);

}



/*==================================
        SECTION TITLE
==================================*/

.video-section{

padding:90px 0;

}



.alt-bg{

background:#ffffff;

}



.section-title{

    text-align:center;

    margin-bottom:70px;

}



.section-tag{

    display:inline-block;

    padding:10px 28px;

    border-radius:40px;

    background:#F8E7B3;

    color:#800000;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}



.section-title h2{

    margin-top:25px;

    font-size:3rem;

    color:#800000;

    font-weight:800;

}



.title-line{

    width:90px;

    height:5px;

    background:#D4AF37;

    margin:20px auto 25px;

    border-radius:50px;

}



.section-title p{

    max-width:650px;

    margin:auto;

    color:#666;

    font-size:1.05rem;

}
/*==================================
        VIDEO GRID
==================================*/

.video-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

gap:35px;

}



/*==================================
        VIDEO CARD
==================================*/

.video-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

border:1px solid var(--border);

position:relative;

}



.video-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(128,0,0,.15);

}



/* Golden Top Border */

.video-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

var(--gold),

#f5d56c

);

}



/*==================================
        VIDEO FRAME
==================================*/

.video-frame{

position:relative;

padding-bottom:56.25%;

height:0;

overflow:hidden;

background:#000;

}



.video-frame iframe{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

border:none;

}



/*==================================
        VIDEO CONTENT
==================================*/

.video-content{

padding:25px;

}



.video-content h3{

font-size:1.3rem;

color:var(--primary);

margin-bottom:12px;

font-weight:700;

}



.video-content p{

font-size:.95rem;

color:var(--light);

margin-bottom:20px;

}



/*==================================
        WATCH BUTTON
==================================*/

.video-content a{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:12px 25px;

background:var(--primary);

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

}



.video-content a:hover{

background:var(--gold);

color:var(--primary);

}



/*==================================
        PLAY ICON
==================================*/

.video-frame::after{

content:"▶";

position:absolute;

width:70px;

height:70px;

border-radius:50%;

background:rgba(255,255,255,.90);

display:flex;

justify-content:center;

align-items:center;

font-size:1.8rem;

color:#d40000;

top:50%;

left:50%;

transform:translate(-50%,-50%);

pointer-events:none;

transition:.35s;

}



.video-card:hover .video-frame::after{

transform:translate(-50%,-50%) scale(1.12);

background:#fff;

}



/*==================================
        VIDEO LABEL
==================================*/

.video-label{

position:absolute;

top:15px;

left:15px;

background:rgba(128,0,0,.95);

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:.8rem;

font-weight:600;

z-index:5;

}



/*==================================
        HOVER EFFECT
==================================*/

.video-card:hover .video-content h3{

color:var(--gold);

transition:.3s;

}



/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px){

.video-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.video-grid{

grid-template-columns:1fr;

gap:25px;

}



.video-content{

padding:20px;

}



.video-content h3{

font-size:1.15rem;

}

}
/*==================================
            CTA
==================================*/

.cta{

background:linear-gradient(

135deg,

var(--primary),

var(--primary-dark)

);

padding:100px 0;

text-align:center;

color:#fff;

}



.cta h2{

font-size:3rem;

font-weight:800;

margin-bottom:20px;

}



.cta p{

max-width:700px;

margin:auto;

margin-bottom:40px;

color:rgba(255,255,255,.92);

font-size:1.05rem;

}



.cta-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:var(--gold);

color:var(--primary);

border-radius:50px;

font-weight:700;

transition:.35s;

}



.cta-btn:hover{

background:#fff;

transform:translateY(-4px);

}



/*==================================
            FOOTER
==================================*/

footer{

background:#2d0000;

padding:30px 0;

text-align:center;

color:#fff;

}



footer p{

opacity:.9;

}



/*==================================
        SCROLLBAR
==================================*/

::-webkit-scrollbar{

width:12px;

}



::-webkit-scrollbar-track{

background:#f2f2f2;

}



::-webkit-scrollbar-thumb{

background:linear-gradient(

var(--primary),

var(--primary-dark)

);

border-radius:50px;

}



::-webkit-scrollbar-thumb:hover{

background:var(--gold);

}



/*==================================
        TEXT SELECTION
==================================*/

::selection{

background:var(--gold);

color:var(--primary);

}



/*==================================
        ANIMATION
==================================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}



.video-card{

animation:fadeUp .8s ease;

}



/*==================================
        DARK MODE
==================================*/

body.dark{

background:#111;

color:#fff;

}



body.dark .video-section{

background:#111;

}



body.dark .alt-bg{

background:#181818;

}



body.dark .video-card{

background:#1e1e1e;

border-color:#333;

}



body.dark .video-content h3{

color:#fff;

}



body.dark .video-content p{

color:#ccc;

}



body.dark footer{

background:#000;

}



/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px){

.hero h1{

font-size:3rem;

}

}



@media(max-width:768px){

.hero{

padding:90px 0;

}



.hero h1{

font-size:2.4rem;

}



.section-title h2{

font-size:2rem;

}



.cta h2{

font-size:2rem;

}



.cta-btn{

width:100%;

max-width:320px;

}



.video-grid{

grid-template-columns:1fr;

}

}



@media(max-width:480px){

.hero h1{

font-size:2rem;

}



.hero p{

font-size:.95rem;

}



.section-title h2{

font-size:1.6rem;

}



.video-content{

padding:18px;

}



.video-content h3{

font-size:1.1rem;

}



.cta{

padding:70px 0;

}

}
/*==================================
        DISCLAIMER SECTION
==================================*/

.disclaimer-section{

    padding:90px 0;

    background:linear-gradient(180deg,#f7f8fc,#ffffff);

}

.disclaimer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}



.disclaimer-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-top:6px solid #800000;

    transition:.35s;

}



.disclaimer-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(128,0,0,.15);

    border-top-color:#D4AF37;

}



.disclaimer-card::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    top:-70px;

    right:-70px;

}



.card-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#800000,#5d0000);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    margin-bottom:22px;

    transition:.35s;

}



.disclaimer-card:hover .card-icon{

    background:linear-gradient(135deg,#D4AF37,#f6dd82);

    color:#800000;

    transform:rotate(-8deg);

}



.disclaimer-card h3{

    font-size:1.5rem;

    color:#800000;

    margin-bottom:15px;

    font-weight:700;

}



.disclaimer-card p{

    color:#555;

    line-height:1.9;

    font-size:.96rem;

}



/* Divider */

.footer-line{

    width:120px;

    height:4px;

    background:#D4AF37;

    margin:25px auto;

    border-radius:50px;

}



/*==================================
            FOOTER
==================================*/

.footer{

    background:#800000;

    color:#fff;

    padding:70px 0 40px;

    text-align:center;

}



.footer h2{

    font-size:2.2rem;

    font-weight:800;

    margin-bottom:15px;

}



.footer p{

    color:rgba(255,255,255,.88);

    max-width:700px;

    margin:auto;

}



.copyright{

    margin-top:25px;

    color:#f3d37a;

    font-size:.95rem;

}



/*==================================
        RESPONSIVE
==================================*/

@media(max-width:768px){

.disclaimer-grid{

grid-template-columns:1fr;

}



.disclaimer-card{

padding:28px;

}



.card-icon{

width:65px;

height:65px;

font-size:1.7rem;

}

}