body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f5f5f5;
}

/* HERO SECTION */

.hero{
padding:50px 20px 180px;
text-align:center;
position:relative;
}

/* GREETING BUBBLE */

.hello-bubble{
display:inline-block;
background:#fff;
padding:10px 20px;
border-radius:40px;
font-size:20px;
font-weight:500;
color:#000;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
margin:5px 0;
}

#greeting-text{
font-weight:600;
}

/* TITLES */

.title{
font-size:56px;
margin:10px 0;
}

.name{
color:#f39c12;
}

.subtitle{
font-size:32px;
margin-bottom:40px;
color:#333;
}

/* IMAGE AREA */

.hero-image-area{
position:relative;
width:520px;
height:380px;
margin:60px auto 0;
}

/* ORANGE HALF CIRCLE */

.orange-bg{
position:absolute;
width:500px;
height:260px;
background:#f39c12;
border-radius:250px 250px 0 0;
bottom:60px;
left:50%;
transform:translateX(-50%);
z-index:1;
}

/* HERO IMAGE */

.hero-img{
position:absolute;
bottom:60px;
left:50%;
transform:translateX(-50%);
width:460px;
z-index:2;
filter:drop-shadow(0px 20px 25px rgba(0,0,0,0.15));
}

/* SKILL TAG BUBBLES */

.tag{
position:absolute;
background:black;
color:white;
padding:8px 16px;
border-radius:25px;
font-size:14px;
white-space:nowrap;
z-index:3;
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

.marketing{
top:40px;
left:-90px;
}

.ads{
top:80px;
right:-90px;
}

.brand{
top:170px;
left:-70px;
}

.social{
top:210px;
right:-80px;
}

/* CTA PILL BUTTON */

.cta-pill{
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:240px;
display:flex;
background:#3c3c3c;
padding:6px;
border-radius:40px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
z-index:10;
}

.cta-btn{
padding:8px 20px;
border-radius:30px;
text-decoration:none;
font-size:14px;
color:#ddd;
transition:0.3s;
}

.cta-btn.active{
background:#f39c12;
color:white;
}

.cta-btn:hover{
background:#f39c12;
color:white;
}

/* TESTIMONIAL */
/* positioned relative to .hero */

.testimonial{
position:absolute;
left: 100px;
top:300px;
width:200px;
font-size:13px;
color:#444;
font-style:italic;
text-align:left;
background:rgba(255,255,255,0.7);
padding:8px;
border-radius:8px;
}

/* EXPERIENCE */
/* positioned relative to .hero, right side, same level as image */

.experience{
position:absolute;
top: 280px;
right:25px;
font-size:22px;
text-align:right;
line-height:1.4;
color:#333;
}

/* WAVE ANIMATION */

.wave{
display:inline-block;
transition:0.2s;
}

.rotate{
transform:rotate(20deg);
}

/* hero floating animation */

.tag{
animation:bubbleFloat 6s ease-in-out infinite;
}

@keyframes bubbleFloat{
0%{ transform:translateY(0px); }
50%{ transform:translateY(-6px); }
100%{ transform:translateY(0px); }
}

.marketing{ animation-delay:0s; }
.ads{ animation-delay:1s; }
.brand{ animation-delay:2s; }
.social{ animation-delay:3s; }

.skill-marquee{
background:#ffffff;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
overflow:hidden;
padding:18px 0;
margin-top:-240px;
}

.marquee{
width:100%;
overflow:hidden;
}

.marquee-content{
display:flex;
gap:60px;
white-space:nowrap;
animation:marqueeMove 7s linear infinite;
font-size:18px;
font-weight:600;
font-style:italic;
color:#111;
}

.marquee-content span{
display:flex;
align-items:center;
gap:12px;
}

.marquee-content b{
color:#f5a000;
font-size:20px;
}

@keyframes marqueeMove{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

.about-section{
padding:100px 10%;
background:#f7f7f7;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
margin-top:-100px;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:40px;
margin-bottom:20px;
color:#000;
position:relative;
}

.about-text h2::after{
content:"";
width:70px;
height:4px;
background:#f5a000;
display:block;
margin-top:10px;
}

.about-text p{
font-size:18px;
line-height:1.7;
color:#444;
margin-bottom:20px;
}

.highlight{
font-weight:600;
border-bottom:2px solid #ffb400;
padding-bottom:2px;
}

.about-image{
flex:1;
text-align:center;
}

.about-image img{
width:350px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.projects{
padding:100px 10%;
background:#f9f9f9;
text-align:center;
margin-top:-100px;
}

.section-title{
font-size:40px;
margin-bottom:10px;
}

.section-subtitle{
color:#666;
margin-bottom:60px;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.project-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.project-img{
height:150px;
background:#eee;
border-radius:8px;
margin-bottom:20px;
}

.project-card h3{
margin-bottom:10px;
}

.project-card p{
color:#555;
margin-bottom:15px;
}

.project-card a{
text-decoration:none;
color:#ffb400;
font-weight:600;
}

/* SKILLS SECTION */

.skills{
position:relative;
width:100%;
padding:80px 40px;
background:#f5f5f5;
text-align:center;
box-sizing:border-box;
overflow:hidden;
}

.skills-header{
position:relative;
margin-bottom:20px;
display:flex;
justify-content:center;
align-items:center;
}

.skills-title{
font-size:64px;
font-weight:800;
}

.skills-header::before{
content:"";
position:absolute;
left:120px;
top:15px;
width:60px;
height:60px;
border-top:4px solid #ff8c2f;
border-left:4px solid #ff8c2f;
border-radius:50%;
transform:rotate(-30deg);
}

.skills-header::after{
content:"";
position:absolute;
right:120px;
top:15px;
width:60px;
height:60px;
border-top:4px solid #ff8c2f;
border-right:4px solid #ff8c2f;
border-radius:50%;
transform:rotate(30deg);
}

.skills-tags{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin-top:20px;
margin-bottom:60px;
}

.skills-tags span{
padding:10px 18px;
border-radius:25px;
border:1px solid #bbb;
background:white;
font-size:14px;
}

.skills-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;
}

.tools-card,
.cert-card{
background:#eaeaea;
padding:35px;
border-radius:20px;
text-align:left;
}

.tools-card h3,
.cert-card h3{
font-size:40px;
margin-bottom:25px;
font-weight:700;
}

.tools-icons{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.tool{
width:70px;
height:70px;
background:white;
border-radius:12px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
box-shadow:0 5px 12px rgba(0,0,0,0.08);
}

.tool img{
width:32px;
height:32px;
}

.tool p{
font-size:11px;
text-align:center;
}

.cert-item{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:20px;
}

.cert-item img{
width:28px;
height:28px;
margin-right:12px;
}

.cert-item p{
font-size:13px;
color:#666;
margin-top:3px;
}

.tool:hover{
transform:translateY(-4px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.thankyou{
padding:120px 10%;
background:#ebe8e8f5;
}

.thankyou-container{
display:flex;
align-items:center;
justify-content:center;
gap:100px;
max-width:1000px;
margin:auto;
}

.thank-title{
font-size:72px;
margin-bottom:10px;
margin-top:-150px;
font-style:italic;
}

.bold{ font-weight:800; }
.light{ font-weight:400; }

.thank-subtitle{
font-size:18px;
margin-bottom:30px;
color:#444;
}

.contact-list{
display:flex;
flex-direction:column;
gap:14px;
}

.contact-item{
display:flex;
align-items:center;
gap:12px;
font-size:15px;
}

.contact-item img{
width:22px;
height:22px;
}

.contact-btn{
display:inline-block;
padding:12px 28px;
background:#000;
color:white;
text-decoration:none;
border-radius:20px;
transition:0.3s;
width:fit-content;
}

.contact-btn:hover{
background:#ff8c2f;
}

.avatar{
display:flex;
align-items:center;
justify-content:center;
}

.avatar img{
width:200px;
height:auto;
}

.footer{
display:flex;
justify-content:flex-end;
text-align:right;
padding:20px 60px;
font-size:14px;
color:#302e2e;
background:#0e0d0d;
}

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

@media (max-width: 768px) {

  .hero{
    padding:24px 20px 0;
    overflow:hidden;
  }

  .title{ font-size:38px; }
  .subtitle{ font-size:18px; margin-bottom:0; }

  .tag,
  .testimonial,
  .experience{
    display:none;
  }

  .hero-image-area{
    position:relative;
    width:320px;
    height:310px;
    margin:0 auto;
  }

  .orange-bg{
    width:280px;
    height:150px;
    border-radius:150px 150px 0 0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
  }

  .hero-img{
    width:280px;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
  }

  .cta-pill{
    position:absolute;
    bottom:16px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
    white-space:nowrap;
    padding:4px;
  }

  .cta-btn{
    padding:6px 16px;
    font-size:12px;
  }

  .skill-marquee{
    margin-top:0;
  }

  .about-section{ padding:50px 6%; }

  .about-container{
    flex-direction:column;
    gap:24px;
    margin-top:0;
  }

  .about-text{ flex:none; width:100%; }
  .about-text h2{ font-size:28px; }
  .about-text p{ font-size:15px; }
  .about-image{ flex:none; width:100%; }
  .about-image img{ width:100%; max-width:280px; }

  .projects{ padding:50px 6%; margin-top:0; }
  .section-title{ font-size:28px; }

  .skills{ padding:50px 16px; }
  .skills-title{ font-size:36px; }
  .skills-header::before,
  .skills-header::after{ display:none; }
  .skills-grid{ grid-template-columns:1fr; gap:20px; }
  .tools-card, .cert-card{ padding:20px; }
  .tools-card h3, .cert-card h3{ font-size:26px; }
  .tools-icons{ grid-template-columns:repeat(4,1fr); gap:10px; }
  .tool{ width:100%; height:60px; }

  .thankyou{ padding:50px 6%; }
  .thankyou-container{ flex-direction:column; gap:24px; }
  .thank-title{ font-size:44px; margin-top:0; }
  .avatar img{ width:140px; }

  .footer{ justify-content:center; padding:16px 20px; text-align:center; }

}

@media (max-width: 480px) {
  .title{ font-size:32px; }
  .subtitle{ font-size:16px; }
  .hero-image-area{ height:310px; }
  .hero-img{ width:280px; }
  .orange-bg{ height:150px; border-radius:150px 150px 0 0; }
  .tools-icons{ grid-template-columns:repeat(4,1fr); }
  .thank-title{ font-size:36px; }
}
