/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;600&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Kanit&family=Saira+Condensed&family=Saira+Stencil+One&family=Teko:wght@300&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color */
  --hue-color: 230;
  /*Purple 250 - Green 142 - Blue 230 - Pink 340*/

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 69%, 61%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  /*========== Font and typography ==========*/
  --body-font: "Ubuntu", sans-serif;
  --anchor-font: "Kanit", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margins Bottom ==========*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*========== Variables Dark theme ==========*/

body.dark-theme {
  /* HSL color mode */
  --first-color-second: hsl(var(--hue-color), 30%, 08%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/

.navBtns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--first-color);
}

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

*::selection {
  color: var(--first-color);
  background-color: #d0d0d0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height) 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--first-color);
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
  padding: 2rem 0 4rem;
}

.sectionTitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
}

.sectionSubtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
}

.sectionTitle,
.sectionSubtitle {
  text-align: center;
}

/*==================== LAYOUT ====================*/
.container {
  max-width: 768px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*==================== NAV ====================*/
.nav {
  max-width: 968px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_logo,
.navToggle {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav_logo:hover {
  color: var(--first-color);
}

.navToggle {
  font-size: 1.1rem;
  cursor: pointer;
}

.navToggle:hover {
  color: var(--first-color);
}

@media screen and (max-width: 767px) {
  .nav_menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2.5rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: 0.3s;
  }
}

.navList {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.navLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--first-color-alt);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  font-family: var(--anchor-font);
}

.navLink:hover {
  color: var(--first-color);
}

.nav_icon {
  font-size: 1.2rem;
}

.nav_close {
  position: absolute;
  right: 1.3rem;
  bottom: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--first-color);
}

.nav_close:hover {
  color: var(--first-color-alt);
}

/* show menu */

.show-menu {
  bottom: 0;
}

/* Active link */

.active-link {
  color: dodgerblue;
}

/* Change background header */

.scroll-header {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
}

/*==================== HOME ====================*/

.homeContainer {
  gap: 1rem;
}

.homeContent {
  grid-template-columns: 0.5fr 3fr;
  padding-top: 3.5rem;
  align-items: center;
}

.homeSocial {
  display: grid;
  grid-template-columns: max-content;
  row-gap: 1rem;
}

.homeSocialIcons {
  font-size: 1, 25rem;
  color: var(--first-color);
}

.homeSocialIcons:hover {
  color: var(--first-color-alt);
}

.homeBlob {
  width: 300px;
  fill: #bdbdbd;
}

.homeBlobImg {
  width: 100%;
}

.homeData {
  grid-column: 1/3;
}

.homeTitle {
  font-size: var(--h1-font-size);
}

.homeSubtitle {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-75);
}

.homeDescription {
  margin-bottom: var(--mb-2);
}

.homeScroll {
  display: none;
}

.homeScrollBtn {
  color: var(--first-color);
  transition: 0.3s;
}

.homeScrollBtn:hover {
  transform: translateY(0.25rem);
}

.homeScrollMouse {
  font-size: 2rem;
}

.homeScrollName {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-right: var(--mb-0-25);
}

.homeScrollArrow {
  font-size: 1.25rem;
}

/*==================== BUTTONS ====================*/

.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  font-weight: var(--font-medium);
}

.button:hover {
  background-color: var(--first-color-alt);
}

.buttonIcon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button--flex {
  display: inline-flex;
  align-items: center;
}

.button--small {
  padding: 0.75rem 1rem;
}

.button--link {
  padding: 0;
  background-color: transparent;
  color: var(--first-color);
}

.button--link:hover {
  background-color: transparent;
  color: var(--first-color-alt);
}

/*==================== ABOUT ====================*/

.aboutImg {
  width: 200px;
  border-radius: 0.5rem;
  justify-self: center;
  align-self: center;
}

.aboutDescription {
  text-align: justify;
  margin-bottom: var(--mb-2-5);
}

.aboutInfoBox {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.aboutInfo {
  /* display: flex; */
  /* justify-content: space-evenly; */
  margin-bottom: var(--mb-2-5);
}

.aboutInfoTitle {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.aboutInfoName {
  font-size: var(--smaller-font-size);
}

.aboutInfoTitle,
.aboutInfoName {
  display: block;
  text-align: center;
}

.aboutButtons {
  display: flex;
  justify-content: center;
}

/*==================== SKILLS ====================*/

.skillsContainer {
  row-gap: 0;
}

.skillsHeader {
  display: flex;
  align-items: center;
  margin-bottom: var(--mb-2-5);
  cursor: pointer;
}

.skillsIcon,
.skillsArrow {
  font-size: 2rem;
  color: var(--first-color);
}

.skillsIcon {
  margin-right: var(--mb-0-75);
}

.skillsTitle {
  font-size: var(--h3-font-size);
}

.skillsSubtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.skillsArrow {
  margin-left: auto;
  transition: 0.4s;
}

.skillsList {
  row-gap: 1.5rem;
  padding-left: 2.7rem;
}

.skillsTitles {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--mb-0-5);
}

.skillsTitles2 {
  list-style-type: disc;
}

.skillsName {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.skillsBar,
.skillsPercentage {
  height: 5px;
  border-radius: 0.25rem;
}

.skillsBar {
  background-color: var(--first-color-lighter);
}

.skillsPercentage {
  display: block;
  background-color: var(--first-color);
}

.skillsHtml {
  width: 90%;
}

.skillsCss {
  width: 85%;
}

.skillsJs {
  width: 80%;
}

.skillsClose .skillsList {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.skillsOpen .skillsList {
  height: max-content;
  margin-bottom: var(--mb-2-5);
  transition: 0.5s;
}

.skillsOpen .skillsArrow {
  transform: rotate(-180deg);
}

.skillsContent {
  transition: 1s;
}

/*==================== QUALIFICATION ====================*/

.qualificationData {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 1.5rem;
}

.qualificationTitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.qualificationSubtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
}

.qualificationCalendar {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.qualificationRounder {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.qualificationLine {
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--first-color);
  transform: translate(6px, -7px);
}

/*==================== SERVICES ====================*/

.servicesContainer {
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.servicesContent {
  position: relative;
  background-color: var(--container-color);
  padding: 3.5rem 0.5rem 1.25rem 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.servicesContent:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.servicesIcon {
  display: block;
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.servicesTitle {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.servicesBtn {
  cursor: pointer;
  font-size: var(--small-font-size);
}

.servicesBtn:hover .buttonIcon {
  transform: translateX(0.25rem);
}

.servicesModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.servicesModalContent {
  position: relative;
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.servicesModalServices {
  row-gap: 1rem;
}

.servicesModalService {
  display: flex;
}

.servicesModalTitle {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1-5);
}

.servicesModalClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--first-color);
}

.servicesModalIcon {
  color: var(--first-color);
  margin-right: var(--mb-0-25);
}

/* Active Modal */

.activeModal {
  opacity: 1;
  visibility: visible;
}

/*==================== PORTFOLIO ====================*/

.portfolioContainer {
  overflow: initial;
}

.portfolioContent {
  padding: 0 1.5rem;
}

.portfolioData {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  justify-content: center;
}

.portfolioImg {
  width: 256px;
  border-radius: 0.5rem;
  justify-self: center;
}

.Img {
  width: 250px;
  height: 130px;
  border-radius: 0.5rem;
  justify-self: center;
}

.cube {
  width: 250px;
  height: 200px;
}

.portfolioTitle {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.portolioDescription {
  margin-bottom: var(--mb-0-75);
}

.portfolioBtn:hover .buttonIcon {
  transform: translateX(0.25rem);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiperPortfolioIcon {
  font-size: 2rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: -0.5rem;
}

.swiper-button-next {
  right: -0.5rem;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: -2.5rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullet {
  outline: none;
}

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

.contactContainer {
  row-gap: 3rem;
}

.contactInfo {
  display: flex;
  margin-bottom: var(--mb-2);
  border: 2px solid var(--first-color);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: 1s;
}

.contactInfo:hover {
  display: flex;
  margin-bottom: var(--mb-2);
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.contactIcon {
  font-size: 2rem;
  color: var(--first-color);
  margin-right: var(--mb-0-75);
}

.contactTitle {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.contactSubtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contactContent {
  background-color: var(--input-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem 0.25rem;
  margin-bottom: 5px;
}

.contactInput {
  width: 100%;
  height: inherit;
  background-color: var(--input-color);
  color: var(--text-color);
  font-family: var(--body-color);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem 0.5rem 0;
}

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

.form {
  text-align: center;
}

/*==================== FOOTER ====================*/

.footer {
  padding-top: 3.5rem;
}

.footerContainer {
  row-gap: 3.5rem;
}

.footerBg {
  background-color: var(--first-color-second);
  padding: 2rem 0 3rem;
}

.footerTitle {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-0-25);
}

.footerSubtitle {
  font-size: var(--small-font-size);
}

.footerLinks {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.footerLink:hover {
  color: var(--first-color-lighter);
}

.footerSocial {
  font-size: 1.25rem;
  margin-right: var(--mb-1-5);
}

.footerSocial:hover {
  color: var(--first-color-lighter);
}

.footerCopy {
  font-size: var(--smaller-font-size);
  text-align: center;
  color: var(--text-color-light);
  margin-top: var(--mb-3);
}

.footerTitle,
.footerSubtitle,
.footerLink,
.footerSocial {
  color: white;
}

/*========== SCROLL UP ==========*/

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  opacity: 0.8;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
}

.scrollupIcon {
  font-size: 1.5rem;
  color: #fff;
}

/* Show scroll */

.show-scroll {
  bottom: 5rem;
}

/*========== SCROLL BAR ==========*/

::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */

@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .nav_menu {
    padding: 2rem 0.25rem 4rem;
  }

  .navList {
    column-gap: 0;
  }

  .homeContent {
    grid-template-columns: 0.25fr 3fr;
  }

  .homeBlob {
    width: 180px;
  }

  .skillsTitle {
    font-size: var(--normal-font-size);
  }

  .qualificationData {
    gap: 0.5rem;
  }

  .servicesContainer {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .servicesContent {
    padding-right: 3.5rem;
  }

  .servicesModal {
    padding: 0 0.5rem;
  }

  .portfolioImg {
    width: 150px;
    height: 150px;
  }
}

/* For medium devices */

@media screen and (min-width: 568px) {
  .homeContent {
    grid-template-columns: max-content 1fr 1fr;
  }

  .homeData {
    grid-column: initial;
  }

  .homeImg {
    order: 1;
    justify-self: center;
  }

  .aboutContainer,
  .portfolioContent,
  .contactContainer,
  .footerContainer {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualificationSections {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  body {
    margin: 0;
  }

  .section {
    padding: 6rem 0 2rem;
  }

  .sectionSubtitle {
    margin-bottom: 4rem;
  }

  .header {
    top: 0;
    bottom: initial;
  }

  .header,
  .main,
  .footerContainer {
    padding: 0 1rem;
  }

  .nav {
    height: cal((--header-height) + 1.5rem);
    column-gap: 1rem;
  }

  .nav_icon,
  .nav_close,
  .navToggle {
    display: none;
  }

  .navList {
    display: flex;
    column-gap: 2rem;
  }

  .homeContainer {
    row-gap: 1rem;
  }

  .homeContent {
    padding-top: 5.5rem;
    column-gap: 2rem;
  }

  .homeBlob {
    width: 270px;
  }

  .homeScroll {
    display: block;
  }

  .homeScrollBtn {
    margin-left: 3rem;
  }

  .aboutContainer {
    column-gap: 5rem;
  }

  .aboutImg {
    width: 350px;
  }

  .qualificationSections {
    grid-template-columns: 0.5fr;
  }

  .servicesIcon {
    font-size: 2rem;
  }

  .servicesContainer {
    justify-content: center;
  }

  .servicesContent {
    padding: 6rem 0 2rem 2.5rem;
  }

  .servicesModalContent {
    width: 450px;
  }

  .footerContainer {
    grid-template-columns: repeat(3, 1fr);
  }

  .footerBg {
    padding: 3rem 0 3.5rem;
  }

  .footerLinks {
    flex-direction: row;
    column-gap: 2rem;
    padding: 5px;
  }

  .footerSocials {
    justify-self: flex-end;
  }

  .footerCopy {
    margin-top: 4.5rem;
  }
}

/* For large devices */

@media screen and (min-width: 1024px) {

  .header,
  .main,
  .footerContainer {
    padding: 0;
  }

  .homeBlob {
    width: 320px;
  }

  .homeSocial {
    transform: translateX(-6rem);
  }

  .portfolioContent {
    column-gap: 5rem;
  }

  .swiperPortfolioIcon {
    font-size: 3.5rem;
  }

  .swiper-button-prev {
    left: -3.5rem;
  }

  .swiper-button-next {
    right: -3.5rem;
  }

  .swiper-container-horizontal>.swiper-pagination-bullet {
    bottom: -4.5rem;
  }

  .contactForm {
    width: 460px;
  }

  .contactInputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .contactContainer {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
  }
}

/*==================== SKILLS CARD DESIGN (THEMED) ====================*/
.skillsContainer {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.skillsCard {
  background-color: var(--container-color);
  border: 1px solid var(--scroll-bar-color);
  /* Subtle border using theme color */
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}

.skillsCard:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: var(--first-color);
  /* Highlight border on hover */
}

.skillsCardIconWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.skillsCardIcon {
  font-size: 2.5rem;
  color: var(--text-color);
  background-color: var(--input-color);
  /* Theme light background */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.skillsCard:hover .skillsCardIcon {
  color: var(--first-color);
  /* Icon becomes primary color on hover */
}

.skillsCardTitle {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.skillsCardDescription {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.5;
}

/* Specific color for the Skills header if requested to match image style but using theme */
.skills-header-blue {
  color: var(--first-color);
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
  .skillsContainer {
    grid-template-columns: 1fr;
  }
}

/*==================== CONTACT NEW LAYOUT ====================*/
.contactNewContainer {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contactCard {
  background-color: var(--container-color);
  border: 1px solid var(--scroll-bar-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s;
}

.contactCard:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: var(--first-color);
}

.contactCardIcon {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: 0.75rem;
  display: block;
}

.contactCardTitle {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.25rem;
}

.contactCardData {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  display: block;
  margin-bottom: 0.75rem;
}

.contactCardSubData {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  display: block;
}

.contactCardButton {
  color: var(--first-color);
  font-size: var(--small-font-size);
  cursor: pointer;
}

.contactCardButton:hover .buttonIcon {
  transform: translateX(0.25rem);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contactNewContainer {
    grid-template-columns: 1fr;
  }
}