*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
        padding-top:85px;
    font-family:Poppins,sans-serif;
  background: #F2F3F4; 
    color:#111;
} 

a,
button,
input,
body,
textarea {
    cursor:none;
}

a,
button,
input,
body,
textarea:active {
    cursor: none;
} 

@media (hover: none) and (pointer: coarse) {

    .custom-cursor{
        display: none;
    }

    a,
    button,
    input,
    textarea,
    body{
        cursor: auto;
    }

}

.container{

    width:1180px;
    max-width:90%;
    margin:auto;
}

/* NAVBAR */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:85px;

    background:rgba(242,243,244,.92);
    backdrop-filter:blur(12px);

    z-index:1000;

    transition:.3s;

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
} 

.logo{

    font-size:28px;
}

.logo span{

    font-weight:300;
}

nav{

    display:flex;
    gap:40px;
} 

nav a{

    text-decoration:none;
    color: #111;
    font-weight:600;
    transition:.3s;
}

nav a.active{

    color:#2d82f5;
}

nav a:hover{

    color:#2d82f5;
} 

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    color:#111;
    cursor: none;
}

/* Mobile */

@media(max-width:900px){

.menu-toggle{
    display:block;
}

nav{

    position:absolute;

    top:85px;
    left:0;

    width:100%;

    background:#F2F3F4;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:30px 0;

    transform:translateY(-150%);
    opacity:0;

    transition:.35s;

}

nav.active{

    transform:translateY(0);
    opacity:1;

}

}



/* HERO */

.hero{

    min-height:calc(100vh - 85px);
    display:flex;
    align-items:center;
}

.hero-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    align-items:center;

    gap:70px;
}

/* LEFT */

.hero-image{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{

    width:100%;
    max-width:280px;

    position:relative;

    z-index:3;
}

.profile-photo{
    width:480px;
    position:relative;
    z-index:2;
}

.orange-bar{

    position:absolute;

    width:210px;
    height:42px;

    background: #1ACB8B;


    top:80px;
    left:20px;
}

.blue-bar{

    position:absolute;

    width:185px;
    height:38px;

    background: #1ACB8B;

    top:145px;
    left:80px;
}



/* RIGHT */

.hero-content small{

    font-size:16px;
    color:#666;
}

.hero-content small a{

    color:#444;
}

.hero-content h1{

    margin:15px 0 18px;

    font-size:clamp(38px,8vw,82px);

    font-weight:900;

    line-height:.95;
}

.hero-content span{

    display:block;
    color: #1ACB8B;
}

.hero-content p{
    max-width:520px;

    color:#444;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;
}

.buttons{

    display:flex;
    gap:18px;
}

.btn{

    text-decoration:none;
    padding:15px 28px;

    border-radius:4px;

    font-weight:600;

    transition:.3s;
}

.orange{

    background: #0AA6F8;
    color:white;
}

.orange:hover{

    background: #405ee8;

}

.outline{

    border:2px solid #111;
    color:#111;
}

.outline:hover{

    background:#111;
    color:white;
}

/* MOBILE */

@media(max-width:900px){

       .hero{
        min-height:auto;
        padding:60px 0 80px;
    }


.hero-grid{

    grid-template-columns:1fr;
    text-align:center;
}

.hero-image{

    order:2;
}

.hero-content{

    order:1;
}

.hero-content h1{

    font-size:60px;
  
}

.hero-content p{

    margin:auto;
    margin-top:25px;
    margin-bottom:30px;
}

.buttons{

    justify-content:center;
}

.hero-image img{

    width:340px;
}

.orange-bar{

    width:160px;
    left:40px;
}

.blue-bar{

    width:150px;
}

}

/* ABOUT */

.about{
 background: #F2F3F4; 
    padding:200px 0 100px;
}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}

/* IMAGES */

.images{

    position:relative;
    height:650px;
}

.photo{

    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.photo-large{

    width:410px;
    height:380px;

    position:absolute;
    top:0;
    left:140px;
}

.photo-small{

    width:310px;
    height:290px;

    position:absolute;
    left:0;
    bottom:20px;
}

/* Decorations */

.outline-box{

    width:58px;
    height:58px;

    border:5px solid #094730;
    border-radius:8px;

    position:absolute;
    left:35px;
    top:210px;
}

.blue-box{

    width:42px;
    height:42px;
    background: #4d73ff;

    border-radius:5px;

    position:absolute;
    left:360px;
    bottom:140px;
}

.scribble{

    position:absolute;
    left:-70px;
    bottom:-30px;

    font-size:55px;
    color:#1ACB8B;

    transform:rotate(-40deg);
}

/* CONTENT */

.subtitle{

    color: #1ACB8B;
    font-weight:700;
    font-size:30px;
}

.content h1{
    font-size:40px;
    line-height:1.1;
    margin:10px 0 35px;
    font-weight:800; 
    color: #00000;
    
}

.content p{

    color: #00000;
    line-height:1.8;
    font-size:18px;
    margin-bottom:30px;
}

/* RESPONSIVE */

@media(max-width:1000px){

.about-grid{

    grid-template-columns:1fr;
}

.images{

    height:560px;
}

.photo-large{

    width:340px;
    height:320px;
    left:50%;
    transform:translateX(-50%);
}

.photo-small{

    width:260px;
    height:240px;
    left:30px;
}

.content{

    text-align:center;
}

.content h1{

    font-size:48px;
}

}

.download-btn{

    display:inline-block;

    margin-top:25px;

    background: #0AA6F8;

    color:white;

    padding:16px 40px;

    border-radius:8px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}


.download-btn:hover{

    background: #405ee8;

    transform:translateY(-3px);

}

.portfolio-title {

    text-align:center;

    margin-bottom:50px;
    min-height:calc(100vh - 85px);

}

#projects {
    padding: 180px 0;
}

.portfolio-title span {

    font-size:22px;

    font-weight:600;

    color:#4d73ff;

    text-transform:uppercase;

    letter-spacing:2px;

}


.portfolio-title h2 {

    font-size:48px;

    font-weight:800;

    margin-top:10px;

    color:#111;

}

.projects-grid {

    display:flex;
    gap:25px;

    overflow-x:auto;
    scroll-behavior:smooth;

    width:100%;

    padding:20px 0;
}


.projects-grid::-webkit-scrollbar{
    display:none; /* Chrome/Safari */
}

.project-card {

    flex:0 0 350px;
    height:400px;

    overflow:hidden;
    
    border-radius:10px;

    position:relative;
    overflow: hidden;

}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
    transform:scale(1.08);

}

.portfolio-text-card {

    flex: 0 0 350px;
    height: 400px;

    background: #094730;
    border-radius: 10px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px;
    cursor: none;
    color:white;
}


.portfolio-text-card span {

    color: #1ACB8B;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}


.portfolio-text-card h2 {

    font-size:42px;
    line-height:1.1;
    margin-bottom:20px;
}


.portfolio-text-card p {

    color:#ccc;
    line-height:1.6;
} 

.portfolio-text-card-2{

    flex:0 0 350px;
    height:400px;
    cursor:none;
    background:linear-gradient(135deg,#094730,#094730);

    border-radius:10px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding:40px;

    color:#fff;

    transition:.35s ease;

}

.portfolio-text-card-2:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(64,94,232,.25);

}

.portfolio-text-card-2 span{

    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    color: #1ACB8B;

    margin-bottom:15px;

}

.portfolio-text-card-2 h2{

    font-size:42px;
    line-height:1.1;
    font-weight:800;

    margin-bottom:20px;

}

.portfolio-text-card-2 p{

    color:rgba(255,255,255,.85);

    line-height:1.7;

    margin-bottom:30px;

}

.figma-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff;

    color:#0AA6F8;

    text-decoration:none;

    padding:14px 24px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.figma-btn:hover{

    background:#1ACB8B;

    color:#fff;

    transform:translateX(6px);

}



#projects p {
text-align: center;
}

.figma-link {
    text-align: center;
    margin: 120px auto;
    font-size: 18px;
}

.a {
    color: #2d82f5;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.figma-link a:hover {
    color: #f4470b;
    text-decoration: underline;
}


.projects-grid{
    cursor:grab;
}

.projects-grid:active{
    cursor:grabbing;
}

/* Dark overlay background */
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.1)
    );

    opacity: 0;
    transition: .4s ease;
}


/* Text content */
.overlay {

    position:absolute;

    bottom:30px;
    left:30px;

    z-index:2;

    color:white;

    display:flex;
    flex-direction:column;

    opacity:0;
    transform:translateY(20px);

    transition:.4s ease;
}


/* Show on hover */
.project-card:hover::after {

    opacity:1;

}


.project-card:hover .overlay {

    opacity:1;
    transform:translateY(0);

}



.carousel-container{

    position:relative;

    max-width:1200px;

    margin:auto;

    display:flex;

    padding:0 50px;


    align-items:center;

}


.carousel-btn{

    position:absolute;

    z-index:5;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background: #1ACB8B;

    color:black;

    font-size:25px;

    cursor:none;

}


.prev{
    left:-20px;
}


.next{
    right:-20px;
}


.carousel-btn:hover{

    transform:scale(1.1);

    box-shadow:0 0 20px #1ACB8B;

} 

@media (max-width: 900px) {

    .prev,
    .next{
        display: none;
    }

}

#skills{
    padding:140px 0;
    margin-bottom: 80px;
    background: #F2F3F4;   /* warm off-white like your screenshot */
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title span{
    color: #1ACB8B;
    font-size:18px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    margin-top:15px;
    font-size:58px;
    font-weight:800;
    line-height:1.1;
}

.skills-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.skill-card{
    text-align:center;
}

.skill-card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:25px;
}

.skill-card h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.skill-card p{
    color:#555;
    font-size:14px;
    line-height:1.8;
    max-width:270px;
    margin:0 auto;
}

@media (max-width:900px){

.skills-grid{
    grid-template-columns:repeat(2,1fr);
    gap:50px 30px;
}

.section-title h2{
    font-size:40px;
}

}

@media (max-width:600px){

.skills-grid{
    grid-template-columns:1fr;
}

}

/* LAYOUT */

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/* MAP */

.map-box{

    width:100%;
    height:340px;
    overflow:hidden;
    border-radius:6px;

}


.map-box iframe{

    width:100%;
    height:100%;
    border:0;

}



/* CONTACT SECTION */

.contact{
    padding:140px 0;
    background: #F2F3F4;
}


.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    align-items:center;

}


/* LEFT */

.contact-info h2{

    font-size:55px;
    font-weight:700;
    color: #1ACB8B;
    margin-bottom:15px;

}


.contact-info h3{

    font-size:18px;
    color: #17110d;
    margin-bottom:35px;

}


.contact-info p{

    max-width:350px;
    color: #666;
    line-height:1.8;
    margin-bottom:60px;

}


.contact-email{

    display:flex;
    align-items:center;
    gap:12px;

    color:#555;
    text-decoration:none;

    margin-bottom:30px;

}


.social-links{

    display:flex;
    gap:15px;

}


.social-links a{

    width:30px;
    height:30px;

    border-radius:50%;

    background:#111;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:14px;

}



/* FORM */

.contact-form label{

    display:block;

    font-size:13px;
    color:#555;

    margin-bottom:5px;

}


.contact-form input,
.contact-form textarea{

    width:100%;

    border:1px solid #777;

    background:transparent;

    padding:12px;

    font-family:Poppins,sans-serif;

    margin-bottom:18px;

}


.contact-form input{

    height:45px;

}


.contact-form textarea{

    height:150px;

    resize:none;

}


.contact-form button{

    float:right;

  

    background: #0AA6F8;

    color: white;

    padding:16px 40px;
    border:none;

    border-radius:8px;

    font-weight:700;


    transition:.3s;

}


.contact-form button:hover{

    background: #056fa9;

} 

@media (max-width: 900px) {

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:60px;
    }

    .contact-info{
        text-align:center;
    }

    .contact-info p{
        max-width:100%;
        margin:0 auto 40px;
    }

    .contact-email,
    .social-links{
        justify-content:center;
    }

    .contact-form button{
        float:none;
        width:100%;
    }

}


@media(max-width:700px){

.form-row{
    grid-template-columns:1fr;
}

}

.footer {
    background: #094730;
    padding:30px 0;
    color:white;
}


.footer-container {

    width:90%;
    max-width:1180px;
    margin:auto;

    display:flex;
    justify-content: center;
    align-items:center;

}


.footer p {
    margin:0;
    font-size:14px;
}


.linkedin-footer {

    width:40px;
    height:40px;

    border-radius:50%;


    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;

    text-decoration:none;

    transition:.3s;

}
 

.footer-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-email{
    display:flex;
    align-items:center;
    gap:8px;
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-email:hover{
    color:#1ACB8B;
}



.linkedin-footer:hover {

    background:#004182;
    transform:translateY(-3px);

}

.image-blob{
    position:relative;
      width:100%;
    max-width:280px;
    height:400px;

    animation:strokeMorph 8s ease-in-out infinite;

  border:12px solid #d1d5db;
    overflow:hidden;
}


.image-blob img{

  width:100%;
    height:100%;

    object-fit:cover;

    display:block;
} 

.blob-stroke{

    position:absolute;

    width:410px;
    height:410px;

    border:10px solid #2d82f5;

    z-index:1;


    animation:strokeMorph 8s ease-in-out infinite;

}

@keyframes strokeMorph{

 
    0%{
        border-radius:
        42% 58% 70% 30% /
        45% 45% 55% 55%;
    }

    25%{
        border-radius:
        60% 40% 30% 70% /
        50% 60% 40% 50%;
    }

    50%{
        border-radius:
        30% 70% 60% 40% /
        60% 40% 60% 40%;
    }

    75%{
        border-radius:
        70% 30% 45% 55% /
        40% 60% 50% 50%;
    }

    100%{
        border-radius:
        42% 58% 70% 30% /
        45% 45% 55% 55%;
    }
} 



.custom-cursor{

 position:fixed;

    width:35px;
    height:35px;

    background-image:url("./images/cursor.png");

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    pointer-events:none;

    z-index:999999;

    transform:translate(-50%, -50%);

} 

/* ==========================
   HERO FLOATING SVG ICONS
========================== */

/* ART FLOATING ICONS */

.floating-icon{

    position:absolute;

    width:65px;
    height:65px;

    background:white;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);

    z-index:6;

    animation:artFloat 5s ease-in-out infinite;

}


.floating-icon svg{

    width:38px;
    height:38px;

    fill:none;

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

}


/* Palette */

.icon-palette{

    top:50px;
    left:70px;

}


.icon-palette svg{

    stroke:#1ACB8B;

}



/* Pencil */

.icon-pencil{

    bottom:80px;
    left:35px;

    animation-delay:1s;

}

.icon-pencil svg{
    stroke:#f4470b;
    fill:none;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* Brush */

.icon-brush{

    top:120px;
    right:35px;

    animation-delay:2s;

}


.icon-brush svg{

    stroke:#2d82f5;

}



/* Sparkle */

.icon-sparkle{

    bottom:70px;
    right:70px;

    animation-delay:3s;

}


.icon-sparkle svg{

    fill:#1ACB8B;
    stroke:none;

}



@keyframes artFloat{

    0%,100%{
        transform:translateY(0) rotate(0deg);
    }

    50%{
        transform:translateY(-15px) rotate(5deg);
    }

}



/* Floating animation */

@keyframes float{

    0%{
        transform:translateY(0);
    }


    50%{
        transform:translateY(-15px);
    }


    100%{
        transform:translateY(0);
    }

}  


.figma-section {
  text-align: center;
  margin-top: 80px ;
  cursor: none;
} 

.figma-section h2 {
  display: inline-block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 5px solid #1acb8b;
} 

.figma-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

.figma-embed {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.figma-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.figma-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;

  background: #1acb8b;
  color: white;
  text-decoration: none;

  font-weight: 600;
  border-radius: 50px;

  transition: .3s ease;
}

.figma-btn:hover {
  background: #159b69;
  transform: translateY(-2px);
}


