/* =====================================================
GLOBAL STYLES
===================================================== */

body{
margin:0;
font-family:Arial;
background:#f4f4f4;
}

/* =====================================================
HOME PAGE
===================================================== */

.profile{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
}

.profile img{
height:80vh;
width:450px;
object-fit:cover;
border-radius:25px;
border:6px solid #ff4d4d;
box-shadow:0 0 30px rgba(0,0,0,0.3);
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{ transform:translateY(0px); }
50%{ transform:translateY(-10px); }
100%{ transform:translateY(0px); }
}

.quick-info{
margin-top:15px;
}

.quick-info p{
margin:6px 0;
color:#555;
}

.quick-info i{
color:#ff4d4d;
margin-right:8px;
}

.name-style{
font-family: 'Great Vibes', cursive;
font-size:50px;
color:#ff4d4d;
font-weight:normal;
}

.tagline-style{
font-family: 'Pacifico', cursive;
font-size:18px;
color:#333;
margin-top:10px;
}

.available{
color:green;
font-weight:bold;
margin-bottom:10px;
}

.role{
margin-top:10px;
font-weight:bold;
}

.tagline{
color:#ff4d4d;
font-weight:bold;
margin-top:15px;
}

.desc{
margin-top:10px;
line-height:1.6;
}

/* Logo */
.logo{
text-align:center;
border-left:5px dashed #ff4d4d;
border-right:5px dashed #ff4d4d;
padding:15px;
margin:0 20px 30px 20px;
border-radius:20px;
color:#ff4d4d;
}

.logo i{
margin-right:8px;
}

/* Home Layout */
.container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
}

.text h1{
font-size:40px;
}

.text span{
color:#ff4d4d;
}

/* Buttons */
.home-actions{
display:flex;
align-items:center;
gap:20px;
margin-top:25px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:linear-gradient(135deg,#ff4d4d,#ff1a1a);
color:white;
font-size:16px;
font-weight:600;
border-radius:30px;
text-decoration:none;
border:none;
cursor:pointer;
transition:0.3s ease;
}

.btn:hover{
background:linear-gradient(135deg,#333,#111);
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.btn:active{
transform:scale(0.95);
}

/* Status Badge */
.status-badge{
background:#6be36b;
color:#006b1f;
padding:0 25px;
border-radius:30px;
display:flex;
align-items:center;
height:43px;
font-weight:bold;
gap:10px;
transition:0.3s;
cursor:pointer;
}

.dot{
width:10px;
height:10px;
background:#006b1f;
border-radius:50%;
transition:0.3s;
}

.status-badge:hover{
background:#006b1f;
color:white;
}

.status-badge:hover .dot{
background:white;
}

/* Stats */
.stats{
display:flex;
gap:40px;
margin-top:25px;
}

.stats h2{
color:#ff4d4d;
}

.stats p{
font-size:14px;
color:#666;
}

/* =====================================================
SIDEBAR + LAYOUT
===================================================== */

.sidebar{
width:250px;
height:100vh;
background:white;
position:fixed;
padding-top:40px;
display:flex;
flex-direction:column;
}

.sidebar h2{
text-align:center;
}

.sidebar a{
display:flex;
align-items:center;
gap:15px;
padding:12px 20px;
margin:10px 20px;
text-decoration:none;
color:#555;
border-radius:30px;
transition:0.3s;
}

.sidebar a:hover{
background:#333;
color:white;
}

.sidebar a.active{
background:#ff4d4d;
color:white;
font-weight:bold;
}

.main{
margin-left:250px;
padding:40px;
min-height:100vh;
}

.page{
display:none;
}

#homePage{
display:block;
}

/* =====================================================
ABOUT PAGE
===================================================== */

.about-container{
display:flex;
gap:50px;
margin-top:30px;
}

.about-left{
flex:1;
}

.about-right{
flex:1;
}

.skill{
margin-bottom:20px;
}

.bar{
height:8px;
background:#ddd;
border-radius:5px;
}

.bar div{
height:8px;
background:#ff4d4d;
border-radius:5px;
}

/* Timeline */
.edu-exp{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:60px;
}

.timeline h2{
margin-bottom:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
border-left:5px solid #ff4d4d;
transition:0.4s;
}

.card:hover{
transform:translateY(-12px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.year{
font-size:14px;
color:#ff4d4d;
font-weight:bold;
}

/* =====================================================
SERVICES
===================================================== */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.service-card{
background:white;
padding:40px 20px;
text-align:center;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
transition:0.4s;
}

.service-card i{
font-size:40px;
color:#ff4d4d;
margin-bottom:15px;
}

.service-card:hover{
transform:scale(1.08);
box-shadow:0 0 25px rgba(0,0,0,0.2);
}

/* =====================================================
PORTFOLIO
===================================================== */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.portfolio-card{
position:relative;
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.portfolio-card img{
width:100%;
display:block;
transition:0.5s;
}

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
opacity:0;
transition:0.5s;
}

.portfolio-card:hover img{
transform:scale(1.1);
}

.portfolio-card:hover .overlay{
opacity:1;
}

/* =====================================================
CERTIFICATES
===================================================== */

.cert-container{
display:flex;
gap:50px;
margin-top:30px;
}

.cert-left{
flex:2;
}

.cert-card{
display:flex;
gap:15px;
background:white;
padding:15px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.cert-card:hover{
transform:scale(1.05);
}

.cert-card img{
width:280px;
height:180px;
object-fit:cover;
border-radius:8px;
}

.cert-right{
flex:1;
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.achieve-list{
list-style:none;
padding:0;
}

.achieve-list li{
padding:12px 0;
border-bottom:1px solid #eee;
}

/* =====================================================
CONTACT PAGE
===================================================== */

.contact-title{
text-align:center;
color:#ff4d4d;
margin-top:30px;
}

.contact-sub{
text-align:center;
color:#777;
}

.contact-info{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
text-align:center;
}

.info-box{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
transition:0.4s ease;
cursor:pointer;
}

.info-box:hover{
background:#ff4d4d;
color:white;
transform:scale(1.08);
box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

.info-box i{
font-size:30px;
color:#ff4d4d;
}

.contact-form{
margin-top:40px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border-radius:30px;
border:1px solid #ddd;
}

.row{
display:flex;
gap:20px;
}

/* Social */
.social-links{
display:flex;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.social-links a{
text-decoration:none;
color:white;
background:#ff4d4d;
padding:10px 20px;
border-radius:30px;
}

.social-box{
background:white;
padding:30px;
border-radius:12px;
}


/*golad text curse*/
.career-box{
    width:100%;
    background:#0d3b66;
    color:white;
    padding:25px;
    border-radius:12px;
    margin-top:25px;
    box-sizing:border-box;
    transition:0.4s;
}

.career-box h2{
    margin-bottom:15px;
    border-bottom:2px solid white;
    padding-bottom:5px;
}

.career-box p{
    font-size:18px;
    line-height:1.8;
}

.career-box:hover{
    background:#3fa9f5;
}

.goal-text{
    font-family: 'Great Vibes', cursive;
    font-size:17px;
    margin-left:5px;
}


/*ABOUT ME MAIN BOX (Highlight Box)*/

.about-highlight{
width:100%;
background:#0d3b66;   /* dark blue */
color:white;
padding:20px;
border-radius:10px;
margin:10px 0;
font-size:28px;
line-height:1.0;
box-sizing:border-box;
transition:0.4s;
}

.about-highlight:hover{
background:linear-gradient(135deg,#3fa9f5,#0d3b66);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:768px){
.sidebar{
position:relative;
width:100%;
height:auto;
}
.main{
margin-left:0;
}
.container{
flex-direction:column;
text-align:center;
}
.contact-info{
grid-template-columns:1fr;
}
}

/* ================= FOOTER ================= */

.footer{
margin-top:50px;
padding:20px;
text-align:center;
background:#0d3b66;
color:white;
font-size:18px;
border-top:4px solid #ff4d4d;
}

.footer span{
color:#ffd700;
font-weight:bold;
}

