/* ==========================================
   RESET
========================================== */
:root{
  --primary:#d4af37;
  --secondary:#f6d365;
  --accent:#ffb347;

  --glass:rgba(255,255,255,0.06);

  --gold-glow:rgba(212,175,55,0.45);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Segoe UI',sans-serif;

    background:#111111;

    color:#edf2ff;

    line-height:1.7;
}

/* ==========================================
   BACKGROUND
========================================== */
#bgVideo{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-20;

    filter:
     brightness(.35)
     contrast(1.1)
     saturate(0.9);
}
#bgCanvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:-10;

    filter:blur(25px);
}

.bg-overlay{
    position:fixed;
    inset:0;

    z-index:-10;

    background:
    linear-gradient(
        rgba(5,10,20,.35),
        rgba(5,10,20,.45)
    );
}

/* ==========================================
   GLOBAL
========================================== */

section{
    padding:90px 7%;
}

h2{
    font-size:2rem;

    text-align:center;

    margin-bottom:30px;

    color:#ffffff;

   text-shadow:
0 0 12px rgba(212,175,55,.35);
}

p{
    color:#d7d9e6;
}

/* ==========================================
   UNIVERSAL PREMIUM CARD
========================================== */

.premium-card{

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

    border:1px solid rgba(255,255,255,.10);

    border-radius:22px;

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 25px rgba(212,175,55,.12);

    transition:all .35s ease;
}

.premium-card:hover{

    transform:translateY(-6px);

    border-color:rgba(212,175,55,.50);

    box-shadow:
    0 15px 45px rgba(212,175,55,.25),
0 0 80px rgba(212,175,55,.15);
}

/* ==========================================
   HEADER
========================================== */

.header{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 4vw;

    position:sticky;
    top:0;

    z-index:100;

   background:rgba(10,10,10,.75);
   backdrop-filter:blur(15px);
   -webkit-backdrop-filter:blur(15px);
   border-bottom:1px solid rgba(212,175,55,.15);

    box-shadow:
    0 5px 30px rgba(212,175,55,.08);

}

.logo{
    font-family:'Pacifico',cursive;

    font-size:2.4rem;

    color:#f8ead0;

    text-shadow:
    0 0 15px rgba(212,175,55,.35);
}

.nav{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.nav a{
    text-decoration:none;
    color:#f5e6c8;
    font-weight:600;
    font-size:1rem;
    transition:.3s;
}

.nav a:hover{
    color:#d4af37;
}

.btn{
    background:linear-gradient(
        135deg,
        #c89b3c,
        #f6d365
    );

    color:#000 !important;
    text-shadow:0 1px 2px rgba(255,255,255,.4);

    font-weight:700;

    padding:14px 28px;
    font-size:1rem:

    border-radius:999px;

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
        0 0 20px rgba(212,175,55,.35);

    transition:.3s ease;
}

.btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 0 35px rgba(212,175,55,.7),
        0 0 60px rgba(212,175,55,.4);
}

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

.hero{
    text-align:center;
    padding-top:80px;
}

.profile-img{

    width:150px;
    height:150px;

    object-fit:cover;

    border-radius:50%;

    border:
    3px solid rgba(212,175,55,.5);
   
    box-shadow:
    0 0 30px rgba(212,175,55,.35),
    0 0 70px rgba(212,175,55,.18);
}

.hero h1{
    font-size:3rem;
    font-weight:800;
    color:#fff;

    text-shadow:
        0 4px 25px rgba(0,0,0,.6);
}

.tagline{

    margin-top:10px;

    opacity:.8;
}

.hero-role{
    color:#f6d365;
    font-size:1.1rem;
    font-weight:600;
}

.hero-highlight{

    margin-top:20px;

    color:#cdbdff;

    font-weight:600;
}

/* ==========================================
   BIO CARD
========================================== */

.bio-card{

    max-width:1000px;

    margin:35px auto;

    padding:40px;

    text-align:left;
   border:1px solid rgba(212,175,55,.18);

   box-shadow:
   0 0 40px rgba(212,175,55,.08),
   0 20px 60px rgba(0,0,0,.35);
}

.bio-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 0 60px rgba(212,175,55,.20),
    0 30px 80px rgba(0,0,0,.45);
}

.bio-title{

    text-align:center;

    margin-bottom:25px;

    color:white;

    font-size:1.5rem;
}

.hero-desc{
    max-width:900px;
    margin:auto;

    text-align:justify;

    line-height:2;

    color:#e6e6e6;
}

/* ==========================================
   JOURNEY TRACKER
========================================== */

#journey-tracker{

    max-width:1200px;

    margin:auto;

    text-align:center;
}

.journey-subtitle{

    color:#bdbdbd;

    margin-bottom:40px;
}

.country-flag{

    width:34px;
    height:22px;

    object-fit:cover;

    border-radius:4px;

    vertical-align:middle;

    margin-right:10px;
}

.country-flag-small{

    width:18px;
    height:12px;

    object-fit:cover;

    border-radius:3px;

    vertical-align:middle;
}

/* timeline */

.progress-container{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    max-width:1000px;

    margin:55px auto;

    padding:0 20px;
}

.progress-container::before{

    content:"";

    position:absolute;

    left:0;
    right:0;
    top:50%;

    height:6px;

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

    transform:translateY(-50%);

    border-radius:999px;
}

.progress-fill{

    position:absolute;

    left:0;
    top:50%;

    width:38%;

    height:6px;

    border-radius:999px;

    transform:translateY(-50%);

    background:
    linear-gradient(
    90deg,
    #d4af37,
    #f6d365,
    #ffb347
    );

    box-shadow:
    0 0 20px #d4af37,
    0 0 45px #f6d365;
}

.journey-step{

    width:22px;
    height:22px;

    border-radius:50%;

    z-index:5;

    cursor:pointer;

    transition:.3s;
}

.journey-step.completed{

    background:#22c55e;

    box-shadow:
    0 0 20px #22c55e;
}

.journey-step.current{

    background:#d4af37;
   
    box-shadow:
    0 0 25px #d4af37;
}

.journey-step.upcoming{
    background:#555;
}

.journey-step:hover{
    transform:scale(1.35);
}

.journey-step:hover::after{

    content:attr(data-info);

    position:absolute;

    bottom:40px;
    left:50%;

    transform:translateX(-50%);

    white-space:nowrap;

    background:#111827;

    color:white;

    padding:10px 14px;

    border-radius:12px;

    font-size:.85rem;
}

.journey-labels{

    display:flex;

    justify-content:space-between;

    max-width:1000px;

    margin:auto;

    font-size:.85rem;

    color:#d0d0d0;
}

/* ==========================================
   CAREER VISION
========================================== */

.vision-card{

    max-width:1000px;

    margin:auto;

    padding:40px;
}

.vision-card p{

    text-align:center;

    line-height:1.95;

    color:#d6d8e5;
}
/* ==========================================
   PROFESSIONAL STRENGTHS
========================================== */

#why-hire-me{
    text-align:center;
}

.why-grid{

    display:grid;

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

    gap:25px;

    margin-top:35px;
}

.why-card{

    padding:30px;

    text-align:center;
}

.why-card h3{

    margin-bottom:12px;

    color:white;

    font-size:1.15rem;
}

.why-card p{

    color:#d4d6e3;

    line-height:1.8;
}

/* ==========================================
   LANGUAGES
========================================== */

#languages{

    text-align:center;
}

.language-grid{

    display:grid;

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

    gap:25px;

    margin-top:35px;
}

.language-card{

    padding:30px;
}

.language-card h3{

    color:white;

    margin-bottom:10px;
}

.language-card p{

    color:#d4d6e3;
}

.language-card:hover{

    transform:
    translateY(-8px)
    scale(1.02);
}

/* ==========================================
   EXPERIENCE
========================================== */

#experience{

    max-width:1300px;

    margin:auto;
}

.experience-card{

    display:flex;

    align-items:center;

    gap:35px;

    padding:35px;
}

.experience-logos{

    display:flex;

    flex-direction:column;

    gap:15px;

    align-items:center;
}

.experience-logo{

    width:90px;

    background:white;

    padding:10px;

    border-radius:18px;
}

.experience-info{

    flex:1;
}

.experience-info h3{

    color:white;

    font-size:1.8rem;

    margin-bottom:10px;
}

.experience-role{

    color:#69ffc1;

    font-weight:600;

    margin-bottom:18px;
}

.experience-info p{

    line-height:1.9;

    margin-bottom:12px;

    color:#d4d6e3;
}

.experience-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 45px rgba(212,175,55,.20),
    0 0 80px rgba(212,175,55,.12);
}

/* ==========================================
   PROJECTS
========================================== */

#projects{

    max-width:1300px;

    margin:auto;
}

.project-card{

    padding:30px;

    margin-top:30px;
}

.project-card h3{

    color:white;

    margin-bottom:12px;
}

.project-card p{

    margin-bottom:12px;

    line-height:1.85;

    color:#d4d6e3;
}

.project-card.split{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:35px;
}

.project-card video{

    width:100%;

    border-radius:18px;

    border:
    1px solid rgba(255,255,255,.08);
}

.tech-grid{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-top:15px;
}

.tech-grid img{

    width:52px;

    height:52px;

    border-radius:12px;

    background:white;

    padding:6px;

    transition:.3s;
}

.tech-grid img:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 20px rgba(212,175,55,.35);
}
/* ==========================================
   CERTIFICATE GRIDS
========================================== */

.cert-grid{

    display:grid;

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

    gap:25px;

    margin-top:35px;
}

.cert-item{

    padding:18px;

    text-align:center;

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

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:blur(14px);

    transition:.35s ease;
}

.cert-item:hover{

    transform:translateY(-6px);

    border-color:rgba(212,175,55,.50);

    box-shadow:
    0 15px 45px rgba(212,175,55,.20),
    0 0 60px rgba(212,175,55,.12);
}

.cert-item img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;
}

.cert-caption{

    margin-top:12px;

    font-weight:700;

    color:white;
}

.cert-brief{

    margin-top:8px;

    color:#cfd3e5;

    font-size:.92rem;
}

/* ==========================================
   IELTS
========================================== */

#ielts{
    text-align:center;
}

.ielts-card{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:35px;

    align-items:center;

    padding:35px;

    max-width:1200px;

    margin:auto;
}

.ielts-card img{

    width:100%;

    border-radius:18px;
}

.ielts-info h3{

    font-size:1.8rem;

    margin-bottom:15px;

    color:white;
}

.ielts-info p{

    line-height:1.9;

    color:#d4d6e3;
}

.ielts-scores{

    margin-top:25px;

    display:grid;

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

    gap:18px;
}

.glass-card{

    padding:18px;

    border-radius:18px;

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.35s;
}

.glass-card:hover{

    transform:translateY(-5px);

    border-color:rgba(212,175,55,.50);

    box-shadow:
    0 0 30px rgba(212,175,55,.25);
}

.label{

    font-size:.95rem;

    color:#cfd3e5;

    margin-bottom:10px;
}

.value{

    font-size:1.6rem;

    font-weight:700;

    color:#f6d365;
}

/* ==========================================
   FUTURE ROADMAP
========================================== */

#goals{
    text-align:center;
}

.goals{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin-top:30px;

    list-style:none;
}

.goals li{

    padding:14px 20px;

    border-radius:18px;

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.35s ease;
}

.goals li:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    border-color:rgba(212,175,55,.50);

    box-shadow:
    0 0 30px rgba(212,175,55,.25);
}

/* ==========================================
   CONTACT
========================================== */

#contact{
    text-align:center;
}

.contact-box{

    max-width:650px;

    margin:auto;

    padding:40px;
}

.contact-text{

    color:#d4d6e3;

    margin-bottom:25px;

    line-height:1.9;
}

.whatsapp-btn{

    display:inline-block;

    padding:14px 26px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:
    linear-gradient(
    90deg,
    #25D366,
    #1ebd5d
    );

    transition:.35s ease;
}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 30px rgba(37,211,102,.45);
}

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

footer{

    text-align:center;

    padding:35px;

    color:#aeb4cb;

    font-size:.95rem;
}

/* ==========================================
   MODAL
========================================== */

#certModal{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    z-index:1000;
}

#certModal img{

    max-width:90%;

    max-height:80%;
}

#closeModal{

    position:absolute;

    top:25px;
    right:35px;

    font-size:2rem;

    cursor:pointer;

    color:white;
}

/* ==========================================
   SCROLL BUTTON
========================================== */

#scrollToTop{

    position:fixed;

    right:20px;
    bottom:20px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:
    linear-gradient(
    90deg,
    #d4af37,
    #f6d365
    );

    color:white;

    display:none;

    z-index:200;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    section{
        padding:70px 5%;
    }

    .header{

        flex-direction:column;

        gap:15px;
    }

    .nav{
        justify-content:center;
    }

    .profile-img{

        width:120px;
        height:120px;
    }

    .hero h1{
        font-size:1.6rem;
    }

    .bio-card{
        padding:28px;
        
    }

    .project-card.split{
        grid-template-columns:1fr;
    }

    .experience-card{

        flex-direction:column;

        text-align:center;
    }

    .ielts-card{
        grid-template-columns:1fr;
    }

    .ielts-scores{
        grid-template-columns:repeat(2,1fr);
    }

    .journey-labels{
        font-size:.65rem;
    }

    .journey-step{

        width:16px;
        height:16px;
    }
}
body{
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.18), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255,183,77,0.15), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(255,215,120,0.15), transparent 40%),
    #111111;
}
#intro-overlay{
    position:fixed;
    inset:0;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.85);

    transition:1s ease;
}
/* ===== INTRO OVERLAY ===== */

#intro-overlay{
    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:9999;

    background:transparent;

    pointer-events:none;

    transition:1s ease;
}
.intro-content{
    text-align:center;
}

#intro-text{
    font-size:4rem;
    font-weight:800;

    color:#d4af37;

    text-align:center;

    text-shadow:
        0 0 15px rgba(212,175,55,.6),
        0 0 40px rgba(212,175,55,.4);

    animation:fadeWords 3s ease forwards;
}
body{
    animation:pageFade 1s ease;
}

@keyframes pageFade{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}
