@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/*==================== VARIABLES CSS ====================*/
:root {
   --header-height: 48px;

   /*========== Colors (Dark Mode Palette) ==========*/
   --hue-color: 250;

   --first-color: #2e8b57; /* Sea Green - Accent color, remains vibrant */
   --first-color-second: #2e8b57;
   --first-color-alt: #2e8b57;
   --first-color-lighter: #222222; /* Darker background for light elements in dark mode (e.g. nav-menu) */

   --title-color: #f0f0f0; /* Light grey for titles */
   --text-color: #cccccc; /* Medium light grey for general text */
   --text-color-light: #999999; /* Lighter grey for subtle text */
   --input-color: #333333; /* Dark grey for input backgrounds */
   --body-color: #1a1a1a; /* Deep dark grey for body background */
   --container-color: #2a2a2a; /* Darker grey for container backgrounds */
   --scroll-bar-color: #3a3a3a; /* Dark grey scrollbar track */
   --scroll-thumb-color: #6a6a6a; /* Lighter dark grey scrollbar thumb */


   /*========== Font and typography ==========*/
   --body-font: 'Outfit', sans-serif;

   --big-font-size: 32px;
   --h1-font-size: 24px;
   --h2-font-size: 20px;
   --h3-font-size: 18px;
   --normal-font-size: 15px;
   --small-font-size: 13px;
   --smaller-font-size: 12px;

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

   /*========== Margins Bottom ==========*/
   --mb-0-25: 4px;
   --mb-0-5: 8px;
   --mb-0-75: 12px;
   --mb-1: 16px;
   --mb-1-5: 24px;
   --mb-2: 32px;
   --mb-2-5: 40px;
   --mb-3: 48px;

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

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /* for light mode animation */
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

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

/*=============== THEME ===============*/
.change-theme {
  font-size: 1.25rem;
  transition: 0.3s;
  cursor: pointer;
}
.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Light theme (modified to be harmonious) ==========*/
body.light-theme {
  --title-color: #242329; /* Dark grey for titles */
  --text-color: #6c697b; /* Medium grey-purple for general text */
  --text-color-light: #a3a1af; /* Light grey-purple for subtle text */
  --input-color: #f0edfb; /* Very light purple-grey for input backgrounds */
  --body-color: #fbfafd; /* Very light off-white for body background */
  --container-color: #d8d6d6; /* Light grey for container backgrounds */
  --first-color-lighter: #b8e4c0; /* Light sea green for elements like nav-menu */
  --scroll-bar-color: #e3e2e8; /* Very light grey scrollbar track */
  --scroll-thumb-color: #c7c5d2; /* Light grey scrollbar thumb */
}

/* Specific rule for theme button color in light mode to ensure visibility */
body.light-theme .change-theme {
  color: var(--title-color); /* Use a dark color from light theme palette */
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

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

.main {
  overflow: hidden;
}

.section {
  padding: 4.5rem 0 1rem;
}

.section-title, 
.section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 2rem;
}

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

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
.nav-logo {
  font-weight: var(--font-medium);
  color: var(--first-color);
  transition: 0.4s;
}
.nav-logo:hover {
  color: var(--first-color-alt);
}
.nav-menu {
  bottom: 1rem;
  background: var(--first-color-lighter);
  width: 90%;
  position: fixed;
  padding: 16px 2.25rem;
  backdrop-filter: blur(10px);
  border-radius: 4rem;
  transition: .4s; /* for light mode animation */
}
.nav-list {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.nav-link {
  display: flex;
  padding: .4rem;
  font-size: 1.25rem;
  color: var(--text-color);
  border-radius: 5rem;
}

/* Active link */
.active-link {
  background: var(--first-color); 
}

/* Change theme header */
.scroll-header {
  box-shadow: 0 4px 4px hsla(0, 0%, 4%, .3);
}

/*=============== HOME ===============*/
.home {
  margin-top: -2,7rem;
  height: 40%;
}
.home-container {
  position: relative;
  row-gap: 4.5rem;
  height: 50%;
}
.home-data {
  text-align: center;
}
.home-greeting,
.home-education {
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
}
.home-greeting {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--title-color);
}
.home-education {
  color: var(--text-color);
  margin-bottom: 2.5rem;
}
.home-name {
  font-size: var(--big-font-size);
}
.home-img {
  width: 200%;
}
.home-handle {
  justify-self: center;
  height: 293px;
  width: 190px;
  background: var(--first-color-lighter);
  border-radius: 10em 10rem 1rem 1rem;
  align-items: flex-end;
  justify-content: center;
  display: flex;
  overflow: hidden;
}
.home-buttons {
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  display: flex;
}
.home-social,
.home-scroll {
  position: absolute;
}
.home-social {
  row-gap: 0.5rem; 
  display: grid;
  left: 0;
  bottom: 5rem;
}
.home-social-link {
  width: max-content;
  background: var(--container-color);
  color: var(--first-color);
  transition: 0.4s;
  font-size: 1rem;
  display: flex;
  border-radius: 0.25rem;
}
.home-social-link:hover{
  background-color: var(--first-color);
  color: white;
}
.home-social::after {
  transform: rotate(90deg) translate(1rem, 32px);
  background: var(--first-color);
  height: 2px;
  width: 2rem;
  content: '';
}
.home-scroll {
  justify-items: center;
  row-gap: 2.25rem;
  display: grid;
  bottom: 4rem;
  right: -1.5rem;
  color: var(--first-color);
}
.home-scroll-icon {
  font-size: 1.25rem;
}
.home-scroll-name {
  transform: rotate(-90deg);
  font-size: var(--smaller-font-size);
}

/* Buttons style*/
.button {
  display: inline-block;
  background: var(--first-color-second);
  color: var(--body-color);
  padding: 0.75rem 16px;
  font-weight: var(--font-medium);
  border-radius: 8px;
  transition: 0.4s;
}
.button:hover {
  color: var(--body-color);
  background-color: var(--first-color-alt);
}
.button--ghost {
  color: var(--first-color);
  background: transparent;
  border: 2px solid var(--first-color);
}

/*=============== ABOUT ===============*/
.about-container {
  row-gap: 2.5rem;
}
.about-img {
  width: 180px; /* Decreased size */
  border-radius: 1.5rem;
  justify-self: center;
}
.about-data {
  text-align: center;
}
.about-info {
  margin-bottom: 32px;
  gap: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default 2 columns for small phones */
}
.about-box {
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  background: var(--container-color);
}
.about-icon {
  margin-top: 0.5em;
  font-size: 1.5rem;
  color: var(--first-color);
}
.about-subtitle {
  font-size: var(--font-semi-bold);
}
.about-description {
  margin-bottom: 2rem;
}

.skills-container {
  padding-top: 16px;
  row-gap: 32px;
}
.skills-content {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: var(--container-color);
}
.skills-title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--first-color);
}
.skills-box {
  display: flex;
  column-gap: 2.5rem;
  justify-content: center;
}
.skills-group {
  row-gap: 16px;
  align-content: flex-start;
  display: grid;
}
.skills-dta {
  column-gap: 8px;
  display: flex;
}
.skills .bxs-badge-check {
  color: var(--first-color);
  font-size: 16px;
}
.skills-name {
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  line-height: 18px;
}
.skills-level {
  font-size: var(--body-font);
}

.services-container {
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 16px;
}
.services-card {
  background: var(--container-color);
  padding: 3rem 1.5rem 1.5rem;
  border-radius: 16px;
}
.services-title {
  margin-bottom: 2.5rem;
  font-size: var(--h3-font-size);
}
.services-button {
  color: var(--first-color);
  display: flex;
  font-size: var(--small-font-size);
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}
.services-button:hover .services-icon {
  transform: translate(0.25rem);
}
.services-icon {
  transition: 0.4s;
  font-size: 16px;
}

.services-modal {
  position: fixed;
  inset: 0;
  background: hsla(var(--hue-color), 28%, 16%, .7);
  padding: 32px 16px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: var(--z-modal);
}
.services-modal-content {
  border-radius: 1.5rem;
  padding: 4.5rem 1.5rem 2.5rem;
  position: relative;
  background-color: var(--body-color);
}
.services-modal-title,
.services-modal-description {
  text-align: center;
}
.services-modal-title {
  margin-bottom: 16px;
  font-size: var(--h3-font-size);
  color: var(--first-color);
}
.services-modal-description {
  margin-bottom: 32px;
  font-size: var(--small-font-size);
}
.services-modal-list {
  display: grid;
  row-gap: 0.75rem;
}
.services-modal-item {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
}
.services-modal-icon {
  font-size: 1.5rem;
  color: var(--first-color);
}
.services-modal-info {
  font-size: var(--small-font-size);
}
.services-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
}
.active-modal {
  opacity: 1;
  visibility: visible;
}

.work-container {
  padding-top: 1rem;
}
.work-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 32px;
}
.work-item {
  cursor: pointer;
  border-radius: 8px;
  color: var(--title-color);
  padding: 0.25rem 0.75rem;
  font-weight: var(--font-medium);
}
.work-card {
  background-color: var(--container-color);
  padding: 16px;
  border-radius: 1rem;
}
.work-img {
  margin-bottom: 0.75rem;
  border-radius: 16px;
}
.work-title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.25rem;
  font-weight: var(--font-medium);
  color: var(--first-color);
  font-weight: 670;
}
.work-button {
  margin-top: 0.5rem;
  column-gap: 0.25rem;
  align-items: center;
  display: flex;
  font-size: var(--small-font-size);
  color: var(--first-color);
  width: max-content;
}
.work-button:hover .work-icon {
  transform: translateX(00.25rem);
} 
.work-icon {
  font-size: 1rem;
  transition: 0.4s;
}

.active-work {
  background-color: var(--first-color);
  color: var(--body-color);
}


.testimonial-card {
  margin-bottom: 3rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.5rem;
  background-color: var(--container-color);
}

.testimonial-img {
  width: 60px;
  margin-bottom: 16px;
  border-radius: 3rem;
}
.testtimonial-name {
  margin-bottom: 0.25rem;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}
.testimonial-description {
  font-size: var(--small-font-size);
}

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

.contact-container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}
.contact-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.contact-card {
  text-align: center;
  border-radius: 0.75rem;
  background-color: var(--container-color);
  padding: 1rem;
}
.contact-card-icon {
  color: var(--title-color);
  font-size: 2rem;
}
.contact-card-title,
.contact-card-data {
  font-size: var(--small-font-size);
}
.contact-card-title {
  font-weight: var(--font-medium);
}
.contact-card-data {
  margin-bottom: 0.75rem;
  display: block;
}
.contact-button {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  column-gap: 0.25rem;
  align-content: center;
  justify-content: center;
}
.contact-button:hover,
.contact-button-icon {
  transform: translateX(0.25rem);
}
.contact-button-icon {
  font-size: 16px;
  transition: 0.4s;
}
.contact-form-div {
  position: relative;
  margin-bottom: 32px;
  height: 4rem;
}
.contact-form-input {
  top: 0;
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  border: 2px solid var(--text-color-light);
  background: none;
  color: var(--text-color);
  outline: none;
  padding: 1.5rem;
  border-radius: 0.75rem;
  z-index: 1;
}
.contact-form-tag {
  position: absolute;
  top: -.75rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem;
  background-color: var(--body-color);
  z-index: 10;
}
.contact-form-area {
  height: 15rem;
}
.contact-form-area textarea {
  resize: none;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--first-color);
}
.footer-container {
  padding: 2rem 0 6rem;
}
.footer-title,
.footer-link {
  color: var(--body-color);
}
.footer-title {
  margin-bottom: 32px;
  text-align: center; /* Default for mobile */
}
.footer-list {
  display: flex;
  flex-direction: column; /* Stack items vertically for mobile */
  align-items: center; /* Center items for mobile */
  row-gap: 0.75rem; /* Spacing between stacked items */
  margin-bottom: 1.5rem; /* Space below list */
}
.footer-social {
  column-gap: 1.25rem;
  display: flex;
  justify-content: center; /* Center icons for mobile */
  margin-top: 2rem;
}
.footer-social-link {
  display: inline-flex;
  font-size: 16px;
  background-color: var(--body-color);
  color: var(--first-color);
  border-radius: 0.25rem;
  padding: 0.25rem; 
}
.footer-copy {
  margin-top: 4.5rem;
  display: block;
  color: var(--container-color);
  text-align: center;
  font-size: var(--smaller-font-size);
}

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

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

/*==================== MEDIA QUERIES ====================*/
@media screen and (max-width: 328px) {
  .nav-menu {
    padding: 1rem 1.5rem;
  }
  .home-buttons {
    flex-direction: column;
  }
  .home-handle {
    width: 150px;
    height: 253px;
  }
  .home-img {
    width: 130px;
  }
  .about-info {
    grid-template-columns: 1fr; /* Single column on very, very small screens */
  }
  .about-box {
      padding: 0.5rem 0.25rem; /* Reduce padding to make boxes narrower */
  }
  .skills-box {
    column-gap: 16px;
    flex-direction: column; 
    align-items: flex-start; 
  }
  .skills-name {
    font-size: var(--small-font-size);
  }
  .services-container {
    grid-template-columns: 1fr; /* Single column for services on very small screens */
    justify-content: center;
  }
  .work-item {
    font-size: var(--small-font-size);
  }
  .work-filters {
    column-gap: 0.25rem;
    flex-wrap: wrap; /* Allow filters to wrap */
    justify-content: center;
  }
  .work-card {
    width: 100%; /* Ensure cards take full width */
  }
}

/* For medium devices (576px up) */
@media screen and (min-width: 576px) {
   .nav-menu {
    width: 328px;
    left: 0;
    margin: 0 auto;
    right: 0;
   }
   .about-info {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for about boxes */
    justify-content: center;
    padding: 0 1rem; /* Added padding to prevent stretching */
   }
   .about-data {
    width: 50%;
   }
  .about-description {
    padding: 0 5rem;
  }
  .skills-container {
    width: 100px;
    justify-content: center;
  }
  .skills-content {
    padding: 2rem 4rem;
    align-items: center;
    justify-content: center;
    display: grid;
  }
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for services */
    justify-content: center;
  }
  .services-modal-content {
    width: 500px;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
  }
  .services-modal-description {
    padding: 0 3.5rem;
  }
  .work-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for work cards */
    justify-content: center;
  }
  .work-img {
    width: 100%; /* Ensure image fills its container */
    height: auto;
  }

  /* Footer for 576px+ */
  .footer-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for main sections */
      column-gap: 2rem;
      row-gap: 2rem; /* Add row gap for stacked rows */
      padding-bottom: 2rem; /* Adjust padding for better spacing */
  }
  .footer_content {
      text-align: left; /* Align text left within columns */
  }
  .footer_list {
      align-items: flex-start; /* Align list items to start */
  }
  .footer_social {
      justify-content: flex-start; /* Align social icons to start */
  }
  .footer_copy {
      text-align: center; /* Keep copy centered */
      grid-column: 1 / -1; /* Make copy span all columns */
      margin-top: 2rem; /* Adjust spacing */
  }
}

/* For large devices (768px up) */
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding: 6rem 0 2rem; /* More vertical space for sections */
  }
  .section-subtitle {
    margin-bottom: 4rem; /* Adjust subtitle spacing */
  }
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* Header & Navigation */
  .header {
    top: 0;
    position: sticky; /* Make header sticky */
    box-shadow: none; /* Remove shadow if sticky, or define a new one */
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* Taller header */
  }
  .nav-menu {
    position: static; /* No longer fixed at bottom */
    background: none; /* No background for menu */
    width: initial; /* Auto width */
    backdrop-filter: none; /* Remove blur */
    border-radius: 0; /* No border radius */
    padding: 0; /* No padding */
  }
  .nav-list {
    display: flex;
    column-gap: 2rem; /* Horizontal spacing for links */
  }
  .nav-link {
    color: var(--text-color); /* Link color */
    font-size: var(--normal-font-size);
  }
  .change-theme {
    font-size: 1.5rem; /* Larger theme icon */
    margin-left: auto; /* Push theme icon to right */
  }
  /* Remove mobile specific styles for nav-menu here */
  .nav-list {
    margin-left: auto; /* Push nav list to the right */
  }

  /* Home Section */
  .home-container {
    /* Removed grid-template-columns to ensure single column layout */
    align-items: center;
    column-gap: initial; /* Reset column gap */
    padding-top: 5rem;
    display: flex; /* Use flexbox to center content vertically/horizontally */
    flex-direction: column; /* Stack items vertically */
  }
  .home-data {
    text-align: center; /* Center text */
  }
  .home-img {
    width: 280px; /* Larger image */
    margin: 0 auto; /* Center the image */
  }
  .home-handle {
    width: 320px; /* Larger handle */
    height: 480px;
    margin: 0 auto; /* Center the handle */
  }
  .home-buttons {
    justify-content: center; /* Center buttons */
  }
  .home-social {
    left: 0; /* Reset position */
    bottom: initial; /* Reset position */
    position: static; /* No longer absolute */
    order: 1; /* Place social below content if using flex column */
    display: flex; /* Make social items horizontal */
    column-gap: 1rem; /* Spacing between social links */
    margin-top: 1.5rem; /* Space between buttons and social */
    justify-content: center; /* Center social links */
  }
  .home-social::after {
    display: none; /* Remove line */
  }
  .home-scroll {
    display: none; /* Hide scroll indicator on desktop */
  }

  /* About Section */
  .about-container {
    /* Removed grid-template-columns to ensure single column layout */
    align-items: center;
    column-gap: initial; /* Reset column gap */
    display: flex; /* Use flexbox to center content vertically/horizontally */
    flex-direction: column; /* Stack items vertically */
  }
  .about-img {
    width: 280px; /* Decreased size for 768px+ */
    margin: 0 auto; /* Center the image */
  }
  .about-data {
    text-align: center; /* Center text */
  }
  .about-info {
    justify-content: center; /* Center about boxes */
  }
  .about-description {
    padding: 0; /* Remove padding */
  }

  /* Skills Section */
  .skills-container {
    grid-template-columns: repeat(2, 1fr); /* Two columns for skills */
    column-gap: 3rem;
    padding-top: 2rem;
  }
  .skills-content {
    padding: 2rem 3rem; /* Adjust padding */
  }
  .skills-title {
    text-align: left; /* Align title to left */
  }
  .skills-box {
    justify-content: flex-start; /* Align skills group to left */
  }

  /* Services Section */
  .services-container {
    grid-template-columns: repeat(3, 1fr); /* Three columns for services */
    column-gap: 2rem;
    padding-top: 2rem;
  }
  .services-card {
    padding: 3rem 1rem 1.5rem; /* Adjust padding */
  }
  .services-modal-content {
    width: 700px; /* Larger modal for desktop */
  }
  .services-modal-description {
    padding: 0 4rem; /* Adjust padding */
  }

  /* Work Section */
  .work-container {
    grid-template-columns: repeat(3, 1fr); /* Three columns for work cards */
    column-gap: 2rem;
    padding-top: 2rem;
  }
  .work-item {
    padding: 0.5rem 1rem; /* Larger filter items */
  }

  /* Testimonial Section */
  .testimonial-container {
    padding-top: 2rem;
  }
  .testimonial-card {
    margin-bottom: 0; /* Remove extra bottom margin from mobile */
  }
  .swiper-pagination-bullet {
    display: none; /* Hide bullets if not needed with desktop layout */
  }

  .contact-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
  .contact-info {
    gap: 1.5rem; /
  }
  .contact-title {
    text-align: left; /* Align title to left */
  }
  .contact-form-div {
    margin-bottom: 2.5rem; /* Adjust form input spacing */
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr); 
    column-gap: 2.5rem;
    padding-bottom: 2rem; 
  }
}

/* For larger devices (1024px up) */
@media screen and (min-width: 1024px) {
  :root {
    --big-font-size: 48px;
    --h1-font-size: 32px;
    --h2-font-size: 28px;
    --h3-font-size: 22px;
    --normal-font-size: 16px;
    --small-font-size: 14px;
    --smaller-font-size: 13px;
  }
  .container {
    max-width: 1024px; 
  }
  .section-title {
    margin-top: -2rem;
  }
  .home-handle {
    width: 380px; 
    height: 560px;
  }
  .home-img {
    width: 320px; 
  }

  .about-img {
    width: 350px; 
  }

  .contact-form-area {
    height: 18rem; 
  }
  .footer-container {
      grid-template-columns: repeat(4, 1fr);
      column-gap: 3.5rem;
  }
}