.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:1400px;

    z-index:1000;

    transition:.35s ease;

}

.header.scrolled{

    top:10px;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 35px;

    background:rgba(11,18,32,.82);

    backdrop-filter:blur(18px);

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

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

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.28);

}

.logo{

    font-family:'Space Grotesk',sans-serif;

    font-size:28px;

    font-weight:700;

    color:var(--white);

    white-space:nowrap;

    transition:.35s ease;

}

.logo:hover{

    color:var(--primary);

}

.nav-links{

    display:flex;

    align-items:center;

    gap:32px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    position:relative;

    font-size:15px;

    font-weight:500;

    color:var(--text);

    transition:.35s ease;

}

.nav-links a:hover{

    color:var(--white);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    transition:.35s ease;

}

.nav-links a:hover::after{

    width:100%;

}

.resume-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 28px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-weight:600;

    transition:.35s ease;

}

.resume-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(59,130,246,.35);

}

.menu-btn{

    display:none;

    width:46px;

    height:46px;

    border-radius:12px;

    align-items:center;

    justify-content:center;

    color:#fff;

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

    cursor:pointer;

    transition:.35s ease;

}

.menu-btn:hover{

    background:var(--primary);

}

.menu-btn i{

    font-size:20px;

}
.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        radial-gradient(circle at top right,
        rgba(59,130,246,.15),
        transparent 40%),
        radial-gradient(circle at bottom left,
        rgba(139,92,246,.12),
        transparent 40%);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-greeting{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:20px;

    background:rgba(59,130,246,.12);

    border:1px solid rgba(59,130,246,.25);

    border-radius:50px;

    color:var(--secondary);

    font-size:15px;

    font-weight:600;

}

.hero-name{

    font-size:64px;

    font-weight:800;

    margin-bottom:15px;

    line-height:1.1;

    color:var(--white);

}

.hero-title{

    font-size:34px;

    font-weight:700;

    margin-bottom:25px;

    color:var(--primary);

}

#typing-text{

    color:var(--primary);

}

.hero-description{

    max-width:650px;

    font-size:18px;

    color:var(--muted);

    line-height:1.9;

    margin-bottom:35px;

}
.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:180px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:999px;

    font-weight:600;

}

.hero-buttons .btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border:none;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(59,130,246,.35);

}

.hero-buttons .btn-outline-info{

    border:2px solid var(--secondary);

    color:var(--secondary);

    background:transparent;

}

.hero-buttons .btn-outline-info:hover{

    background:var(--secondary);

    color:#fff;

}
.hero-social{

    display:flex;

    align-items:center;

    gap:16px;

}

.hero-social a{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

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

    color:var(--white);

    font-size:20px;

    transition:.35s ease;

}

.hero-social a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    transform:translateY(-5px);

}
.hero-stack{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:35px;

}

.hero-stack span{

    padding:10px 18px;

    border-radius:999px;

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

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

    color:var(--text);

    font-size:14px;

    transition:.35s;

}

.hero-stack span:hover{

    background:var(--primary);

    color:#fff;

}
.stat-card{

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

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

    border-radius:20px;

    padding:25px;

    text-align:center;

    backdrop-filter:blur(12px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.4);

}

.stat-card h3{

    color:var(--primary);

    font-size:36px;

    margin-bottom:8px;

}

.stat-card p{

    margin:0;

    color:var(--muted);

    font-size:15px;

}
.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.image-wrapper{

    width:420px;

    height:420px;

    border-radius:50%;

    position:relative;

    overflow:hidden;

    padding:8px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary),
        var(--accent)
    );

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

}

.image-wrapper img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    background:#000;

}
.image-wrapper::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid rgba(59,130,246,.25);

    animation:rotateGlow 10s linear infinite;

}
.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:var(--white);

    font-size:26px;

    opacity:.8;

    animation:bounce 2s infinite;

}

.scroll-down i{

    cursor:pointer;

}
.about{

    position:relative;

    background:var(--surface);

}
.about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    width:100%;

    max-width:420px;

    border-radius:28px;

    object-fit:cover;

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

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    transition:.4s ease;

}

.about-image img:hover{

    transform:scale(1.03);

}
.about-name{

    font-size:48px;

    font-weight:800;

    margin-bottom:10px;

    color:var(--white);

}

.about h5{

    color:var(--secondary);

    font-size:22px;

    margin-bottom:25px;

}

.about-text{

    color:var(--muted);

    font-size:17px;

    line-height:2;

    margin-bottom:35px;

}
.about-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.about-list li{

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

    gap:16px;

    padding:18px 22px;

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

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

    border-radius:16px;

}

.about-list li:hover{

    transform:translateY(-5px);

    border-color:rgba(59,130,246,.35);

    background:rgba(59,130,246,.08);

}
.about-list li strong{

    flex:0 0 120px;

    color:#fff;

    font-weight:600;

}

.about-list li span{

    flex:1;

    text-align:right;

    color:var(--text-light);

}

.about-list li{

    color:var(--muted);

    font-size:15px;

}
.about .btn{

    margin-top:35px;

    padding:14px 34px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border:none;

    font-weight:600;

    transition:.35s ease;

}

.about .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(59,130,246,.35);

}
.about::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    background:radial-gradient(

        rgba(59,130,246,.10),

        transparent 70%

    );

    pointer-events:none;

}

.about::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-180px;

    width:420px;

    height:420px;

    background:radial-gradient(

        rgba(139,92,246,.08),

        transparent 70%

    );

    pointer-events:none;

}
.skills{

    position:relative;

    background:var(--bg);

}

.skills .row{

    row-gap:30px;

}
.skill-card{

    height:100%;

    padding:35px;

    border-radius:24px;

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

    backdrop-filter:blur(16px);

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

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

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.skill-card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,130,246,.35);

    box-shadow:var(--shadow);

}
.skill-card h3{

    position:relative;

    display:inline-block;

    font-size:24px;

    font-weight:700;

    color:var(--white);

    margin-bottom:28px;

    padding-bottom:12px;

}

.skill-card h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

}
.skill-list{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}
.skill-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(59,130,246,.08);

    border:1px solid rgba(59,130,246,.20);

    color:var(--text);

    font-size:15px;

    font-weight:500;

    transition:all .35s ease;

    cursor:default;

}

.skill-badge:hover{

    color:var(--white);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-color:transparent;

    transform:translateY(-5px);

    box-shadow:0 12px 28px rgba(59,130,246,.30);

}
.skills::before{

    content:"";

    position:absolute;

    top:-180px;

    left:-180px;

    width:420px;

    height:420px;

    background:radial-gradient(

        rgba(59,130,246,.08),

        transparent 70%

    );

    pointer-events:none;

}

.skills::after{

    content:"";

    position:absolute;

    bottom:-180px;

    right:-180px;

    width:420px;

    height:420px;

    background:radial-gradient(

        rgba(139,92,246,.08),

        transparent 70%

    );

    pointer-events:none;

}
.education{

    position:relative;

    background:var(--surface);

}

.education-timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}
.education-timeline::before{

    content:"";

    position:absolute;

    top:0;

    bottom:0;

    left:45px;

    width:3px;

    background:linear-gradient(
        to bottom,
        var(--primary),
        var(--secondary)
    );

    border-radius:50px;

}
.education-card{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:35px;

    margin-bottom:35px;

    padding:35px;

    padding-left:120px;

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

    backdrop-filter:blur(16px);

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

    border-radius:24px;

    transition:.35s ease;

}

.education-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

    box-shadow:var(--shadow);

}
.education-year{

    position:absolute;

    left:0;

    top:32px;

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:18px;

    font-weight:700;

    box-shadow:0 12px 30px rgba(59,130,246,.35);

}
.education-content{

    width:100%;

}

.education-content h3{

    font-size:28px;

    color:var(--white);

    margin-bottom:10px;

}

.education-content h5{

    font-size:18px;

    color:var(--secondary);

    margin-bottom:12px;

    font-weight:600;

}

.education-content .score{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(59,130,246,.12);

    border:1px solid rgba(59,130,246,.20);

    color:var(--primary);

    font-weight:600;

}

.education-content p{

    font-size:16px;

    color:var(--muted);

    line-height:1.9;

}
.internship{

    position:relative;

    background:var(--bg);

}

.internship-card{

    max-width:1100px;

    margin:auto;

    padding:40px;

    border-radius:24px;

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

    backdrop-filter:blur(18px);

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

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

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.internship-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

    box-shadow:var(--shadow);

}
.internship-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:25px;

    margin-bottom:20px;

}

.internship-header h3{

    font-size:32px;

    color:var(--white);

    margin-bottom:8px;

}

.internship-header h4{

    font-size:20px;

    color:var(--secondary);

    margin-bottom:0;

    font-weight:600;

}
.internship-duration{

    white-space:nowrap;

    padding:12px 22px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

}
.internship-location{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--muted);

    margin-bottom:25px;

    font-size:16px;

}

.internship-location i{

    color:var(--primary);

}
.internship-description{

    font-size:17px;

    line-height:1.9;

    color:var(--muted);

    margin-bottom:35px;

}
.internship-tech{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:20px;

}

.internship-tech span{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(59,130,246,.08);

    border:1px solid rgba(59,130,246,.20);

    color:var(--text);

    font-size:14px;

    transition:.35s ease;

}

.internship-tech span:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    transform:translateY(-4px);

}
.internship-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

.internship-buttons .btn{

    min-width:220px;

    height:54px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:999px;

    font-weight:600;

}

.internship-buttons .btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border:none;

}

.internship-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(59,130,246,.35);

}

.internship-buttons .btn-outline-info{

    border:2px solid var(--secondary);

    color:var(--secondary);

    background:transparent;

}

.internship-buttons .btn-outline-info:hover{

    background:var(--secondary);

    color:#fff;

}
.projects{

    position:relative;

    background:var(--surface);

}

.projects .row{

    row-gap:40px;

}
.project-card{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:50px;

    align-items:start;

    padding:45px;

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

    backdrop-filter:blur(18px);

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

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

    border-radius:28px;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

    overflow:hidden;

}

.project-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

    box-shadow:var(--shadow);

}
.project-image{

    width:100%;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}
.project-image{

    align-self:center;

    display:flex;

    justify-content:center;

}

.project-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:18px;

    display:block;

}

.project-card:hover .project-image img{

    transform:scale(1.05);

}
.featured-badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:8px 16px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:13px;

    font-weight:600;

    z-index:5;

}
.project-details h3{

    font-size:34px;

    color:var(--white);

    margin-bottom:18px;

}

.project-description{

    font-size:17px;

    color:var(--muted);

    line-height:1.9;

    margin-bottom:30px;

}
.project-details h5{

    font-size:18px;

    color:var(--secondary);

    margin-bottom:18px;

}

.project-details{

    padding-top:20px;

}
.project-features{

    display:grid;

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

    gap:14px;

    margin-bottom:35px;

}

.project-features li{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--text);

    font-size:15px;

}

.project-features i{

    color:var(--success);

}
.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    justify-content:flex-start;

}

.project-tech span{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(59,130,246,.08);

    border:1px solid rgba(59,130,246,.20);

    color:var(--text);

    font-size:14px;

    transition:.35s ease;

}

.project-tech span:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

}
.project-buttons{

    margin-top:30px;

    display:flex;

    gap:15px;

    align-items:center;

    flex-wrap:wrap;

}

.project-buttons .btn{

    min-width:180px;

    height:54px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:999px;

    font-weight:600;

}

.project-buttons .btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border:none;

}

.project-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(59,130,246,.35);

}

.project-buttons .btn-outline-info{

    border:2px solid var(--secondary);

    color:var(--secondary);

    background:transparent;

}

.project-buttons .btn-outline-info:hover{

    background:var(--secondary);

    color:#fff;

}

.project-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.18);

    color:var(--white);

    background:transparent;

}

.project-buttons .btn-outline-light:hover{

    background:#fff;

    color:#111827;

}

.project-image{

    position:relative;

}

.featured-badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:5;

}
.certificates{

    position:relative;

    background:var(--bg);

}

.certificates .row{

    row-gap:35px;

}

.certificate-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:20px;

}
.certificate-card{

    display:flex;

    flex-direction:column;

    height:100%;

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

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

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.certificate-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}
#certificateViewer{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(5,8,22,.88);

    backdrop-filter:blur(10px);

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

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:99999;

    padding:30px;

}

#certificateViewer.active{

    opacity:1;

    visibility:visible;

}
.certificate-viewer-content{

    position:relative;

    width:100%;

    max-width:1100px;

    background:var(--card);

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

    border-radius:24px;

    padding:30px;

    text-align:center;

    animation:certificatePopup .35s ease;

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

}
#certificateTitle{

    color:var(--white);

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}
#certificateFullImage{

    display:block;

    margin:auto;

    max-width:100%;

    max-height:75vh;

    width:auto;

    height:auto;

    object-fit:contain;

    border-radius:14px;

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

}
#closeCertificate{

    position:absolute;

    top:18px;

    right:22px;

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

    color:#fff;

    font-size:34px;

    cursor:pointer;

    transition:.3s;

}

#closeCertificate:hover{

    background:var(--primary);

    transform:rotate(90deg);

}

.certificate-image{

    width:100%;

    height:240px;

    object-fit:cover;

}

.certificate-content h5{

    color:var(--white);

    line-height:1.4;

    min-height:76px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}
.certificate-btn{

    width:100%;

    height:55px;

    border-radius:999px;

    margin-top:auto;

    font-weight:600;

}

.certificate-card{

    height:100%;

    min-height:650px;

}
@keyframes certificatePopup{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}
.contact{

    background:var(--bg);

}

.contact-card{

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

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

    border-radius:24px;

    padding:55px;

    transition:.35s ease;

    box-shadow:var(--shadow);

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

}

.contact-item{

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

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

    border-radius:18px;

    padding:30px;

    text-align:center;

    height:100%;

    transition:.35s ease;

}

.contact-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    background:rgba(59,130,246,.08);

}

.contact-item i{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

    border-radius:50%;

    font-size:28px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow:0 10px 30px rgba(59,130,246,.35);

}

.contact-item h5{

    color:var(--white);

    font-weight:700;

    margin-bottom:12px;

}

.contact-item p{

    color:var(--muted);

    margin:0;

}

.contact-item a{

    color:var(--text);

    text-decoration:none;

    transition:.3s;

    word-break:break-word;

}

.contact-item a:hover{

    color:var(--secondary);

}

.contact-card hr{

    margin:45px 0;

    border-color:rgba(255,255,255,.08);

}

.social-contact{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

}

.social-contact a{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

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

    color:#fff;

    font-size:24px;

    transition:.35s ease;

}

.social-contact a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    transform:translateY(-8px) rotate(8deg);

    box-shadow:0 15px 35px rgba(59,130,246,.35);

}
.footer{

    background:#030611;

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

    padding:70px 0 30px;

    margin-top:100px;

}

.footer h4{

    color:var(--white);

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

.footer p{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:0;

}

.footer-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}

.footer-social a{

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

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

    color:var(--white);

    font-size:22px;

    transition:.35s ease;

}

.footer-social a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(59,130,246,.35);

}

.footer hr{

    margin:40px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.footer .text-center p{

    color:var(--muted);

    font-size:15px;

    margin:0;

    letter-spacing:.5px;

}