body,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 ul,
 li,
 a {
 padding: 0;
 margin: 0;
 }
 
 html {
 scroll-behavior: smooth;
 }
 
:root {
    --header-height: 120px;
}


@media (max-width: 768px) {
    :root {
        --header-height: 160px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 180px;
    }
}
 
section {
    scroll-margin-top: var(--header-height);
}
 
 #contact{
 min-height: calc(100vh - var(--header-height));
 scroll-margin-top: 40px; 
 }
 
 * {
 box-sizing: border-box;
 }
 
 
body {
  font-family: "Montserrat", sans-serif;
  background-color: #111318;
  color: #ffffff;
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #00e5ff, #088c95);
  z-index: 9999;
  transition: width 0.1s ease;
}
 
 :root{
 --primary: #1a1a1a;
 --primary-dark: #223240;
 --accent:#00e5ff;
 --accent2: #5e98b1;
 --muted-bg: #fff5f2;
 --muted-bg-2: #ffe9e6;
 --muted-dark: #4a2f4a;
 --placeholder: #d9bdb9;
 --text: #2b2b2b;
 --border: #e8dfe0;
 }
 
 .container{
 
 max-width: 1920px; 
 width: 100%;
 margin: 0 auto;
 padding-left:80px;
 padding-right:80px;
 }
 
 h1{
 text-shadow:0 0 15px rgba(0,229,255,0.4);
 }
 
 p{
 color:#c9d6df;
 }
 
 
 
 h1,h2,h3{
 color:#ffffff;
 }
 
 .row{
 display: flex;
 }
 
 .row ul {
 color: #088c95;
 font-size: 25px;
 font-weight: 500;
 }
 .div1 {
 margin-left: 80px;
 margin-top: 150px;
 }
 
 .div2 {
 margin-top: 150px;
 }

 .menu{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.menu span{
    width:25px;
    height:3px;
    background:#088c95;
    display:block;
}
 
 .connect-box {
 margin-top: auto;
 }
 
 p{
 line-height: 1.5;
 color: #b9d3e9;
 font-weight: 500;
 font-size: 18px;
 }
 
 .section-heading{
 margin-top: 250px;
 font-size: 80px;
 color: var(--accent2);
 position: relative;
 }
 .section-heading::after{
 content: "";
 background: var(--accent2);
 height: 2.1px;
 position: absolute;
 top: 56%;
 margin-left: 20px;
 width: 30%;
 display: inline-block;
 transform: translateY(-50%);
 }
 
 /*** Navigation CSS ***/
nav {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0;

    background: rgba(10, 20, 30, 0.7);
    backdrop-filter: blur(12px);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
 
nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to right,
        transparent,
        #00e5ff,
        transparent
    );
    opacity: 0.6;
}
 
.menu{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.menu span{
    width:25px;
    height:3px;
    background:#1bb7c3;
    display:block;
}

 nav .menu{
 display:none;
 }
 
 nav .logo{
 cursor:pointer;
 width: 100px;
 }
 
 .project-slider {
 position: relative;
 overflow: hidden;
 width: 100%;
 height: 100%;
 max-width: 900px;
 border-radius: 16px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.15);
 }
 
 .slide {
 display: none;
 text-align: center;
 }
 
 .slide.active {
 display: block;
 }
 
 .slide img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 border-radius: 16px;
 }
 
 .slide h3 {
 margin-top: 10px;
 color: #fff;
 font-size: 1.1rem;
 }

 
 /* logo wrapper and site name beside logo */

 .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo-wrap:hover {
    transform: translateY(-3px) scale(1.02);
}

 
 /* typing decoration: floating dot beside the typing area */
 .typing-container{
 position: relative;
 }

 .typing-dot{
 position: absolute;
 right: -34px;
 top: 2px;
 width: 14px;
 height: 14px;
 border-radius: 50%;
 background: linear-gradient(135deg,var(--accent),var(--accent2));
 box-shadow: 0 6px 18px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.25);
 opacity: 0.95;
 }

 
 
 /*** Intro ****/
 
 .intro .div1::before {
 content: "";
 position: absolute;
 width: 350px;
 height: 350px;
 background: radial-gradient(circle, rgba(8,140,149,0.25), transparent 70%);
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 z-index: -1;
 filter: blur(40px);
 }
 
 .typing-container {
 font-size: 3.2rem;
 font-weight: 600;
 color: #ffffff;
 }
 
 #typing {
font-size: 3rem;
 color: #088c95;
 }
 
 .cursor {
 color: #088c95;
 animation: blink 1s infinite;
 }
 
 @keyframes blink {
 0%, 50%, 100% { opacity: 1; }
 25%, 75% { opacity: 0; }
 }
 
 .intro .div2 {
 opacity: 0;
 transform: translateY(40px);
 animation: heroFade 1s ease forwards;
 animation-delay: 0.3s;
 }
 
 @keyframes heroFade {
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }
 
 .para-text {
 font-size: 1.1rem;
 line-height: 1.7;
 color: rgba(255,255,255,0.8);
 max-width: 500px;
 }
 
 .home {
 position: relative;
 /* padding-top: var(--header-height); */
 }
 
 .home::after {
 content: "";
 position: absolute;
 inset: 0;
 opacity: 0.05;
 pointer-events: none;
 }
 
 .intro .div1 img{
 display: block;
 width: 100%;
 max-width: 950px;
 height: auto;
 border-radius: 12px;
 object-fit: cover;
 box-shadow: 0 8px 24px rgba(13,32,60,0.12);
 }
 
 .intro{
 
 min-height: calc(100vh - var(--header-height));
 color:#fff;
 background-color: transparent;
 background-size:60%;
 background-position: 100%;
 background-repeat: no-repeat;
 gap:40px;
 }

 .intro{
 align-items: center;
 }

 .intro .div1 img{
 margin-top: 0;
 }

 .intro .div2 {
 margin-top: 0;
 display: flex;
 flex-direction: column;
 justify-content: center;
 height: 100%;
 }

 .intro .div2 span{
 font-size: 60px;
 color: var(--accent);
 font-weight: 800;
 }

 .cursor {
 display: inline-block;
 margin-left: 1px;
 animation: blink 0.7s steps(2) infinite;
 }
 
 @keyframes blink {
 0%, 50% {
 opacity: 1;
 }
 50.1%, 100% {
 opacity: 0;
 }
 }

 .intro .div2 p{
 font-size: 16px;
 width: auto;
 max-width: 520px;
 color: #fff;
 line-height: 1.5;
 }

 
 .intro .div2 p{
 transition: transform 0.22s ease, box-shadow 0.22s ease;
 will-change: transform, opacity;
 }

 .intro .div2 p:hover{
 transform: translateY(-6px);
 }
 

 .para-wrap{
 position: relative;
 display: inline-block;
 overflow: visible;
 margin-top: 20px;
 }

 .new-highlight {
 position: relative;
 display: inline-block;
 padding: 15px 20px;
 border-radius: 10px;
 overflow: hidden;
 opacity: 0;
 transform: translateY(20px);
 transition: all 0.8s ease-out;
 }
 
 .new-highlight.visible {
 opacity: 1;
 transform: translateY(0);
 }
 
 .para-text{
 position: relative;
 z-index: 1;
 color: #fff !important;
 font-size: 16px !important;
 }
 .para-text .para-letter{
 opacity: 0;
 transform: translateY(10px);
 white-space: pre-wrap;
 color: #fff;
 font-size: 20px !important;
 line-height: 1.5 !important;
 font-weight: 500 !important;
 }
 .para-text .para-letter.space{ width: 0.35rem; display: inline-block; transform: none; opacity: 1; }

 
 
 .about-content {
 margin-top: 120px;
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 align-items: flex-start;
 }
 
 .about-left {
 flex: 0 0 35%;
 display: flex;
 justify-content: center;
 align-items: center;
 }
 
 .about-img-placeholder img {
 width: 100%; 
 height: 100%; 
 object-fit: cover; 
 border-radius: 20px; 
 display: block; 
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); 
 transition: transform 0.3s ease; 
 }
 

 .about-img-placeholder img:hover {
 transform: scale(1.05); 
 }
 
 
 .about-right {
 flex: 0 0 60%;
 }
 
 .intro-text {
 margin-bottom: 20px;
 line-height: 1.6;
 font-size: 23px;
 }
 
 .skills {
 display: flex;
 flex-wrap: wrap;
 gap: 15px;
 }
 
 .skill-icon {
 width: 60px;
 height: 60px;
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.3s, background 0.3s;
 }
 
 .skill-icon img {
 margin-top: 70px;
 max-width: 60px;
 max-height: 60px;
 }
 
 .skill-icon:hover {
 transform: translateY(-5px);
 
 }
 
 
 
 /*** Projects ****/
 .projects{
 margin:80px 0;
 }
 
 .projects .project-div{
 width:100%;
 border:1px solid var(--border);
 border-radius: 5px;
 align-items: center;
 text-align: center;
 cursor:pointer;
 transition:0.3s;
 }

 .projects .project-div img{
 width: 100%;
 height: 400px;
 object-fit: cover;
 border-radius: 12px;
 transition: transform 0.3s ease;
 }
 
 .projects .row{
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 35px;
 margin-top: 40px;
}

.project-div{
 position: relative;
 overflow: hidden;
 border-radius: 20px;
 text-decoration: none;
 height: 500px;
 display: block;
 transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
.project-div img{
 width: 100%;
 height: 260px;
 object-fit: cover;
 border-radius: 20px;
 transition: transform 0.5s ease;
}



.project-info{
 padding: 15px;
}

.project-info h3{
 margin:0;
 font-size: 30px;
 color:#fff;
}

.project-info span{
 font-size:14px;
 color:#aaa;
}

 .project-div:hover {
 box-shadow: 0 20px 40px rgba(0,0,0,0.2);
 }
 
 
 .project-div:hover .overlay {
 opacity: 1;
 }
 
 .project-div:hover img {
 transform: scale(1.1);
 }
 
 .project {
 flex: 1 1 300px;
 display: flex;
 flex-direction: column;
 }
 
 .project-div.projectlink1 img,
 .projects .projectlink1 img{
 width: 100%;
 height: 250px;
 object-fit: cover;
 border-radius: 12px;
 transition: transform 0.3s ease;
 }
 
 #projects {
 scroll-margin-top: 120px;
 }
 
 .projects .project-div p{
 font-weight: 600;
 padding:5px 0 10px 0;
 }
 
 .project-div .projectlink1{
 background-color: black;
 }
 
 #contact .div1,
#contact .div2{
  margin-top: 0;
}
 
 
 .contact{
 padding-bottom: 60px;
 background-color: transparent;
 color:#fff;
 background-size:90%;
 background-position: 100% 100%;
 background-repeat: no-repeat;
 }

 .contact .row{
 align-items: stretch;
 }

 .contact .section-heading{
 color:var(--accent2);
 }

 .contact .div1{
 width:50%;
 }

 .contact .div2{
 width:50%;
 display:flex;
 align-items:center;
 justify-content:center;
 padding: 30px;
 }

 .connect-box{
 width: 100%;
 max-width: 500px;
 min-height: 330px;
 padding: 28px 22px;
 border-radius: 16px;
 background: linear-gradient(135deg, #2b526a 0%, #0d3046 60%);
 box-shadow: 0 18px 40px rgba(43,15,91,0.12);
 display:flex;
 align-items:center;
 justify-content:center;
 position: relative;
 overflow: hidden;
 transition: transform 220ms ease, box-shadow 220ms ease;
 border: 1px solid rgba(255,255,255,0.06);
 }

 .connect-box::before{
 content: "";
 position: absolute;
 right: -40px;
 top: -40px;
 width: 140px;
 height: 140px;
 background: rgba(255,255,255,0.06);
 filter: blur(20px);
 transform: rotate(22deg);
 }

 .connect-box::after{
 content: "";
 position: absolute;
 left: -30px;
 bottom: -30px;
 width: 160px;
 height: 160px;
 background: rgba(255,255,255,0.03);
 border-radius: 50%;
 }

 .connect-box:hover{
 transform: translateY(-6px);
 box-shadow: 0 28px 60px rgba(43,15,91,0.16);
 }

 .connect-box h2{
 margin:0;
 font-size: clamp(22px, 4.6vw, 44px);
 color:#fff;
 font-weight:900;
 text-transform:uppercase;
 text-align:center;
 letter-spacing: 0.6px;
 text-shadow: 0 6px 18px rgba(0,0,0,0.16);
 }

 .contact form{
 width:80%;
 }

 .contact form div{
 margin-bottom:15px;
 }

 .contact form label{
 display: block;
 margin-bottom:5px;
 }

 .contact form input{
 width: 100%;
 padding: 9px;
 border: none;
 color: #fff;
 border-radius: 3px;
 background: var(--muted-dark);
 transition:0.2s ease;
 border:2px solid var(--muted-dark);
 }

 .contact form input::placeholder{
 color: var(--placeholder);
 }

 .contact form input:focus{
 outline:0;
 border:2px solid var(--accent);
 }

 .contact form textarea{
 width: 100%;
 height:100px;
 padding: 9px;
 border: none;
 color: #fff;
 border-radius: 5px;
 background: var(--muted-dark);
 transition:0.2s ease;
 resize: none;
 border:2px solid var(--muted-dark);
 font-family: "Montserrat", sans-serif !important;
 }

 .contact form textarea::placeholder{
 color: var(--placeholder);
 }

 .contact form textarea:focus{
 outline:0;
 border:2px solid var(--accent2);
 }

 .contact form button{
 background-color: var(--accent2);
 padding: 10px 30px;
 border: none;
 font-family: "Montserrat", sans-serif !important;
 border-radius: 5px;
 font-weight: 500;
 cursor:pointer;
 transition:0.2s ease;
 }

 .contact form button:hover{
 background-color: var(--accent2-hover);
 }

 .contact .div2 a{
 margin-top:20px;
 display: block;
 cursor: pointer;
 }

 .contact .div2 img{
 width: 90px;
 margin: 0 auto;
 display: block;
 transition:0.2s;
 }

 .contact .div2 a:hover img{
 scale:0.9;
 }

 .contact p{
 color:#fff;
 display:inline-block;
 margin-right:30px;
 margin-top:50px;
 cursor: pointer;
 }

 .contact .copyright{
 border-right:1px solid #fff;
 padding-right: 30px;
 margin-right: 30px;
 margin-left:0;
 cursor: unset;
 }

 .projectmain .header{
 text-align: center;
 padding-top:60px;
 padding-bottom:60px;
 font-size: 20px;
 color: var(--primary);
 }


.contact form input,
.contact form textarea{
 font-size:16px;
}
 
 /* ===================== FOOTER ===================== */
 
 .site-footer {
 padding: 40px 0;
 border-top: none;
 position: relative;
 background-color: transparent;
 }
 
 .footer-container {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 
 .site-footer::before {
 content: "";
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 60%;
 height: 1px;
 background: linear-gradient(
 to right,
 transparent,
 rgba(8, 140, 149, 0.6),
 transparent
 );
 }
 
 .footer-center {
 font-size: 14px;
 color: #888;
 }


.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    background: #242828;
    color: white;
    font-size: 20px;

    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
}
 
 .header {
 height: 50px;
 }
 
 nav a,
 footer a {
 text-decoration: none;
 color: inherit;
 }
 
 nav a:visited,
 footer a:visited {
 color: inherit;
 }

 nav ul li a {
    position: relative;
    text-decoration: none;
    color: var(--accent2);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #00e5ff;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #00e5ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

nav ul li a:hover {
    color: #00e5ff;
}

 
 nav ul li a:visited {
 color: #088c95;
 }
 
 nav::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 60%;
 height: 1px;
 background: linear-gradient(
 to right,
 transparent,
 rgba(8, 140, 149, 0.6),
 transparent
 );
 }
 

 nav {
 position: sticky;
 top: 0;
 z-index: 100;
 display: flex;
 justify-content: space-between;
 align-items: center;
 background: rgba(26, 26, 26, 0.4); 
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
 transition: all 0.4s ease;
 }
 
 nav.scrolled {
 background: rgba(20, 20, 20, 0.75);
 backdrop-filter: blur(18px);
 -webkit-backdrop-filter: blur(18px);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .logo-wrap:hover {
 transform: translateY(-2px);
 transition: 0.3s ease;
 }
 
 .projectmain .description{
 color: var(--primary);
 margin:80px 0;
 gap:20px;
 }

 .projectmain .description h4{
 margin-bottom:10px;
 }

 .projectmain .description p{
 margin-bottom:25px;
 }

 .projectmain .description ul li{
 margin:0 0 15px 20px;
 }

 .projectmain .screenshot-preview{
 position:relative;
 }

 .projectmain .screenshot-preview .mainthumb{
 border-radius:4px;
 margin-bottom:5px;
 display: block;
 width: 480px;
 max-width: 100%;
 height: auto;
 margin-left: auto;
 margin-right: auto;
 }
 
 .projectmain .project-media {
 width: 100%;
 display: flex;
 justify-content: center;
 margin-bottom: 26px;
 }
 
 .projectmain .project-content {
 width: 100%;
 display: flex;
 justify-content: center;
 }
 
 .projectmain .project-card {
 max-width: 880px;
 background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.95));
 border-radius: 12px;
 padding: 26px 28px;
 box-shadow: 0 10px 30px rgba(20,20,30,0.08);
 border: 1px solid rgba(35,37,44,0.04);
 }
 
 .projectmain .project-card .card-title{
 margin:0 0 10px 0;
 font-size: 30px;
 color: var(--primary-dark);
 }
 
 .projectmain .project-card .card-desc{
 margin:0 0 18px 0;
 color: #222;
 line-height:1.75;
 font-size:20px;
 }
 
 .projectmain .project-card-rich .tools{
 display:flex;
 gap:18px;
 align-items:center;
 margin:14px 0;
 }

 .projectmain .project-card-rich .tool{
 display:flex;
 gap:10px;
 align-items:center;
 font-size:15px;
 color:#222;
 }

 .projectmain .project-card-rich .tool .tool-icon{ 
 width:24px; 
 height:24px; 
 flex:0 0 24px 
 }

 .projectmain .project-card-rich .deliverables{ 
 margin:18px 0 
 }

 .projectmain .project-card-rich .deliverables h5{ 
 margin:0 0 10px 0; 
 font-size:30px 
 }

 .projectmain .project-card-rich .deliverables ul{ 
 margin:0; 
 padding-left:20px 
 }

 .projectmain .project-card-rich .deliverables ul li{ 
 margin-bottom:8px; 
 font-size:20px; 
 color:#333 
 }
 

 .projectmain .project-extended{ 
 margin-top:16px; 
 padding-top:12px; 
 border-top:1px solid rgba(0,0,0,0.04) 
 }

 .projectmain .project-extended h5{ 
 margin:12px 0 8px 0; 
 font-size:18px; 
 color:var(--primary-dark) 
 }

 .projectmain .project-extended p{ 
 margin:0 0 12px 0; 
 font-size:16px; 
 color:#333; 
 line-height:1.75 
 }

 .projectmain .project-extended .flows{ 
 margin:8px 0 12px 0; 
 padding-left:20px 
 }

 .projectmain .project-extended .flows li{ 
 margin-bottom:8px; 
 font-size:16px 
 }

 .projectmain .project-extended .key-screens{ 
 display:flex; 
 gap:10px; 
 flex-wrap:wrap; 
 margin:8px 0 12px 0 
 }

 .projectmain .project-extended .ks{ 
 background: #f3f4f6; 
 padding:8px 12px; 
 border-radius:999px; 
 font-size:15px; 
 color:#333; 
 border:1px solid rgba(0,0,0,0.03) 
 }

 .projectmain .project-extended ul{ 
 padding-left:20px 
 }

 
 .projectmain .project-card .tech{
 background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.02));
 padding:6px 10px;
 border-radius:999px;
 font-size:13px;
 color:#444;
 border: 1px solid rgba(0,0,0,0.04);
 }
 
 .projectmain .project-actions{
 display:flex;
 gap:12px;
 }
 
 .projectmain .btn{
 display:inline-block;
 padding:9px 14px;
 border-radius:8px;
 text-decoration:none;
 color:var(--primary-dark);
 border:1px solid rgba(0,0,0,0.06);
 background: transparent;
 }
 
 .projectmain .btn-primary{
 background: linear-gradient(90deg,var(--primary),var(--primary-dark));
 color: #fff;
 border: none;
 }
 

 .projectmain .screenshot-preview .screenshots{
    gap:10px;
    justify-content:center;
 }
 .projectmain .screenshot-preview .screenshots img{
  width:90px;
  cursor:pointer;
  border-radius:4px;
  opacity:0.5;
  transition:0.3s;
 }
 .projectmain .screenshot-preview .screenshots img:hover{
  opacity:1;
 }
 .projectmain .screenshot-preview .screenshots .screenshot.selected{
  opacity:1;
 }
 
 

 .project1 .description h4,
 .project1 .description h5 {
 color: var(--primary-dark) !important;
 }

 .project1 .description p,
 .project1 .description li,
 .project1 .description span,
 .project1 .description .meta-item,
 .project1 .description .tool,
 .project1 .description .tool span,
 .project1 .description .card-desc,
 .project1 .description .project-desc,
 .project1 .description .project-tagline,
 .project1 .description .ks,
 .project1 .description .tech,
 .project1 .description .project-title,
 .project1 .description .deliverables ul li,
 .project1 .description .project-extended p {
 color: var(--primary) !important;
 }
 
 
 h1 {
 font-size: clamp(32px, 5vw, 64px);
}

h2 {
 font-size: clamp(28px, 4vw, 48px);
}

h3 {
 font-size: clamp(22px, 3vw, 32px);
}

.section-heading {
 font-size: clamp(28px, 6vw, 80px);
}

.container {
 padding-left: clamp(16px, 5vw, 80px);
 padding-right: clamp(16px, 5vw, 80px);
}

/* Large Tablets (≤ 1024px) */

@media (max-width: 1024px) {

.container {
    padding-left: 40px;
    padding-right: 40px;
}

.section-heading {
    font-size: 50px;
}

/* Intro layout */
.intro {
    flex-direction: column;
    text-align: center;
}

.div1 {
    margin-left: 0;
    margin-top: 80px;
}

.div2 {
    margin-top: 40px;
}

/* About */
.about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-left,
.about-right {
    flex: 100%;
}

/* Projects */
.projects .row {
    grid-template-columns: repeat(2, 1fr);
}

/* Contact */
.contact .row {
    flex-direction: column;
}

.contact .div1,
.contact .div2 {
    width: 100%;
}
}

@media (max-width: 1024px) {
  nav ul {
    gap: 30px; /* reduce spacing slightly */
  }

  nav ul li a {
    font-size: 18px;
  }
}

/* Tablets (≤ 768px) */

@media (max-width: 768px) {

/* NAVBAR (NO HAMBURGER) */
.container {
    padding-left: 20px;
    padding-right: 20px;
  }

nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px; /* 👈 THIS fixes spacing */
    flex-wrap: wrap;
  }

nav ul li {
    font-size: 16px;
}

nav ul li a {
    font-size: 16px;
  }

.logo-wrap {
    margin-bottom: 10px;
  }

.logo {
    width: 70px;
}

/* Typography */
.section-heading {
    font-size: 36px;
}

.intro .div2 span {
    font-size: 32px;
}

/* Projects */
.projects .row {
    grid-template-columns: 1fr;
}

/* Images */
.project-div img {
    height: 220px;
}

/* Contact */
.connect-box {
    min-height: auto;
    padding: 20px;
}

.contact form {
    width: 100%;
}

}

/* Mobile (≤ 480px) */

@media (max-width: 480px) {

/* NAV */
 .home {
 position: relative;
 padding-top: var(--header-height);
 }

  nav ul li a {
    font-size: 14px;
  }

  .section-heading {
    text-align: center;
  }
nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

nav ul {
    justify-content: center;
    gap: 18px;
}

nav ul li {
    font-size: 14px;
}

/* Logo */
.logo {
    width: 55px;
}

/* Headings */
.section-heading {
    font-size: 26px;
}

.intro .div2 span {
    font-size: 24px;
}

/* Text */
p {
    font-size: 14px;
}

/* Spacing fixes */
.div1,
.div2 {
    margin-top: 30px;
}

/* Project images */
.project-div img {
    height: 180px;
}
}

@media (max-width: 1024px) {
    nav ul {
        gap: 25px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .logo {
        width: 80px;
    }
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .logo {
        width: 65px;
    }
}

@media (max-width: 480px) {

    nav {
        gap: 8px;
    }

    nav ul {
        gap: 14px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .logo {
        width: 55px;
    }
}
