/*=================================================
ABOUT PAGE
EMI / EMC Engineering Toolkit
=================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;

    background:#071426;

    color:#ffffff;

}

/*=========================================
Hero Section
=========================================*/

.hero{

    width:100%;

    min-height:320px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(135deg,#071426,#0d2c4d,#003b63);

    padding:120px 20px 70px;

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-size:52px;

    color:#00d4ff;

    margin-bottom:20px;

    font-weight:700;

}

.hero p{

    font-size:20px;

    color:#d7e4f2;

    line-height:1.8;

}

/*=========================================
Main Container
=========================================*/

.about-container{

    width:90%;

    max-width:1300px;

    margin:60px auto;

}

/*=========================================
Glass Card
=========================================*/

.section-card,
.profile-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:40px;

    margin-bottom:40px;

    transition:.35s;

}

.section-card:hover,
.profile-card:hover{

    transform:translateY(-6px);

    border-color:#00d4ff;

    box-shadow:0 20px 45px rgba(0,212,255,.15);

}

.section-card h2{

    color:#00d4ff;

    margin-bottom:20px;

    font-size:30px;

}

.section-card p{

    color:#d8e0ea;

    line-height:1.9;

    margin-bottom:18px;

}

/*=========================================
Profile Card
=========================================*/

.profile-card{

    display:flex;

    align-items:center;

    gap:45px;

}

.profile-image{

    width:240px;

    height:240px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #00d4ff;

    flex-shrink:0;

    box-shadow:0 0 30px rgba(0,212,255,.35);

}

.profile-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.profile-details{

    flex:1;

}

.profile-details h2{

    font-size:38px;

    color:#00d4ff;

    margin-bottom:8px;

}

.profile-details h4{

    color:#ffffff;

    margin-bottom:20px;

    font-weight:500;

}

.profile-details p{

    color:#d8e0ea;

    line-height:1.9;

}

/*=========================================
Skills
=========================================*/

.skills{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:25px;

}

.skills span{

    background:#00d4ff;

    color:#071426;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.skills span:hover{

    background:#00ffa3;

    transform:translateY(-3px);

}

/*=========================================
Buttons
=========================================*/

.buttons{

    display:flex;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}

.contact-btn,
.linkedin-btn{

    text-decoration:none;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.contact-btn{

    background:#00d4ff;

    color:#071426;

}

.contact-btn:hover{

    background:#00ffa3;

    transform:translateY(-3px);

}

.linkedin-btn{

    background:#00d4ff;

    color:#071426;

}

.linkedin-btn:hover{

    background:#00ffa3;

    transform:translateY(-3px);

}

/*=========================================
Statistics
=========================================*/

.stats-section{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-bottom:50px;

}

.stat-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:#00d4ff;

    box-shadow:0 15px 35px rgba(0,212,255,.15);

}

.stat-box h2{

    font-size:52px;

    color:#00d4ff;

    margin-bottom:10px;

}

.stat-box p{

    color:#d8e0ea;

    font-size:16px;

}

/*=========================================
Feature Grid
=========================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin-top:30px;

}

.feature-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:20px;

    border-radius:14px;

    color:#ffffff;

    transition:.3s;

    text-align:center;

    font-weight:500;

}

.feature-item:hover{

    background:#00d4ff;

    color:#071426;

    transform:translateY(-5px);

}

/*=========================================
Vision Grid
=========================================*/

.vision-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:25px;

    margin-bottom:40px;

}

.vision-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.vision-card:hover{

    transform:translateY(-5px);

    border-color:#00d4ff;

}

.vision-card h2{

    color:#00d4ff;

    margin-bottom:20px;

}

.vision-card p{

    color:#d8e0ea;

    line-height:1.8;

}

/*=========================================
Highlight Cards
=========================================*/

.highlight-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    margin-top:30px;

}

.highlight-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    padding:30px;

    transition:.35s;

    text-align:center;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:#00d4ff;

    box-shadow:0 15px 35px rgba(0,212,255,.18);

}

.highlight-card h3{

    color:#00d4ff;

    margin-bottom:15px;

    font-size:22px;

}

.highlight-card p{

    color:#d8e0ea;

    line-height:1.8;

}

/*=========================================
Contact Section
=========================================*/

.contact-card{

    text-align:center;

}

.contact-card p{

    max-width:700px;

    margin:15px auto;

    line-height:1.8;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:30px;

}

/*=========================================
Footer
=========================================*/

.about-footer{

    margin-top:70px;

    padding:50px 20px;

    background:#05111f;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.about-footer h2{

    color:#00d4ff;

    margin-bottom:15px;

}

.about-footer p{

    color:#cfd8e3;

    line-height:1.8;

    margin:8px 0;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin:30px 0;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:#00d4ff;

}

.copyright{

    margin-top:20px;

    color:#8fa4bc;

    font-size:15px;

}

/*=========================================
Animations
=========================================*/

.profile-card,
.section-card,
.stat-box,
.vision-card,
.highlight-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
Responsive
=========================================*/

@media(max-width:992px){

    .profile-card{

        flex-direction:column;

        text-align:center;

    }

    .profile-image{

        width:200px;

        height:200px;

    }

    .buttons{

        justify-content:center;

    }

}

@media(max-width:768px){

    .hero{

        padding:100px 20px 50px;

    }

    .hero h1{

        font-size:36px;

    }

    .hero p{

        font-size:17px;

    }

    .profile-details h2{

        font-size:30px;

    }

    .profile-details h4{

        font-size:18px;

    }

    .profile-image{

        width:170px;

        height:170px;

    }

    .stat-box h2{

        font-size:42px;

    }

    .vision-grid{

        grid-template-columns:1fr;

    }

    .feature-grid{

        grid-template-columns:1fr;

    }

    .highlight-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:15px;

    }

    .profile-image{

        width:150px;

        height:150px;

    }

    .contact-btn,
    .linkedin-btn{

        width:100%;

        text-align:center;

    }

}

/*=========================================
Ripple Effect
=========================================*/

.contact-btn,
.linkedin-btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:15px;

    height:15px;

    background:rgba(255,255,255,.6);

    border-radius:50%;

    transform:translate(-50%,-50%);

    animation:ripple .6s linear;

}

@keyframes ripple{

    from{

        width:0;

        height:0;

        opacity:1;

    }

    to{

        width:300px;

        height:300px;

        opacity:0;

    }

}