* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

:root {
  
  --text-color: #000000;
  --bg-color: #FFFFFF;
  --second-bg-color: #f5f5f5; 
  --main-color: #5C5C5C;
  --other-color: #383838;

  --h1-font: 4.5rem;
  --h2-font: 2.9rem;
  --p-font: 1rem;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Header Start */
header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8%;
  background-color: transparent;
  transition: all .50s ease;
}

header.sticky {
  background-color: var(--bg-color);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, .1);
  padding: 16px 12%;
}

.logo {
  font-size: 35px;
  font-weight: 600;
  color: var(--text-color);
}

.project-image {
   
    max-width: 100%;

    
    height: auto;

   
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}




.p1-image {
    
    max-width:90%;

   
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}



.p2-image {
   
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.p3-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}






.research-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}


.persona-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
   
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}


.storyboards-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.low-fidelity-image {
    
    max-width:90%;

   
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.usability-image {
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}


.usability2-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}

.usability3-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
   
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}




.high-fidelity-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}


.accessibility-image {
    
    max-width:90%;

    
    height: auto;
 margin: 20px auto;
    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}


.takeaways-image {
    
    max-width:90%;

    
    height: auto;
     margin: 20px auto;

    
    display: block; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
}



h1 {
  font-size: 3rem;
  margin: 20px 0;
  text-align: center;
}
h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  text-align: center;
}
p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}




span {
  color: var(--main-color);
}

.navlist {
  display: flex;
}

.navlist a {
  font-size: 21px;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 40px;
  transition: all .50s ease;
  padding-bottom: 10px;
}

.navlist a:hover {
  color: var(--main-color);
  
  background-color: transparent;
}


#menu-icon {
  font-size: 35px;
  z-index: 1001;
  cursor: pointer;
  display: none;
}

.h-btn {
  display: inline-block;
  padding: 11px 26px;
  background-color: var(--main-color);
  color: var(--bg-color);
  border: 2px solid var(--main-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  transition: all .50s ease;
}

.h-btn:hover {
  background-color: var(--main-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--main-color);
  transform: scale(1.1);
}


section {
  padding: 110px 12%;
}



.main-content h4 {
  font-size: 1.6rem;
}

.main-content h1 {
  font-size: var(--h1-font);
  font-weight: 900;
  margin: 20px 0px 20px;
  line-height: 1.2;

}

.main-content p {
  font-size: var(--p-font);
  font-weight: 400;
  width: 620px;
  max-width: 100%;
  line-height: 30px;
}

.social {
  margin-top: 20px;
}

.social i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--main-color);
  border-radius: 50%;
  backdrop-filter: brightness(88%);
  margin-right: 17px;
  font-size: 20px;
  cursor: pointer;
  transition: all .50s ease;
}

.social i:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--main-color);
}

.btn {
   display: inline-block;
  padding: 11px 26px;
  background-color: var(--main-color);
  color: var(--bg-color);
  border: 2px solid var(--main-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  transition: all .50s ease;
}

.btn:hover {
 background-color: var(--main-color);
  box-shadow: 0 0 20px var(--main-color);
  transform: scale(1.1);
}

.btn2 {
  background-color: transparent;
  color: var(--main-color);
  margin-left: 15px;
  transition: all .50s ease;
}

.btn2:hover {
  background-color: var(--main-color);
  color: var(--bg-color);
}


.about {
  background-color: var(--second-bg-color);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 6rem;
}

.about-img img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  background-color: var(--bg-color);
  border: 6px solid var(--main-color);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--main-color);
}

.about h2 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about h1 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 20px;

}

.exp-area {
  margin-bottom: 50px;
}

.exp-area p {
  color: var(--text-color);
  font-size: 19px;
  font-weight: 600;
  line-height: 42px;
}

.exp-area p span {
  color: var(--other-color);
  font-size: var(--p-font);
  font-weight: 400;
  margin-left: 8px;
}


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

.center-text h2 {
  font-size: var(--h2-font);
}

.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  gap: 2.3rem;
  margin-top: 4.2rem;
}

.box {
  padding: 40px 20px 50px;
  background-color: #FFFFFF;
  border-radius: 28px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 5px var(--main-color);
  cursor: pointer;
  transition: all .50s ease;
}

.box img {
  margin-bottom: 20px;
}

.box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.box p {
  font-size: var(--p-font);
  font-weight: 400;
  color: var(--other-color);
  line-height: 28px;
  margin-bottom: 20px;
}

.box a {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.273rem;
  padding: 7px 0;
  color: var(--text-color);
  border-bottom: 2px solid #dddddd;
  transition: all .50s ease;
}

.box i {
  vertical-align: middle;
  font-size: 25px;
  color: var(--main-color);
  margin-left: 5px;
}

.box a:hover {
  border-bottom: 2px solid var(--main-color);
}

.box:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px var(--main-color);
}


.portfolio {
  background-color: var(--second-bg-color);
}

.portfolio-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  gap: 2.8rem;
  margin-top: 4.2rem;
}

.portfolio-content2 {
  display: grid;
  padding: 9%;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  gap: 2.8rem;
  margin-top: 4.2rem;
}

.row {
  background-color: #FFFFFF;
  border-radius: 28px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 5px var(--main-color);
  padding: 20px;
  transition: all .50s ease;
}

.row img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  margin-bottom: 1.4rem;
}

.main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.main-row h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--other-color);
}

.main-row a i {
  font-size: 28px;      
  color: inherit;       
  background: none;     
  border-radius: 0;   
  width: auto;
  height: auto;
  padding: 0;
}
.fa-github { color: #5C5C5C; }  
.fa-linkedin { color: #5C5C5C; } 
.fa-behance  { color: #5C5C5C; }  

.row h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}

.row:hover {
  transform: translateY(-5px) scale(1.03);
  cursor: pointer;
  box-shadow: 0 0 20px var(--main-color);
}


.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.2rem;
}

.contact-form form {
  position: relative;
  width: 600px;
}

form input,
textarea {
  width: 100%;
  padding: 20px;
  border: none;
  outline: none;
  box-shadow: 0 0 5px var(--main-color);
  background-color: #FFFFFF;
  color: var(--text-color);
  border-radius: 8px;
  margin-top: 20px;
}

form input::placeholder,
form textarea::placeholder {
  color: var(--other-color);
  font-size: 15px;
}

form .send-btn {
  display: inline-block;
  padding: 11px 26px;
  background-color: var(--main-color);
  color: var(--bg-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600px;
  width: 30%;
  cursor: pointer;
  transition: all .50s ease;
}

form .send-btn:hover {
  background-color: transparent;
  color: var(--main-color);
  box-shadow: 0 0 20px var(--main-color);
}


.footer {
  background-color: var(--second-bg-color);
  padding: 35px 12%;
}

.footer-iteam {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  gap: 3rem;
  align-items: center;
  gap: 2rem;
}

.ui a {
  font-size: 1.5rem;
}

.ui p {
  width: 200px;
  margin-top: 20px;
  font-size: var(--p-font);
  color: var(--other-color);
}

.page h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.page li {
  padding-bottom: 5px;
}

.page li a {
  color: var(--other-color);
  font-size: var(--p-font);
}

.service-2 h3 {
  margin-bottom: 20px;
  font-size: 1.5rem
}

.service-2 li {
  padding-bottom: 10px;
  color: var(--other-color);
  font-size: var(--p-font);
}

.contact-2 h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-2 li {
  padding-bottom: 10px;
  color: var(--other-color);
}

.copyright {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: var(--other-color);
}

.scroll {
  display: flex;
  justify-content: right;
}

.scroll-top {
  display: flex;
  align-items: center;
  background-color: var(--main-color);
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 700;
}


.about-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.about-social a {
  color: var(--main-color);
  font-size: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 40px;
}

.about-social a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--main-color);
}

.logo-img {
  height: 80px;
  vertical-align: middle;
  padding-bottom: 10px;
  
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding-top: 220px;
  height: 100vh;
}


@media screen and (max-width: 1280px) {
  header {
    padding: 20px 5%;
  }

  header.sticky {
    padding: 14px 5%;
  }

  section {
    padding: 90px 5% 80px;
  }

  .footer {
    padding: 18px 5%;
  }
}

@media screen and (max-width: 1290px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8rem;
  }

  .about-img {
    text-align: center;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
  }

  .box {
    padding: 40px 40px 46px;
  }

  .box img {
    width: 100%;
    height: 60px;
    max-width: 60px;
  }

  .box h3 {
    font-size: 21px;
  }
}

@media screen and (max-width: 950px) {
  :root {
    --h1-font: 3.5rem;
  }

  #menu-icon {
    display: block;
  }

 .navlist {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 255px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    transition: all .50s ease;
  }

  .navlist a {
    display: block;
    padding: 17px;
    font-size: 22px;
  }

  .navlist.active {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 100px;
  }

  .about-img img {
    width: 250px;
    height: 250px;
  }

  #about {
    flex-direction: column;
    height: auto;
    padding: 100px 5% 50px;
  }

  .contact-form form {
    width: 100%;
    padding: 0 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    background-position: center;
    background-size: cover;
    padding-top: 120px;
    gap: 3rem;
  }

  .main-content h1 {
    font-size: 2.2rem;
  }

  .main-content p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer-iteam {
    grid-template-columns: 1fr;
  }

  .navlist {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 99;
  }

  #menu-icon {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
  }
}

@media screen and (max-width: 680px) {
  .main-content p {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --h1-font: 2.7rem;
    --h2-font: 2rem;
  }

  .hero {
    background-size: cover;
    padding-top: 150px;
  }
}

@media screen and (max-width: 470px) {
  :root {
    --h1-font: 2.2rem;
    --h2-font: 1.5rem;
  }

  .hero {
    background-position: center;
    background-size: cover;
    padding-top: 150px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .footer-iteam {
    grid-template-columns: 2fr;
  }

  form .send-btn {
    width: 100%;
  }

  .h-btn {
    padding: 11px 20px;
  }
}

@media (min-width: 769px) {
  #menu-icon {
    display: none;
  }

  .navlist {
    position: static;
    flex-direction: row;
    background: none;
    width: auto;
  }
}




.about-text {
  text-align: left; 
}

.about-text h1,
.about-text h3,
.about-text p {
  text-align: left;
}


.about-img-long img {
width: 100%; 
max-width: 500px; 
height: auto; 
border-radius: 8px; 
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); 
object-fit: cover;
border: none; 
}









.github-link {
  font-size: 0.8rem;          
  color: #0077FF;             
  text-decoration: none;       
  display: inline-flex;        
  align-items: center;
  gap: 4px;                   
  transition: all 0.3s ease;  
}

.github-link i {
  font-size: 0.8rem;          
  transition: transform 0.3s ease;  
}

.github-link:hover {
  color: #0056b3;             
}

.github-link:hover i {
  transform: translateX(3px); 
}
