/* =========================================================
   M.A. WARIS SHAIKH
   EXECUTIVE CYBER SECURITY PORTFOLIO
   style.css
========================================================= */

/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1023;
}

::-webkit-scrollbar-thumb{
    background:#00e5ff;
    border-radius:20px;
}

/* =========================================================
   MATRIX CANVAS
========================================================= */

#matrixCanvas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-3;
    opacity:.12;
}

#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-2;
}

/* =========================================================
   NAVBAR
========================================================= */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    backdrop-filter:blur(15px);
    background:rgba(10,15,35,.7);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

.logo span{
    font-size:1.4rem;
    font-weight:700;
    color:#00e5ff;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#ffffff;
    transition:.3s;
}

.nav-links a:hover{
    color:#00e5ff;
}

.btn-nav{
    text-decoration:none;
    background:#00e5ff;
    color:#000;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-nav:hover{
    transform:translateY(-3px);
}

/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 8%;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:rgba(0,229,255,.12);
    border:1px solid rgba(0,229,255,.3);
    color:#00e5ff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-text h2{
    color:#00e5ff;
    font-size:1.5rem;
    margin-bottom:25px;
}

.hero-text p{
    color:#c7c7c7;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    transition:.3s;
}

.btn-primary{
    background:#00e5ff;
    color:#000;
    font-weight:700;
}

.btn-secondary{
    border:1px solid #00e5ff;
    color:#00e5ff;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:420px;
    max-width:100%;
    border-radius:50%;
    border:4px solid #00e5ff;
    box-shadow:
    0 0 30px #00e5ff,
    0 0 80px rgba(0,229,255,.3);
    animation:float 5s ease-in-out infinite;
}

/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================================================
   SOCIAL
========================================================= */

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.1);
    color:#00e5ff;
    font-size:20px;
    transition:.3s;
}

.social-icons a:hover{
    background:#00e5ff;
    color:#000;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:3rem;
    color:#00e5ff;
}

.section-title p{
    color:#b9b9b9;
}

/* =========================================================
   STATS
========================================================= */

.stats-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:50px 8%;
}

.stat-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:35px;
    border-radius:20px;
}

.stat-card h2{
    color:#00e5ff;
    font-size:3rem;
}

/* =========================================================
   ABOUT
========================================================= */

.about{
    padding:120px 8%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.1);
}

.about-content h3{
    font-size:2rem;
    margin-bottom:20px;
}

.about-content p{
    color:#c7c7c7;
    margin-bottom:20px;
}

/* =========================================================
   SKILLS GRID
========================================================= */

.skills-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:30px;
}

.skill-box{
    background:rgba(0,229,255,.08);
    border:1px solid rgba(0,229,255,.15);
    padding:15px;
    text-align:center;
    border-radius:12px;
    transition:.3s;
}

.skill-box:hover{
    transform:translateY(-5px);
    background:#00e5ff;
    color:#000;
}

/* =========================================================
   EXPERIENCE TIMELINE
========================================================= */

#experience{
    padding:120px 8%;
}

.timeline{
    max-width:1200px;
    margin:auto;
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    width:3px;
    background:#00e5ff;
    top:0;
    bottom:0;
    left:50%;
}

.timeline-item{
    width:50%;
    padding:20px 40px;
    position:relative;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.timeline-content{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

/* =========================================================
   CERTIFICATIONS
========================================================= */

#certifications{
    padding:120px 8%;
}

.cert-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.cert-card{
    background:rgba(255,255,255,.05);
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.cert-card:hover{
    transform:translateY(-10px);
}

.cert-card i{
    font-size:45px;
    color:#00e5ff;
    margin-bottom:20px;
}

/* =========================================================
   PROJECTS
========================================================= */

#projects{
    padding:120px 8%;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    background:rgba(255,255,255,.05);
    border-radius:25px;
    overflow:hidden;
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
}

.project-content{
    padding:25px;
}

/* =========================================================
   GALLERY
========================================================= */

#gallery{
    padding:120px 8%;
}

.gallery-grid{
    column-count:3;
    column-gap:20px;
}

.gallery-grid img{
    width:100%;
    margin-bottom:20px;
    border-radius:20px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* =========================================================
   AI ASSISTANT SECTION
========================================================= */

#ai-assistant{
    padding:120px 8%;
}

.ai-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,229,255,.15);
    backdrop-filter:blur(20px);
    padding:60px;
    border-radius:25px;
}

.ai-box h3{
    color:#00e5ff;
    margin-bottom:20px;
    font-size:2rem;
}

/* =========================================================
   CONTACT
========================================================= */

#contact{
    padding:120px 8%;
}

.contact-box{
    max-width:800px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.05);
    padding:50px;
    border-radius:20px;
}

.contact-box p{
    margin-bottom:15px;
}

/* =========================================================
   FOOTER
========================================================= */

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#b9b9b9;
}

/* =========================================================
   GLOW EFFECTS
========================================================= */

.glow{
    box-shadow:
    0 0 10px #00e5ff,
    0 0 20px #00e5ff,
    0 0 40px #00e5ff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .hero-content,
    .about-container{
        grid-template-columns:1fr;
    }

    .project-grid{
        grid-template-columns:1fr 1fr;
    }

    .cert-grid{
        grid-template-columns:1fr 1fr;
    }

    .skills-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-section{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-text h1{
        font-size:2.5rem;
    }

    .project-grid,
    .cert-grid,
    .stats-section{
        grid-template-columns:1fr;
    }

    .skills-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        column-count:1;
    }

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:60px;
    }
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.profile-logo{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover:100%;
    border:1px solid #00c6ff;
    box-shadow:0 0 15px rgba(0,198,255,.4);
}
.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#ffffff;
    text-decoration:none;
    font-size:20px;
    transition:.3s ease;
}

.social-icons a:hover{
    background:#00c6ff;
    color:#000;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,198,255,.35);
}
.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:15px;
}

.footer-social a{
    color:#ffffff;
    font-size:20px;
    transition:.3s;
}

.footer-social a:hover{
    color:#00c6ff;
}
/* =========================================================
   PROFESSIONAL EXPERIENCE
   Add this at the END of style.css
========================================================= */

.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-heading {
    margin-bottom: 60px;
}

.experience-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #00d9ff;
}

.experience-heading p {
    max-width: 760px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 0 50px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 217, 255, 0.55),
        rgba(0, 217, 255, 0.18),
        transparent
    );
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.timeline-item {
    position: relative;
    padding-left: 82px;
    margin-bottom: 42px;
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 32px;
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.45);

    background: rgba(5, 8, 15, 0.95);

    z-index: 5;

    transition: all 0.35s ease;
}

.timeline-marker span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 8px rgba(0, 217, 255, 0.9),
        0 0 25px rgba(0, 217, 255, 0.45);

    transition: all 0.35s ease;
}

.timeline-item:hover .timeline-marker,
.timeline-item.active .timeline-marker {
    border-color: #00d9ff;
    transform: scale(1.12);
}

.timeline-item:hover .timeline-marker span,
.timeline-item.active .timeline-marker span {
    box-shadow:
        0 0 10px #00d9ff,
        0 0 35px rgba(0, 217, 255, 0.8);
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.timeline-content {
    position: relative;

    padding: 30px 32px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 217, 255, 0.3);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(0, 217, 255, 0.06);
}


/* =========================================================
   FEATURED ROLE
========================================================= */

.timeline-item.featured .timeline-content {
    border-color: rgba(0, 217, 255, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(0, 217, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.2);
}

.timeline-item.featured .timeline-marker {
    border-color: #00d9ff;
}


/* =========================================================
   DATE
========================================================= */

.timeline-date {
    display: inline-flex;

    padding: 7px 12px;

    margin-bottom: 14px;

    border-radius: 5px;

    border: 1px solid rgba(0, 217, 255, 0.18);

    background: rgba(0, 217, 255, 0.035);

    color: #00d9ff;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================================
   TITLE
========================================================= */

.timeline-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(20px, 3vw, 29px);

    line-height: 1.25;

    font-weight: 700;
}

.timeline-content h4 {
    margin: 9px 0 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;

    font-weight: 500;
}

.timeline-content h4 span {
    color: rgba(255, 255, 255, 0.3);
}


/* =========================================================
   TOP AREA
========================================================= */

.timeline-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 25px;
}


/* =========================================================
   PLUS BUTTON
========================================================= */

.experience-toggle {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(0, 217, 255, 0.22);

    background: rgba(0, 217, 255, 0.035);

    color: #00d9ff;

    cursor: pointer;

    transition: all 0.35s ease;
}

.experience-toggle:hover {
    background: rgba(0, 217, 255, 0.12);

    border-color: #00d9ff;

    transform: scale(1.08);
}

.experience-toggle i {
    transition: transform 0.35s ease;
}


/* =========================================================
   OPEN EXPERIENCE
========================================================= */

.experience-card.active .experience-toggle i {
    transform: rotate(45deg);
}

.experience-card:not(.active) .experience-body {
    display: none;
}


/* =========================================================
   EXPERIENCE BODY
========================================================= */

.experience-body {
    margin-top: 28px;

    animation: experienceFade 0.45s ease both;
}

@keyframes experienceFade {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SUMMARY
========================================================= */

.experience-summary {
    display: grid;

    grid-template-columns: auto 1fr;

    align-items: start;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}

.experience-summary p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   BADGE
========================================================= */

.experience-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 28px;

    padding: 5px 11px;

    border-radius: 5px;

    border:
        1px solid rgba(0, 217, 255, 0.2);

    background:
        rgba(0, 217, 255, 0.07);

    color: #00d9ff;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1.2px;

    white-space: nowrap;
}


/* =========================================================
   DETAILS GRID
========================================================= */

.experience-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;
}

.detail-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 15px;

    border-radius: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.055);

    background:
        rgba(255, 255, 255, 0.025);

    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(0, 217, 255, 0.2);

    background:
        rgba(0, 217, 255, 0.045);
}

.detail-item > i {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(0, 217, 255, 0.07);

    color: #00d9ff;

    font-size: 13px;
}

.detail-item strong {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;
}

.detail-item span {
    display: block;

    color: rgba(255, 255, 255, 0.43);

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   TECHNOLOGY TAGS
========================================================= */

.timeline-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;
}

.timeline-tags span {
    padding: 6px 10px;

    border-radius: 4px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        rgba(255, 255, 255, 0.035);

    color: rgba(255, 255, 255, 0.5);

    font-family: monospace;

    font-size: 9px;

    transition: all 0.3s ease;
}

.timeline-tags span:hover {
    color: #00d9ff;

    border-color:
        rgba(0, 217, 255, 0.3);

    background:
        rgba(0, 217, 255, 0.06);
}


/* =========================================================
   CAREER END
========================================================= */

.career-endpoint {
    max-width: 1050px;

    margin: 0 auto;

    padding-left: 82px;

    display: flex;

    align-items: center;

    gap: 14px;

    color: rgba(255, 255, 255, 0.3);

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.endpoint-line {
    width: 65px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(0, 217, 255, 0.4),
            transparent
        );
}

.endpoint-icon {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(0, 217, 255, 0.2);

    color: #00d9ff;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .experience-details {
        grid-template-columns: 1fr;
    }

    .experience-heading {
        margin-bottom: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .timeline {
        padding-top: 10px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 45px;
        margin-bottom: 25px;
    }

    .timeline-marker {
        left: -1px;

        width: 32px;
        height: 32px;
    }

    .timeline-content {
        padding: 22px 18px;

        border-radius: 14px;
    }

    .timeline-top {
        gap: 10px;
    }

    .timeline-content h3 {
        font-size: 19px;
    }

    .timeline-content h4 {
        font-size: 12px;
    }

    .timeline-date {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .experience-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .experience-summary {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .experience-summary p {
        font-size: 12px;
    }

    .detail-item {
        padding: 12px;
    }

    .career-endpoint {
        padding-left: 45px;
    }

    .endpoint-line {
        width: 30px;
    }

}
/* =========================================================
   PROFESSIONAL EXPERIENCE - CENTER & LARGE
========================================================= */

#experience {
    width: 100%;
}

#experience .container {
    width: min(94%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
}

#experience .section-title {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#experience .section-title h2 {
    font-size: clamp(34px, 5vw, 58px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#experience .section-title p {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

#experience .timeline {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

#experience .timeline-content {
    width: 100%;
}/* PROFESSIONAL EXPERIENCE - CENTER & WIDER */

#experience {
    width: 100%;
}

#experience .container {
    width: 94%;
    max-width: 1350px;
    margin: 0 auto;
}

#experience .section-title {
    width: 100%;
    text-align: center;
    margin: 0 auto 60px;
}

#experience .section-title h2,
#experience .section-title p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#experience .section-title h2 {
    font-size: clamp(38px, 5vw, 62px);
}

#experience .section-title p {
    max-width: 850px;
}

#experience .timeline {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

/* Make the experience cards wider */
#experience .timeline-item {
    width: 100%;
}

#experience .timeline-content {
    width: 100%;
    min-height: 200px;
}

/* Better spacing on large screens */
@media (min-width: 1000px) {
    #experience .timeline-content {
        padding: 38px 45px;
    }
}
/* =========================================================
   CERTIFICATIONS & PROFESSIONAL DEVELOPMENT
   ========================================================= */

#certifications {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#certifications .container {
    width: 94%;
    max-width: 1350px;
    margin: 0 auto;
}

/* Section Heading */

#certifications .certifications-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto 65px;
}

#certifications .certifications-heading .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #00d9ff;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
}

#certifications .certifications-heading h2 {
    text-align: center;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.15;
    margin: 0 auto;
}

#certifications .certifications-heading h2 span {
    color: #00d9ff;
}

#certifications .certifications-heading p {
    max-width: 820px;
    margin: 22px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}


/* =========================================================
   CERTIFICATION BLOCK
   ========================================================= */

.certifications-block {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 80px;
}

.certifications-block-header,
.development-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.block-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 12px;

    background: rgba(0, 217, 255, 0.06);

    color: #00d9ff;

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.06);
}

.block-label {
    display: block;
    margin-bottom: 5px;

    color: #00d9ff;

    font-family: monospace;
    font-size: 9px;
    letter-spacing: 1.8px;
}

.certifications-block-header h3,
.development-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
}


/* =========================================================
   CERTIFICATION GRID
   ========================================================= */

.certifications-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CERTIFICATION CARD
   ========================================================= */

.certification-card {
    position: relative;

    min-height: 145px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px 28px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.certification-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: #00d9ff;

    opacity: 0;

    transition: opacity 0.35s ease;
}

.certification-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 217, 255, 0.28);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 217, 255, 0.06);
}

.certification-card:hover::before {
    opacity: 1;
}


/* Number */

.certification-number {
    position: absolute;

    top: 14px;
    right: 18px;

    color: rgba(255, 255, 255, 0.16);

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 1px;
}


/* Icon */

.certification-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0, 217, 255, 0.06);

    border: 1px solid rgba(0, 217, 255, 0.15);

    color: #00d9ff;

    font-size: 19px;

    transition: all 0.35s ease;
}

.certification-card:hover .certification-icon {
    background: rgba(0, 217, 255, 0.12);

    border-color: rgba(0, 217, 255, 0.4);

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.15);

    transform: scale(1.06);
}


/* Content */

.certification-content {
    padding-right: 20px;
}

.certification-content h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.4;
}

.certification-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   PROFESSIONAL DEVELOPMENT
   ========================================================= */

.development-block {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.development-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.development-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 125px;

    padding: 25px 28px;

    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.065);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.01)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.development-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 217, 255, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(0, 217, 255, 0.07),
            rgba(255, 255, 255, 0.015)
        );
}

.development-card > i {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(0, 217, 255, 0.06);

    color: #00d9ff;

    border: 1px solid rgba(0, 217, 255, 0.15);

    font-size: 16px;
}

.development-card h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
}

.development-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    line-height: 1.65;
}

.development-number {
    position: absolute;

    top: 12px;
    right: 16px;

    color: rgba(255, 255, 255, 0.14);

    font-family: monospace;

    font-size: 9px;
}


/* =========================================================
   FOOTER STATUS
   ========================================================= */

.credentials-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 65px auto 0;

    max-width: 650px;
}

.credentials-line {
    height: 1px;
    flex: 1;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(0, 217, 255, 0.25)
        );
}

.credentials-line:last-child {
    background:
        linear-gradient(
            to left,
            transparent,
            rgba(0, 217, 255, 0.25)
        );
}

.credentials-status {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.3);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1.5px;

    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 8px #00d9ff,
        0 0 18px rgba(0, 217, 255, 0.5);

    animation: certificationPulse 2s infinite;
}

@keyframes certificationPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .certifications-grid,
    .development-grid {
        grid-template-columns: 1fr;
    }

    .certifications-block,
    .development-block {
        max-width: 900px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    #certifications .container {
        width: 92%;
    }

    #certifications .certifications-heading {
        margin-bottom: 45px;
    }

    #certifications .certifications-heading h2 {
        font-size: 34px;
    }

    .certifications-block-header,
    .development-header {
        gap: 12px;
    }

    .block-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .certifications-block-header h3,
    .development-header h3 {
        font-size: 21px;
    }

    .certification-card,
    .development-card {
        padding: 21px 18px;
    }

    .certification-icon,
    .development-card > i {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .certification-content h4 {
        font-size: 13px;
    }

    .certification-content p,
    .development-card p {
        font-size: 10px;
    }

    .credentials-footer {
        gap: 10px;
    }

}
/* =========================================================
   CONTACT SECTION
========================================================= */

#contact {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#contact .container {
    width: 94%;
    max-width: 1350px;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   CONTACT HEADING
--------------------------------------------------------- */

#contact .contact-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto 35px;
}

#contact .contact-heading .section-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #00d9ff;

    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
}

#contact .contact-heading h2 {
    margin: 0 auto;

    text-align: center;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
}

#contact .contact-heading h2 span {
    color: #00d9ff;
}

#contact .contact-heading p {
    max-width: 800px;

    margin: 22px auto 0;

    text-align: center;

    color: rgba(255, 255, 255, 0.52);

    line-height: 1.8;
}


/* ---------------------------------------------------------
   AVAILABILITY STATUS
--------------------------------------------------------- */

.contact-status {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 0 auto 45px;

    color: rgba(255, 255, 255, 0.35);

    font-family: monospace;
    font-size: 9px;
    letter-spacing: 1.5px;

    text-align: center;
}

.contact-status .status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #00d9ff;

    box-shadow:
        0 0 8px #00d9ff,
        0 0 20px rgba(0, 217, 255, 0.5);

    animation: contactStatusPulse 2s ease-in-out infinite;
}

@keyframes contactStatusPulse {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* ---------------------------------------------------------
   CONTACT GRID
--------------------------------------------------------- */

.contact-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* ---------------------------------------------------------
   CONTACT CARD
--------------------------------------------------------- */

.contact-card {
    position: relative;

    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px 30px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Cyan side accent */

.contact-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: #00d9ff;

    opacity: 0;

    transition: opacity 0.35s ease;
}


/* Hover */

.contact-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 217, 255, 0.3);

    background:
        linear-gradient(
            145deg,
            rgba(0, 217, 255, 0.065),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.32),
        0 0 35px rgba(0, 217, 255, 0.07);
}

.contact-card:hover::before {
    opacity: 1;
}


/* ---------------------------------------------------------
   CONTACT ICON
--------------------------------------------------------- */

.contact-card-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    border: 1px solid rgba(0, 217, 255, 0.18);

    background: rgba(0, 217, 255, 0.055);

    color: #00d9ff;

    font-size: 19px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08);

    background: rgba(0, 217, 255, 0.12);

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.14);
}


/* ---------------------------------------------------------
   CONTACT CONTENT
--------------------------------------------------------- */

.contact-card-content {
    min-width: 0;

    padding-right: 25px;
}

.contact-card-label {
    display: block;

    margin-bottom: 7px;

    color: #00d9ff;

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1.8px;
}

.contact-card-content h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.4;

    word-break: break-word;
}

.contact-card-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   CARD ARROW
--------------------------------------------------------- */

.contact-card-arrow {
    position: absolute;

    right: 22px;
    top: 22px;

    color: rgba(255, 255, 255, 0.25);

    font-size: 11px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    color: #00d9ff;

    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   STATIC LOCATION CARD
--------------------------------------------------------- */

.contact-card-static {
    cursor: default;
}

.contact-card-static:hover {
    transform: translateY(-5px);
}


/* ---------------------------------------------------------
   CALL TO ACTION
--------------------------------------------------------- */

.contact-cta {
    width: 100%;
    max-width: 1200px;

    margin: 45px auto 0;

    padding: 32px 38px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 1px solid rgba(0, 217, 255, 0.13);

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 217, 255, 0.055),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


/* CTA text */

.contact-cta-label {
    display: block;

    margin-bottom: 8px;

    color: #00d9ff;

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1.8px;
}

.contact-cta-content h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 22px;
}

.contact-cta-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.43);

    font-size: 11px;

    line-height: 1.7;
}


/* CTA BUTTON */

.contact-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 20px;

    flex-shrink: 0;

    border: 1px solid rgba(0, 217, 255, 0.35);

    border-radius: 10px;

    background: rgba(0, 217, 255, 0.08);

    color: #00d9ff;

    text-decoration: none;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 0.8px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-cta-button:hover {
    background: rgba(0, 217, 255, 0.15);

    border-color: rgba(0, 217, 255, 0.65);

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 217, 255, 0.1);
}

.contact-cta-button i {
    transition: transform 0.3s ease;
}

.contact-cta-button:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-cta {
        max-width: 800px;

        margin-left: auto;
        margin-right: auto;
    }

    .contact-cta {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    #contact .container {
        width: 92%;
    }

    #contact .contact-heading h2 {
        font-size: 36px;
    }

    #contact .contact-heading p {
        font-size: 11px;
    }

    .contact-status {
        font-size: 7px;

        letter-spacing: 1px;
    }

    .contact-card {
        min-height: 125px;

        padding: 22px 20px;

        gap: 14px;
    }

    .contact-card-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;

        font-size: 16px;
    }

    .contact-card-content {
        padding-right: 18px;
    }

    .contact-card-content h3 {
        font-size: 12px;
    }

    .contact-card-content p {
        font-size: 9px;
    }

    .contact-cta {
        padding: 25px 21px;

        gap: 22px;
    }

    .contact-cta-content h3 {
        font-size: 19px;
    }

    .contact-cta-button {
        width: 100%;
    }

}
/* =========================================================
   FOOTER COPYRIGHT - CENTER ALIGNMENT
========================================================= */

footer {
    width: 100%;
    text-align: center !important;
}

footer p {
    width: 100%;
    margin: 0 auto !important;
    text-align: center !important;
    display: block;
}
/* =========================================================
   FINAL PROFESSIONAL FOOTER
========================================================= */

.site-footer {
    width: 100%;
    padding: 45px 20px 35px;
    margin-top: 40px;

    text-align: center !important;

    border-top: 1px solid rgba(0, 217, 255, 0.15);

    background: rgba(5, 8, 20, 0.65);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    position: relative;
    z-index: 5;
}

.site-footer .footer-social {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.site-footer .footer-social a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 50%;

    color: #00d9ff;
    background: rgba(0, 217, 255, 0.05);

    text-decoration: none;

    transition: all 0.3s ease;
}

.site-footer .footer-social a:hover {
    background: #00d9ff;
    color: #050816;

    transform: translateY(-4px);

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.5),
        0 0 30px rgba(0, 217, 255, 0.2);
}

.site-footer .footer-copyright {
    width: 100%;
    margin: 0 auto !important;

    text-align: center !important;

    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}