/* ================= HEADER ================= */

@import url("https://fonts.googleapis.com/css2?family=Dorsa&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poiret+One&family=Poller+One&family=Raleway:ital,wght@0,100..900;1,100..900&family=Staatliches&family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dorsa&family=Mrs+Sheppards&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poiret+One&family=Poller+One&family=Raleway:ital,wght@0,100..900;1,100..900&family=Staatliches&family=Story+Script&family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dorsa&family=Poiret+One&family=Poller+One&family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dorsa&family=Italianno&family=Mrs+Sheppards&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poiret+One&family=Poller+One&family=Raleway:ital,wght@0,100..900;1,100..900&family=Staatliches&family=Story+Script&family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quintessential&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Montserrat:wght@400;500;700&display=swap");

/* ================= GLOBAL ================= */
html {
  scroll-behavior: smooth;
}
body {
  background: #131313;
  color: white;
  position: relative;
  overflow-x: hidden;
  background-image: radial-gradient(
      circle 400px at top left,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle 400px at bottom right,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-repeat: no-repeat;
}

/* ================= FLOATING TRIANGLES ================= */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid rgba(255, 255, 255, 0.072);
  filter: blur(6px);
  z-index: -1;
  animation: float 12s ease-in-out infinite alternate;
}

body::after {
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 180px solid rgba(255, 255, 255, 0.061);
  top: 40%;
  left: 70%;
  animation-delay: 5s;
}

/* Extra triangle */
.extra-triangle {
  content: "";
  position: fixed;
  top: 70%;
  left: 20%;
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid rgba(255, 255, 255, 0.12);
  filter: blur(4px);
  animation: float 14s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(60px) translateX(-100px);
  }
}

.header {
  padding: 0 1.1rem;
  height: 85px;
  background: #131313;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 2rem 1.6rem 0;
  border-bottom: 0.1px solid #fff;
  filter: blur(1px);
  font-style: italic;
}
.logo-icon{
    width: 35px;
    height: 30px;
}
.hamburger {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.button{
  box-shadow: 0 0 0 0.4px #fff;
    border-radius: 30px;
   
    padding: 0.6rem 1.6rem;

}
.button1{
  margin-top: 2rem;
}
/* ================= SIDE DRAWER ================= */
.side-drawer {
  position: fixed;
  top: 0;
  left: -12rem; /* hidden by default */
  width: 10rem;
  height: 100%;
  padding: 2rem 1rem;
  background: #131313;
  transition: left 0.3s ease;
  z-index: 1100;
}

.side-drawer.open {
  left: 0;
}

.side-drawer .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  background: none;
  
  border: none;
  color: white;
  cursor: pointer;
}

.side-drawer ul {
  list-style: none;

  padding: 2rem 0.6rem;
}

.side-drawer ul li {
  margin: 2.5rem 0;
}

.side-drawer ul li a {
  text-decoration: none;
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  color: white;
 
  transition: color 0.3s;
}

.side-drawer ul li a:hover {
  color: #f0c040; /* accent color */
}
/* ================= HEADER ================= */
.header {
  padding: 0 1rem;
  height: 70px;
  background: #131313;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0;
  border: none;
  filter: none;
  color: white;
}

.nav-links {
  
  display: none; /* hidden on mobile */
}

.nav-links ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-links ul li a {
  text-decoration: none;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  color: white;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color: #f0c040;
}

/* Desktop view */
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }

  .side-drawer {
    display: none;
  }

  .nav-links {
    display: block;
  }
}

/* ===== HERO ===== */
@media (min-width: 769px) {
  .hero {
    height: 80dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: -1rem;
  }

  .hero-row h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 7rem;
    font-style: italic;
    text-align: left;
    line-height: 1;
    margin-bottom: 0.8rem;
    background: transparent;
  }

  .hero-row .right {
    text-align: right;
    /* margin-top: -0.5rem; */
    flex: 1;
  }

  .custom-para {
    font-family: "Merriweather", serif;
    color: #a0a0a0;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    width: 60%;
    letter-spacing: 0.9px;
    line-height: 1.6;
  }

  .custom-para .highlight {
    color: #ffffff;
    font-style: italic;
  }

  /* ===== BUTTONS ===== */
  .btnRow {
    display: flex;
    gap: 0.6rem;
  }

  .btn {
    font-family: "Montserrat", sans-serif;
    background: #fff;
    border: none;
    padding: 0.7rem 4.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
    border-radius: 30px;
    cursor: pointer;
    color: black;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }
 a{
    text-decoration: none;
    text-transform: none;
    color: #000;
    text-emphasis: none;
    
}
  .btn1 {
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: background 0.3s ease;
  }

  .btn1 svg {
    color: #131313;
    background-color: #ffffffaa;
  }

  /* ===== SOCIAL ===== */
  .social {
    display: flex;

    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
    /* width: 25%; */
    justify-self: flex-end;
    text-align: right;
    margin-top: 1rem;
    padding: 1.4rem;
    font-size: 1rem;
  }

  .social span {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 500;
  }

  .social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #ffffffc6;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    box-shadow: 0 0 0 0.6px #ffffffae;
    transition: all 0.3s ease;
  }
  .hide{
    display: none;
  }
  .social-btn svg {
    font-size: 1.1rem;
    transition: inherit;
  }
 
  .social-btn:hover {
    background: #fff;
    color: #131313;
    transform: scale(1.05);
  }

  .social-btn:hover svg {
    color: #131313;
  }

  /* ===== articalS ===== */
  .articals {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .artical-card {
    position: relative;
    width: 95%;
    height: 400px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  .artical-card .overlay {
    position: absolute;
    bottom: 0;
    height: 50%;
    background: rgba(0, 0, 0, 0.53);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    color: #fff;
  }

  .artical-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .artical-card p {
    font-family: "Merriweather", serif;
    font-size: 0.85rem;
    margin: 1rem;
    color: #cfcfcf;
    letter-spacing: 0.9px;
    line-height: 1.4;
  }

  .small-btn {
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    border-radius: 30px;
    background: #fff;
    color: #131313;
    cursor: pointer;
    border: none;
  }

  .artical-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 50%;
    margin-top: 1.2rem;
  }

  .artical-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dots {
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    transition: background 0.3s ease;
  }

  .dot.active {
    background: #fff;
  }

  /* ===== ABOUT ===== */
  .about {
    display: flex;
    justify-self: center;
    height: 100dvh;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 70%;
    text-align: left;
  }

  .about img {
    /* position: relative; */
    width: 120em;
    height: 30em;
    border-radius: 30px;
    background-position: center;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
  }
  .about-para {
    width: 85%;
    height: 100%;
    text-align: left;
  }
  .title {
    /* width: 30%; */
    text-align: left;
    font-size: 1.6rem;
  }

  /* ===== SKILLS ===== */
  .skills {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 75%;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .skill-card {
    border-radius: 30px;
    padding: 1.5rem;
    font-weight: 100;
    font-size: 0.95rem;
  }

  .skill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .skill-box {
    margin: 2rem;
    display: flex;
  }

  .circle {
    padding: 0.9rem;
    margin-right: -1rem;
  }

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

  .skill-card p {
    line-height: 2;
    font-family: "Source Code Pro", monospace;
  }

  .skill-card h3 {
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
  }

  .white-card {
    background: #ffffffdd;
    color: #1313139d;
  }

  .black-card {
    background: #131313;
    box-shadow: 0 0 0 0.4px #fff;
    color: #ffffffab;
  }

  /* ===== WORK ===== */
  .work {
    height: 100dvh;
    display: flex;
    margin-top: 4rem;
    flex-direction: column;
  }

  .work-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    font-style: italic;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: right;
    line-height: 1;
    padding: 1.5rem;
    color: white;
  }

  .work-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.1rem;

    line-height: 1.3;
    font-family: "Source Code Pro", monospace;
    font-size: 0.95rem;
    color: #ffffffab;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .work-row.white-row {
    background: #ffffffbe;
    color: #131313;
  }

  .work-left {
    flex: 1;
  }

  .work-right {
    flex: 2;
    text-align: left;
  }

  .company {
    font-weight: 600;
    margin-bottom: 0.6rem;
  }

  .role {
    font-size: 0.9rem;
  }
.work-total{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}
  .work-total p {
    text-align: right;
    /* width: 98%; */

    font-size: 1rem;
    font-weight: 600;

    color: #ffffffc6;
  }

  .work-box {
    display: flex;
    flex-direction: column;
  }
  .button-contact{
  margin-left: 30px;
  color: #cfcfcf;
  }
  /* ===== PROJECTS ===== */
  .project {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-self: center;
    align-self: center;
    width: 75%;
    margin-top: 4rem;
    gap: 2.5rem;
    border-radius: 25px;
    box-sizing: border-box;
  }
  .card-border {
    box-shadow: 0 0 0 0.4px #fff;
    border-radius: 30px;
    padding: 1rem; /* Black border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .project-card {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 240px;
  }

  .project-title {
    font-size: 1.4rem;
    font-weight: 600;
    /* margin: 1rem 0 0.5rem 0;   top spacing */
    padding: 0;
  }

  .pro-title {
    display: none;
  }
  .project-title2 {
    text-align: left;
  }
  .skill-btn {
    margin: 0;
    padding: 0.5rem 1.2rem;
  }

  .project-para {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.7;
    width: 100%;
    /* margin-bottom: 1rem;       space before buttons */
  }

  .project-box {
    display: flex;
    gap: 0;
    align-self: flex-start;
    text-align: left;
    padding: 0;
    margin: 0;
    /* margin: 0.5rem 0; */
  }

  .project-title {
    font-size: 1.2rem;
    margin: 1rem 0.2rem;
    width: 100%;
    padding: 0;
  }

  .project-skill {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: 0;
    padding: 0;
    font-size: 0.8rem;
    margin: 0;
  }
  /* ===== articalS2 ===== */
  .articals2 {
    display: grid;
    gap: 1rem;

    grid-template-columns: repeat(3, 1fr);
    flex-direction: column;

    margin: 2rem auto;
    /* padding: 1.5rem; */
    width: 80%;
  }
  .artical-title {
    margin-top: 5rem;
  }
  .artical2-card {
    gap: 1rem;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 0;
    box-shadow: 0 0 0 0.1px #fff;
  }

  .artical2-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
  }

  .artical2-card p {
    font-family: "Merriweather", serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #cfcfcf;
    line-height: 1.5;
  }

  .artical2-card .btnRow {
    display: flex;
    justify-content: flex-start;
  }

  /* ===== CONTACT ===== */

  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 8rem;
    border-radius: 25px;
  }
  .contact-title {
    display: none;
    margin-top: 4rem;
  }
  .contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0.8rem;
    width: 60%;

    font-size: 2.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #fff;
  }

  .contact-row h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .contact-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
  .achievements {
    margin-top: 15px;
    display: flex;
    width: 60%;
    flex-direction: column;
    padding-left: 20px;
    list-style-type: "✔ "; /* adds checkmark before each */
  }
  
  .artical2-card .achievements li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  



  
  .contact-btn .social-btn {
    padding: 0.8rem;
    flex: 2;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffffc6;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
  }

  .contact-btn .social-btn:hover {
    background: #fff;
    color: #131313;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  }

  .contact ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
  }

  .contact ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-family: "Merriweather", serif;
    font-size: 0.95rem;
    transition: color 0.3s;
  }

  .contact ul li a:hover {
    color: #f0c040;
  }
  .contact-detail {
    margin: 0;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.1rem;
    box-shadow: 0 0 0 0.1px #fff;
    text-align: right;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  /* ===== HERO ===== */
  .hero {
    height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    color: white;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
  }

  .hero-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 85%;
    margin-bottom: 0.5rem;
  }

  .hero-row h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    font-style: italic;
    text-align: left;
    line-height: 1;
    margin-bottom: 0.8rem;
    background: transparent;
  }

  .hero-row .right {
    text-align: right;
    margin-top: -0.5rem;
    flex: 1;
  }

  .custom-para {
    font-family: "Merriweather", serif;
    color: #a0a0a0;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1rem;
    width: 95%;
    letter-spacing: 0.9px;
    line-height: 1.6;
  }

  .custom-para .highlight {
    color: #ffffff;
    font-style: italic;
  }

  /* ===== BUTTONS ===== */
  .btnRow {
    display: flex;
    gap: 0.6rem;
  }

  .btn {
    font-family: "Montserrat", sans-serif;
    background: #fff;
    border: none;
    padding: 0.7rem 4.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
    border-radius: 30px;
    cursor: pointer;
    color: black;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }
a{
  text-decoration: none;
  color: #000;
}
  .btn1 {
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: background 0.3s ease;
  }

  .btn1 svg {
    color: #131313;
    background-color: #ffffffaa;
  }

  /* ===== SOCIAL ===== */
  .social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem;
    width: 85%;
    margin-top: 1rem;
    padding: 1.4rem;
    font-size: 1rem;
  }

  .social span {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 500;
  }

  .social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #ffffffc6;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    box-shadow: 0 0 0 0.6px #ffffffae;
    transition: all 0.3s ease;
  }

  .social-btn svg {
    font-size: 1.1rem;
    transition: inherit;
  }

  .social-btn:hover {
    background: #fff;
    color: #131313;
    transform: scale(1.05);
  }

  .social-btn:hover svg {
    color: #131313;
  }

  /* ===== articalS ===== */
  .articals {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .artical-card {
    position: relative;
    width: 95%;
    height: 400px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  .artical-card .overlay {
    position: absolute;
    bottom: 0;
    height: 50%;
    background: rgba(0, 0, 0, 0.53);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    color: #fff;
  }

  .artical-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .artical-card p {
    font-family: "Merriweather", serif;
    font-size: 0.85rem;
    margin: 1rem;
    color: #cfcfcf;
    letter-spacing: 0.9px;
    line-height: 1.4;
  }

  .small-btn {
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    border-radius: 30px;
    background: #fff;
    color: #131313;
    cursor: pointer;
    border: none;
  }

  .artical-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 50%;
    margin-top: 1.2rem;
  }

  .artical-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dots {
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    transition: background 0.3s ease;
  }

  .dot.active {
    background: #fff;
  }

  /* ===== ABOUT ===== */
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 1.5rem;
    text-align: left;
  }

  .about img {
    position: relative;
    width: 95%;
    height: 400px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
  }

  .title {
    width: 90%;
    text-align: left;
    font-size: 1.6rem;
  }

  /* ===== SKILLS ===== */
  .skills {
    display: grid;
    gap: 1.5rem;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .skill-card {
    border-radius: 30px;
    padding: 1.5rem;
    font-weight: 100;
    font-size: 0.95rem;
  }

  .skill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .skill-box {
    margin: 2rem;
    display: flex;
  }

  .circle {
    padding: 0.6rem;
    margin-right: -1rem;
  }

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

  .skill-card p {
    line-height: 2;
    font-family: "Source Code Pro", monospace;
  }

  .skill-card h3 {
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
  }

  .white-card {
    background: #ffffffdd;
    color: #1313139d;
  }

  .black-card {
    background: #131313;
    box-shadow: 0 0 0 0.4px #fff;
    color: #ffffffab;
  }

  /* ===== WORK ===== */
  .work {
    display: flex;
    flex-direction: column;
  }

  .work-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    font-style: italic;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: right;
    line-height: 1;
    padding: 1.5rem;
    color: white;
  }

  .work-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    line-height: 1.3;
    font-family: "Source Code Pro", monospace;
    font-size: 0.95rem;
    color: #ffffffab;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .work-row.white-row {
    background: #ffffffbe;
    color: #131313;
  }

  .work-left {
    flex: 2;
  }

  .work-right {
    flex: 2;
    text-align: left;
  }

  .company {
    font-weight: 600;
    margin-bottom: 0.6rem;
  }

  .role {
    font-size: 0.9rem;
  }

  .work-total p {
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #ffffffc6;
  }

  .work-box {
    display: flex;
    flex-direction: column;
  }

  /* ===== PROJECTS ===== */
  /* ===== PROJECTS ===== */
  .project {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align left */
    justify-content: center;
    gap: 2rem; /* consistent spacing */
    width: 100%;
    padding: 2rem 1.8rem; /* section padding */
    border-radius: 25px;

    box-sizing: border-box;
  }
  .project-title2 {
    display: none;
  }

  .project-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 240px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0; /* top spacing */
    padding: 0;
  }

  .project-skill {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    align-items: flex-start;
    margin: 0;
  }

  .skill-btn {
    padding: 0.5rem 1.4rem;
    margin: 0;
    font-size: 0.9rem;
  }

  .project-para {
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
    line-height: 1.6;
    margin-bottom: 1rem; /* space before buttons */
  }

  .project-box {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 0.5rem 0;
  }

  .project-title {
    font-size: 1.2rem;
    margin: 1rem 0.2rem;
    padding: 0;
  }

  .project-skill {
    display: flex;
    flex-wrap: wrap;
    width: 93%;
    margin: 0 1rem;
    padding: 0;
    /* gap: 0.4rem; */
  }
  /* ===== articalS2 ===== */
  .articals2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto;
    /* padding: 1.5rem; */
    width: 100%;
  }
  .artical-title {
    margin: 0;
  }
  .artical2-card {
    gap: 1rem;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 1.5rem;
    box-shadow: 0 0 0 0.1px #fff;
  }

  .artical2-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
  }

  .artical2-card p {
    font-family: "Merriweather", serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #cfcfcf;
    line-height: 1.5;
  }

  .artical2-card .btnRow {
    display: flex;
    justify-content: flex-start;
  }

  /* ===== CONTACT ===== */

  .contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;

    padding: 3rem 1.5rem;
    margin-top: 3rem;
    border-radius: 25px;
  }

  .contact-row {
    display: flex;
    gap: 0.8rem;
    width: 90%;
    font-size: 2.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #fff;
  }
  .achievements {
    margin-top: 15px;
    display: flex;
   width: 100%;
    flex-direction: column;
    padding-left: 20px;
    list-style-type: "✔ "; /* adds checkmark before each */
  }
  
  .artical2-card .achievements li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-row h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .contact-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .contact-btn .social-btn {
    padding: 0.8rem;
    flex: 2;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffffc6;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
  }

  .contact-btn .social-btn:hover {
    background: #fff;
    color: #131313;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  }

  .contact ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
  }

  .contact ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-family: "Merriweather", serif;
    font-size: 0.95rem;
    transition: color 0.3s;
  }

  .contact ul li a:hover {
    color: #f0c040;
  }
  .button-contact{
    margin-right: 15px;
    color: #cfcfcf;
    margin-bottom: 30px;
    }
  .contact-detail {
    margin: 0;
    width: 100%;
   display: flex;
   flex-direction: column-reverse;   
    font-size: 0.9rem;
    padding: 0.1rem;
    border-top: 0.1px solid #fff;
    text-align: right;
  }
}
