* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "SORA", sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 56px;
  min-width: 205px;
}

.btn.dark {
  background: #000;
  color: #fff;
}

.btn.dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn.light {
  background: #fff;
  color: #71717a;
  border: 2px solid #71717a;
}

.btn.light:hover {
  background: #71717a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(113, 113, 122, 0.2);
}

/* ===== 3. LAYOUT COMPONENTS ===== */
.section-padding {
  padding: 4rem 4.5rem;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* ===== 4. HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #707084;
  mix-blend-mode: difference;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #000;
}

/* Navigation styles */
.nav ul {
  display: flex;
  list-style: none;
  gap: 4rem;
  align-items: center;
}

.navbar {
  position: relative;
  color: #707084;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar:hover {
  color: #000;
}

.navbar:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #707084;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== 5. HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  padding-top: 40px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 4.5rem;
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.intro {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  /* margin-bottom: 1rem; */
  flex-wrap: wrap;
}

.hello,
.name,
.location {
  font-size: 48px;
  font-weight: 450;
  line-height: 1.2;
}

.name {
  font-weight: 800;
}

.titlehero {
  font-size: 48px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 990;
  color: transparent;
  -webkit-text-stroke: 1.5px #71717a;
  text-stroke: 1.5px #71717a;
  margin: 0.5rem 0 0.5rem 0;
}

.title {
  font-size: 48px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 990;
  color: transparent;
  -webkit-text-stroke: 1.5px #71717a;
  text-stroke: 1.5px #71717a;
  margin: 0.5rem 0 0rem 0;
}

.desc {
  font-size: 18px;
  color: #71717a;
  margin: 1.5rem 0;
  line-height: 1.8;
  max-width: 600px;
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0px 0px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ===== 6. SKILLS SECTION ===== */
.skills {
  padding: 2rem 0;
  overflow: hidden;
  background: #fff;
}

.skill-container {
  max-width: 100%;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 10s linear infinite;
  gap: 120px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

.frame-skill {
  display: flex;
  gap: 120px;
  padding: 40px 0;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.skill-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.skill-item p {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

/* ===== 7. EXPERIENCE SECTION ===== */
.experience {
  padding: 4rem 4.5rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #36373a, #29303c);
  color: white;
}

.Experience-container {
  width: 100%;
  margin: 0 auto;
}

.experience h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 3rem;
  color: white;
}

.experience h2 span {
  color: #71717a;
}

.exp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exp-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.exp-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.exp-card h3 {
  font-size: 24px;
  color: #d4d4d8;
  font-weight: 600;
}

.exp-card .date {
  font-size: 18px;
  color: #aaa;
  font-weight: 600;
}

.exp-card p {
  color: #71717a;
  line-height: 1.6;
}

/* ===== 8. ABOUT SECTION ===== */
.about {
  padding: 4rem 4.5rem;
  background: #f9f9f9;
}

.about .subtitle {
  text-align: center;
  color: #71717a;
  /* margin-bottom: 0.5rem; */
}

.about .Tittle {
  text-align: center;
  font-size: 48px;
  margin-bottom: 3rem;
  font-weight: 700;
}

.about .Tittle span {
  color: #71717a;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  justify-items: inherit;
  margin: 0 auto;
}

.about-text {
  width: 100%;
  /* max-width: 50%; */
}

.about-img {
  width: 100%;
  max-width: 60%;
  overflow: hidden;
}

.about-img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 1rem;
  color: #71717a;
  line-height: 1.7;
}

.about-card {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  flex: 1;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 0.5rem;
  color: #333;
}

.card p {
  color: #71717a;
}

/* ===== 9. PROJECTS SECTION ===== */
.projects {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #36373a, #29303c);
  color: white;
}

.projects-design {
  padding: 4rem 4.5rem 2rem;
}

.project-program {
  background: white;
  padding: 4rem 4.5rem;
  color: #000;
}

.projects .Tittle {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  /* margin-bottom: 1rem; */
}

.projects .Tittle span {
  color: #71717a;
}

.projects .description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 18px;
  color: #71717a;
  line-height: 1.6;
}

.proj-card {
  margin-bottom: 3rem;
}

.project-item {
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.project-item img.project-image {
  flex: 1;
  max-width: 50%;
  width: 500px;
  border-radius: 16px;
}

.project-item > div,
.project-text {
  flex: 1;
}

.project-text h2,
.project-text .header-program {
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 600px;
}

.project-text .header-program {
  font-weight: bold;
}

.project-item .sub {
  font-size: 22px;
  font-weight: 600;
  color: #71717a;
  margin-bottom: 8px;
}

.project-item p {
  color: #71717a;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-program {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: 1px solid #71717a;
  border-radius: 25px;
  background: transparent;
  color: #71717a;
  transition: all 0.3s ease;
}

.btn-program:hover {
  background: #71717a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-program svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ===== 10. SERVICES SECTION ===== */
.services {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #36373a, #29303c);
  color: white;
  text-align: center;
}

.services .title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 1.5px #ffffff;
}

.services .description {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 18px;
  color: #71717a;
  line-height: 1.6;
}

.Services-container {
  padding: 0 3.5rem;
}

.service-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 2rem;
}

.service-card {
  flex: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.heading-service {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 24px;
  color: white;
  font-weight: 600;
}

.service-card p {
  color: #71717a;
  line-height: 1.6;
}

/* ===== 11. CONTACT SECTION ===== */
.contact {
  padding: 4rem 4.5rem;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.contact-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form,
.contact-text {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* margin-bottom: 2rem; */
}

.text1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.contact-header .title {
  font-size: 64px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #71717a;
  text-stroke: 1.5px #71717a;
  margin: 0.5rem 0;
}

.contact-text h3 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-text p {
  text-align: center;
  color: #71717a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.socials img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

/* ===== 12. FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #36373a, #29303c);
  color: white;
  padding: 2rem;
}

.footer-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  font-weight: 600;
}

/* ===== 13. RESPONSIVE DESIGN ===== */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .header {
    padding: 1.5rem 5rem;
  }

  .section-padding,
  .hero-content,
  .about,
  .experience,
  .projects-design,
  .project-program,
  .contact {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .Services-container {
    padding: 0 5rem;
  }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .hero-content {
    padding: 3.5rem 4rem;
  }
}

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  html {
    font-size: 15px;
  }

  .header {
    padding: 1rem 3rem;
  }

  .nav ul {
    gap: 3rem;
  }

  .hero-content {
    padding: 3.5rem 3rem;
  }

  .hello,
  .name,
  .title,
  .location {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
  }

  .name,
  .title {
    font-weight: 900;
  }

  .desc {
    font-size: 16px;
  }

  .section-padding {
    padding: 3.5rem 3rem;
  }

  .exp-card-heading {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .card h3,
  .card-icon {
    font-size: 20px;
  }

  .text1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
  }

  .contact-header .title {
    font-size: 54px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #71717a;
    text-stroke: 1.5px #71717a;
    margin: 0.5rem 0;
  }
  .contact-text h3 {
    font-size: 40px;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .header {
    padding: 1rem 2.5rem;
  }

  .nav ul {
    gap: 2.5rem;
  }

  .hero-content {
    gap: 2rem;
    padding: 1rem 2.5rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-image,
  .about-img,
  .project-image {
    order: -1;
  }

  .hero-image img {
    max-width: 500px;
  }

  .intro,
  .cta {
    text-align: center;
    justify-content: center;
  }

  .hello,
  .title,
  .name,
  .location {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    justify-content: center;
  }
  .name,
  .title {
    font-weight: 990;
  }

  .desc {
    font-size: 1rem;
  }

  .btn {
    min-width: 165px;
  }

  .section-padding {
    padding: 3rem 2.5rem;
  }

  .exp-card-heading {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .about-container,
  .project-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .project-item img.project-image {
    flex: 1;
    max-width: 70%;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-card {
    flex-direction: column;
  }

  .contact-header {
    flex-wrap: wrap;
  }

  .text1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
  }

  .contact-header .title {
    font-size: 42px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #71717a;
    text-stroke: 1.5px #71717a;
    margin: 0.5rem 0;
  }

  .contact-text h3 {
    font-size: 29px;
  }
}

/* Mobile Landscape and Large Mobile (480px - 767px) */
@media (max-width: 767px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .section-padding {
    padding: 0rem 1.5rem;
  }

  .about,
  .experience,
  .project-program,
  .projects-design,
  .services,
  .contact,
  .footer {
    padding: 1.5rem 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav.mobile-menu-open {
    left: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  .navbar {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
  }

  .intro {
    /* flex-direction: column; */
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .about-container {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .about-card {
    flex-direction: column;
  }

  .about .Tittle {
    padding: 0px 0 16px 0;
    font-size: 40px;
  }
  .experience h2 {
    font-size: 40px;
    margin-bottom: 8px;
    padding: 16px 0 16px 0;
  }
  .services .title,
  .projects .Tittle {
    font-size: 40px;
    padding: 16px 0 0px 0;
  }

  .projects .description,
  .services .description {
    margin-bottom: 28px;
  }

  .exp-card-heading {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .icon-heading {
    gap: 1rem;
  }

  .project-item {
    flex-direction: column;
    text-align: center;
  }

  .project-item img.project-image {
    max-width: 100%;
    order: -1;
  }

  .Services-container {
    padding: 16px;
  }
  .service-grid {
    /* grid-template-columns: 1fr; */
    padding: 0rem;
  }

  .service-card {
    text-align: left;
  }

  .heading-service {
    justify-content: left;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-hero {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .contact-container {
    gap: 42px;
    padding: 42px 0px;
  }
  .contact-header {
    flex-direction: row;
  }
  .text1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
  }

  .contact-header .title {
    font-size: 46px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #71717a;
    text-stroke: 1.5px #71717a;
    margin: 0.5rem 0;
  }

  .contact-text h3 {
    font-size: 40px;
  }

  .socials img {
    width: 40px;
    height: 40px;
    margin-bottom: 32px;
  }

  .footer {
    padding: 1.5rem 2rem;
  }

  .footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    flex-direction: row;
  }

  .footer p {
    font-size: 16px;
    font-weight: 550;
  }

  /* Skills responsive */
  .skill-item {
    gap: 20px;
  }

  .skill-item img {
    width: 55px;
    height: 55px;
  }

  .skill-item p {
    font-size: 1.6rem;
  }

  .frame-skill {
    gap: 90px;
  }

  .marquee-content {
    gap: 90px;
  }
}

/* Mobile Landscape (543px - 480px) */
@media (max-width: 543px) {
  .hello,
  .name,
  .title,
  .location,
  .titlehero {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
  }

  .name,
  .title,
  .titlehero {
    font-weight: 900;
  }
  .desc,
  .btn {
    font-size: 13px;
  }

  .hero-image img {
    max-width: 330px;
  }
  .skill-item p {
    font-size: 20px;
  }

  .experience,
  .about,
  .project-program,
  .projects-design,
  .services,
  .contact,
  .footer {
    padding: 1.5rem 1.5rem;
  }

  .about .Tittle {
    padding: 0px 0 16px 0;
    font-size: 34px;
  }
  .experience h2 {
    font-size: 34px;
    margin-bottom: 8px;
    padding: 16px 0 16px 0;
  }
  .services .title,
  .projects .Tittle {
    font-size: 34px;
    padding: 16px 0 0px 0;
  }

  .projects .description,
  .services .description {
    margin-bottom: 28px;
  }

  .exp-card h3,
  .card h3,
  .project-text .sub,
  .services,
  .service-card h3 {
    font-size: 20px;
  }

  .exp-card .date {
    font-size: 16px;
  }

  .exp-card p,
  .about-text p,
  .projects .description,
  .project-text p,
  .services .description,
  .service-card p,
  .contact-text p {
    font-size: 13px;
  }

  .project-text h2,
  .project-text .header-program {
    font-size: 26px;
    margin-bottom: 8pxa;
    font-weight: 600px;
  }
  .project-text .header-program {
    font-weight: bold;
  }

  .services .description {
    margin: 0.5rem 0rem 0rem 0rem;
  }

  .Services-container {
    padding: 1rem 0rem;
  }
  .contact-container {
    gap: 42px;
    padding: 42px 0px;
  }
  .contact-header {
    flex-direction: row;
  }
  .text1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
  }

  .contact-header .title {
    font-size: 42px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #71717a;
    text-stroke: 1.5px #71717a;
    margin: 0.5rem 0;
  }

  .contact-text h3 {
    font-size: 38px;
  }

  .socials img {
    width: 35px;
    height: 35px;
    margin-bottom: 32px;
  }

  .footer {
    padding: 1.5rem 2rem;
  }

  .footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    flex-direction: row;
  }

  .footer p {
    font-size: 16px;
    font-weight: 550;
  }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 479px) {
  html {
    font-size: 13px;
  }

  .logo a {
    font-size: 20px;
  }

  .header {
    padding: 0.8rem 1.5rem;
  }

  .hero-content,
  .section-padding {
    padding: 0rem 1.5rem;
  }

  .hello,
  .name,
  .title,
  .location,
  .titlehero {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
  }

  .name,
  .title,
  .titlehero {
    font-weight: 900;
  }

  .desc {
    font-size: 14px;
  }

  .hero-image img {
    max-width: 330px;
  }

  .btn {
    min-width: auto;
    width: 100%;
    max-width: 190px;
    min-height: 48px;
    font-size: 15px;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .experience,
  .project-program,
  .projects-design,
  .services,
  .contact,
  .footer {
    padding: 1.5rem 1.5rem;
  }

  .exp-card {
    padding: 1.5rem 1rem;
  }

  .exp-card img {
    width: 45px;
    height: 45px;
  }

  .about {
    padding: 1.8rem 1.5rem;
  }
  .about-text p {
    font-size: 13px;
    color: #71717a;
    line-height: 1.7;
  }
  .card {
    padding: 1rem;
  }

  .project-text h2,
  .project-text .header-program {
    font-size: 32px;
    margin-bottom: 8pxa;
    font-weight: 600px;
  }
  .project-text .header-program {
    font-weight: bold;
  }

  .project-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .project-item img.project-image {
    max-width: 90%;
    margin: 0 auto;
  }

  .experience h2,
  .about .Tittle,
  .projects .Tittle,
  .services .title {
    font-size: 34px;
    margin-bottom: 8px;
    padding: 16px 0;
  }

  .exp-card h3,
  .card h3,
  .project-item .sub,
  .services {
    font-size: 20px;
  }

  .exp-card .date {
    font-size: 16px;
  }

  .exp-card p,
  .projects .description,
  .project-text p,
  .services .description,
  .service-card p,
  .contact-text p {
    font-size: 13px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card img,
  .service-card h3 {
    text-align: left;
    align-content: first baseline;
  }

  .service-card p,
  .exp-card p {
    text-align: left;
  }

  .Services-container {
    padding: 1rem 0rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-grid {
    padding: 0.5rem;
    gap: 1rem;
  }

  .contact-container {
    gap: 42px;
    padding: 42px 0px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 13px;
  }
  .contact-header {
    flex-direction: row;
  }

  .text1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
  }

  .contact-header .title {
    font-size: 38px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #71717a;
    text-stroke: 1.5px #71717a;
    margin: 0.5rem 0;
  }

  .contact-text h3 {
    font-size: 32px;
  }

  .socials img {
    width: 35px;
    height: 35px;
    margin-bottom: 32px;
  }

  .footer {
    padding: 1.5rem 2rem;
  }

  .footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    flex-direction: row;
  }

  .footer p {
    font-size: 16px;
    font-weight: 550;
  }

  /* Skills mobile */
  .skills {
    padding: 1rem 0;
  }

  .skill-item img {
    width: 42px;
    height: 42px;
  }

  .skill-item p {
    font-size: 20px;
  }

  .frame-skill {
    gap: 70px;
  }

  .marquee-content {
    gap: 70px;
  }
}

/* Mobile Portrait (411px - 320px) */
@media (max-width: 411px) {
  html {
    font-size: 12px;
  }

  .hello,
  .name,
  .title,
  .location,
  .titlehero {
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
  }

  .name,
  .title,
  .titlehero {
    font-weight: 900;
  }
  .desc,
  .btn {
    font-size: 13px;
  }

  .about .Tittle {
    padding: 0px 0 16px 0;
    font-size: 28px;
  }
  .experience h2 {
    font-size: 28px;
    margin-bottom: 8px;
    padding: 16px 0 16px 0;
  }
  .services .title,
  .projects .Tittle {
    font-size: 28px;
    padding: 16px 0 0px 0;
  }

  .projects .description,
  .services .description {
    margin-bottom: 28px;
  }

  .exp-card h3,
  .card h3,
  .project-item .sub,
  .services,
  .service-card h3 {
    font-size: 18px;
  }

  .exp-card .date {
    font-size: 14px;
  }

  .exp-card p,
  .projects .description,
  .project-text p,
  .services .description,
  .service-card p,
  .contact-text p {
    font-size: 12px;
  }

  .project-text h2,
  .project-text .header-program {
    font-size: 24px;
    margin-bottom: 8pxa;
    font-weight: 600px;
  }
  .project-text .header-program {
    font-weight: bold;
  }
}

/* Extra Small Mobile (280px - 319px) */
@media (max-width: 319px) {
  .header {
    padding: 0.6rem 0.8rem;
  }

  .hero-content {
    padding: 1.5rem 0.8rem;
  }

  .section-padding {
    padding: 1.5rem 0.8rem;
  }

  .hero-image img {
    max-width: 200px;
  }

  .btn {
    max-width: 250px;
    min-height: 44px;
    font-size: 14px;
    padding: 0.6rem 1rem;
  }

  .exp-card {
    padding: 1rem 0.8rem;
  }

  .exp-card img {
    width: 40px;
    height: 40px;
  }

  .service-card {
    padding: 1rem;
  }

  .socials img {
    width: 30px;
    height: 30px;
  }
}
