

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
  background-color: #343A40;
  padding: 10px;
  color: #fff;
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Added flex-wrap */
}

.navigation ul li {
  margin-right: 10px;
  margin-bottom: 10px; /* Added margin-bottom */
}

.navigation ul li:last-child {
  margin-right: 0;
}

.navigation ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s;
}

.navigation ul li:hover {
  transform: scale(1.1);
}

.navigation ul li a:hover {
  background-color: #0078D7;
}

/* Mobile styles */
@media only screen and (max-width: 767px) {
  .navigation ul {
    align-items: flex-start; /* Changed align-items to flex-start */
  }
}


/*  */



/* About */

.about-content img {
  opacity: 0;
  border-radius: 50%;
  transform: scale(0) rotateZ(-20deg);
  animation: image-animation 3s cubic-bezier(.2, .7, .8, .5) forwards;
}

.about-content .greeting {
  width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  border-right: .15em solid;
  font-size: 1.5em;  /* Bigger font size */
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);  /* Text gradient */
  background-clip: text;
  -webkit-background-clip: text;  /* For Safari */
  color: transparent;
  animation: typing 8s steps(40, end),
             blink-caret .75s step-end infinite,
             fade-out 1s 4s forwards;  /* Fade out after 4 seconds */
}

@keyframes image-animation {
  0% {
    opacity: 0;
    transform: scale(0) rotateZ(-20deg);
  }
  20% {
    opacity: 0.5;
    transform: scale(1) rotate3d(1, 0, 0, -10deg);
  }
  40% {
    opacity: 1;
    transform: scale(1.1) rotateZ(0);
  }
  60% {
    opacity: 1;
    transform: scale(0.9) rotateZ(0);
  }
  80% {
    opacity: 1;
    transform: scale(1.05) rotateZ(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
  animation-duration: 4s; 
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
  animation-duration: 1s; 
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
  animation-duration: 2s; 
}





/* Hero section styles */
.hero-section {
  background-image: url('https://cdn.pixabay.com/photo/2018/02/01/14/09/field-3123271_1280.jpg');
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover; 
  height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  color: white; 
}

.hero h1 {
  font-size: 2.5em; 
  margin-bottom: 0.5em; 
}

.hero p {
  font-size: 1.2em; 
  margin-bottom: 1em; 
}

.hero .cta-btn {
  padding: 0.5em 1em; 
  background-color: #fdcb6e;  
  color: black; 
  text-decoration: none; 
  transition: background-color .2s; 
}

.hero .cta-btn:hover {
  background-color: #e8b85d; /
}

/* About section styles */
.about-section {
    background-color: #F3F2F1;
    padding: 50px;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/* project*/
/*  color scheme */
:root {
  --text-dark: #333;
  --text-light: #555;
  --color-1: #f25022; /* Red */
  --color-2: #7fba00; /* Green */
  --color-3: #00a4ef; /* Blue */
  --color-4: #ffb900; /* Yellow */
}

/* Add Keyframes for Animations */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Projects section styles */
.projects-section {
  background-color: #f7f7f7;
  padding: 50px;
  text-align: center;
  animation: slideIn 1s forwards;
}

.projects-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.project {
  position: relative;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: transform 1s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-content {
  padding: 20px;
  opacity: 1;
}

.project h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.project p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.project a {
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.project:nth-child(1) a {
  background-color: var(--color-1);
}

.project:nth-child(2) a {
  background-color: var(--color-2);
}

.project:nth-child(3) a {
  background-color: var(--color-3);
}

.project:nth-child(4) a {
  background-color: var(--color-4);
}

.project:nth-child(5) a {
  background-color: var(--color-1);
}

.project:nth-child(6) a {
  background-color: var(--color-2);
}

.project:nth-child(7) a {
  background-color: var(--color-3);
}

.project:nth-child(8) a {
  background-color: var(--color-4);
}

.project:nth-child(9) a {
  background-color: var(--color-1);
}

.project:nth-child(10) a {
  background-color: var(--color-2);
}

.project:nth-child(11) a {
  background-color: var(--color-3);
}

.project:nth-child(12) a {
  background-color: var(--color-4);
}

.project:nth-child(13) a {
  background-color: var(--color-1);
}

.project:nth-child(14) a {
  background-color: var(--color-2);
}

.project:nth-child(15) a {
  background-color: var(--color-3);
}
.project:nth-child(16) a {
  background-color: var(--color-4);
}

.project:nth-child(17) a {
  background-color: var(--color-1);
}
.project:nth-child(18) a {
  background-color: var(--color-2);
}
.project:nth-child(19) a {
  background-color: var(--color-3);
}
.project:nth-child(20) a {
  background-color: var(--color-4);
}
.project:nth-child(21) a {
  background-color: var(--color-1);
}
.project:nth-child(22) a {
  background-color: var(--color-2);
}
.project:nth-child(23) a {
  background-color: var(--color-3);
}
.project:nth-child(24) a {
  background-color: var(--color-4);
}
.project:nth-child(25) a {
  background-color: var(--color-1);
}
.project:nth-child(26) a {
  background-color: var(--color-2);
}
.project:nth-child(27) a {
  background-color: var(--color-3);
}
.project:nth-child(28) a {
  background-color: var(--color-4);
  }
.project:nth-child(29) a {
    background-color: var(--color-1);
}
.project a:hover {
  filter: brightness(1.2);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project.open .project-overlay {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.project.open .project-overlay .project-content {
  transform: rotateY(180deg);
  transition: transform 1s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.project-overlay .project-content {
  position: relative;
  z-index: 1;
  transform: rotateY(0deg);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Icon Styles */
.social-icons {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background-color: #0056b3;
}

.social-icons i {
  font-size: 18px;
}

.social-icons .fa {
  transform: translateY(1px);
}
/* Skills section styles */
.skills-section {
  background-color: #F3F2F1;
  padding: 50px;
  text-align: center;
}

.skills-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.skill {
  margin-bottom: 40px;
}

.skill h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.skill ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.skill ul li {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 10px;
  background-color: #EFEFEF;
  color: #333;
  border-radius: 5px;
}

/* Skills & Expertise */
.skills-section .max-width {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.skills-section .title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.skills-section .skills-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.skills-section .column {
  flex-basis: calc(50% - 20px);
  margin-bottom: 40px;
}

.skills-section .text {
  font-size: 18px;
  line-height: 1.5;
  color: #777;
}

.skills-section .skill-list {
  margin-top: 20px;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills-section .skill-list li {
  flex-basis: calc(25% - 10px);
  margin-bottom: 0;
  list-style: none;
}

.skills-section .eb-progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.skills-section .eb-progress-bar-wrapper .eb-progress-bar {
  --size: 4.5rem;
  --inner-bg: #f2f2f2;
  --primary-color: var(--col);
  --secondary-color: #dfe0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  font-size: calc(var(--size) / 5);
  color: var(--primary-color);
  border-radius: 50%;
  background-image: conic-gradient(var(--secondary-color) 0 var(--value), var(--inner-bg) 0 calc(var(--value) + 2), var(--inner-bg) 0 100%);
  border: solid 0.2rem var(--primary-color);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4), inset 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 2px rgba(0, 0, 0, 0.2), 0 9px 4px rgba(0, 0, 0, 0.1), inset 0 2px 1px rgba(255, 255, 255, 0.55);
  animation: eb-progress 2s 1 forwards;
  position: relative;
}

.skills-section .eb-progress-bar-wrapper .eb-progress-bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress-value);
  height: 100%;
  background-color: var(--primary-color);
  border-radius: inherit;
}

.skills-section .eb-progress-bar-wrapper .eb-progress-bar i {
  position: absolute;
  font-size: 1.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
}

.skills-section .eb-progress-bar-wrapper .eb-progress-bar h3 {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "integralcfmedium", sans-serif;
  font-size: 14px;
  color: #333;
}

.skills-section .eb-progress-bar-wrapper .eb-progress-bar .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

@keyframes eb-progress {
  to {
    --progress-value: var(--value);
  }
}


/* Certification Verification Links */
.certifications {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.certifications .max-width {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.certifications .title {
  text-align: center;
  color: #333;
  font-size: 28px;
  margin-bottom: 40px;
}

.cert-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cert-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.cert-card .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cert-card .cert-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cert-card .cert-details {
  margin-top: auto;
}

.cert-card .cert-info,
.cert-card .cert-date {
  color: #777;
  font-size: 14px;
  margin-bottom: 5px;
}

.cert-card .cert-link a {
  color: #007bff;
  text-decoration: none;
}

.cert-card .cert-link a:hover {
  text-decoration: underline;
}

.cert-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.cert-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cert-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.cert-card:hover {
  background-color: #f9f9f9; /* Light gray color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cert-card:hover .cert-title {
  color: #007bff; /* Blue color */
}

.cert-card:hover .cert-details,
.cert-card:hover .cert-info,
.cert-card:hover .cert-date,
.cert-card:hover .cert-link a {
  color: #555; /* Dark gray color */
}

.cert-card:hover .cert-link a {
  color: #4caf50; /* Green color */
}



/* Blog section styles */
.blog-section {
    background-color: #fff;
    padding: 50px;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.blog-post {
    margin-bottom: 40px;
}

.blog-post h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.blog-post p {
    margin-bottom: 20px;
}

.blog-post a {
    display: inline-block;
    background-color: #0078D7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-post a:hover {
    background-color: #005a9e;
}

/* Contact section styles */
  .contact-section {
      background-color: #F3F2F1;
      padding: 50px;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .contact-section p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .contact-section a {
      display: inline-block;
      background-color: #0078D7;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .contact-section a:hover {
      background-color: #005a9e;
    }

    .contact-form {
      max-width: 400px;
      margin: 0 auto;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }

    .contact-form button[type="submit"] {
      background-color: #4CAF50;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

/* Projects */
.projects {
  background-color: #F5F5F5;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.max-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.carousel {
  display: flex;
  flex-direction: row; /* Show three items in a row */
  animation: carousel-rotate 60s linear infinite; /* Increase animation duration */
  height: fit-content;
  align-items: center;
  gap: 30px; /* Add gap between carousel items */
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: calc(100% / 3 - 30px); /* Adjust width to fit three items with gap */
  padding: 20px;
  opacity: 0.4; /* Set opacity for faded items */
  transform: translateY(100%);
  animation: carousel-animate 30s ease-in-out infinite; /* Adjust animation duration */
}

.card:nth-child(2) {
  opacity: 1; /* Set opacity to 1 for the middle item */
}

.card:nth-child(odd) {
  animation-direction: reverse;
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes carousel-rotate {
  0% {
    transform: translateX(0); /* Change translateY to translateX for horizontal movement */
  }
  100% {
    transform: translateX(calc(-100% * 4)); /* Adjust distance for three visible items */
  }
}

@keyframes carousel-animate {
  0% {
    opacity: 0.4; /* Set opacity for faded items */
    transform: translateY(100%);
  }
  10% {
    opacity: 1; /* Set opacity to 1 for the middle item */
  }
  90% {
    opacity: 1; /* Set opacity to 1 for the middle item */
  }
  100% {
    opacity: 0.4; /* Set opacity for faded items */
    transform: translateY(-100%);
  }
}



/* Analytics */
.analytics-container {
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.analytics-container h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.dashboard {
  margin-top: 40px;
}

.analytics-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s;
}

.analytics-item:hover {
  background-color: #f8f8f8;
  transform: scale(1.02);
}

.analytics-item:last-child {
  border-bottom: none;
}

.analytics-item span {
  font-weight: bold;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}

.fade-in.show {
  opacity: 1;
}

.chart-container {
  margin-top: 20px;
  height: 300px;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.analytics-section {
  background-color: #fff;
  padding: 40px 0;
}

.chart-container:hover {
  transform: scale(1.05);
}

.chart-container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 1s;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .analytics-container {
    padding: 10px;
  }
  .analytics-container h1 {
    font-size: 20px;
  }
}


/* Personal Development */
.personal-development {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.development-heading {
  flex-basis: 100%;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 1s ease-out forwards;
}

.development-item {
  flex-basis: calc(33.33% - 40px);
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 1s ease-out forwards;
}

.development-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0078D7;
}

.development-item p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #555;
}

/* Animation on scroll */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for heading */
.development-heading {
  animation-delay: 0.3s;
}

/* Animation for each development item */
.development-item:nth-child(1) {
  animation-delay: 0.4s;
}

.development-item:nth-child(2) {
  animation-delay: 0.6s;
}

.development-item:nth-child(3) {
  animation-delay: 0.8s;
}

.development-item:nth-child(4) {
  animation-delay: 1s;
}

.development-item:nth-child(5) {
  animation-delay: 1.2s;
}


/* Footer styles */



/* Chat bot CSS */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  z-index: 9999;
  opacity: 1;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.chat-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

#minimize-btn,
#close-btn {
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chat-log {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.user-input {
  display: flex;
  align-items: center;
  padding: 10px;
}

.user-input input[type="email"],
.user-input input[type="text"] {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.user-input button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.user-input button:hover {
  background-color: #0056b3;
}

.chat-message {
  background-color: #fff;
  color: #333;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.bot-message {
  background-color: #f5f5f5;
  color: #333;
}

.close-btn {
  position: relative;
  top: -5px;
}

.close-btn:hover {
  background-color: #eaeaea;
}
/* Autosize */
/* Styles for larger screens */
@media (min-width: 992px) {
  body {
    /* Add specific styles for larger screens */
    font-size: 16px;
    line-height: 1.5;
  }

  /* Add other specific styles for larger screens */
  .title {
    font-size: 28px;
  }
}

/* Styles for medium screens */
@media (max-width: 991px) {
  body {
    /* Add specific styles for medium screens */
    font-size: 14px;
    line-height: 1.4;
  }

  /* Add other specific styles for medium screens */
  .title {
    font-size: 24px;
  }
}

/* Styles for smaller screens */
@media (max-width: 767px) {
  body {
    /* Add specific styles for smaller screens */
    font-size: 12px;
    line-height: 1.3;
  }

  /* Add other specific styles for smaller screens */
  .title {
    font-size: 20px;
  }

  /* Additional improvements for smaller screens */
  img {
    max-width: 100%;
    height: auto;
  }

  nav {
    /* Implement a mobile-friendly navigation menu */
    /* Example styles: */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  li {
    flex: 0 0 100%;
    text-align: center;
  }

  li a {
    padding: 10px;
    /* Adjust padding to increase tap target size */
  }

  .user-input input[type="email"],
  .user-input input[type="text"] {
    /* Adjust input styles for better usability */
    font-size: 16px;
    padding: 12px;
  }

  .user-input button {
    /* Increase button size and add more spacing */
    font-size: 16px;
    padding: 12px 20px;
    margin-top: 10px;
  }
}

/* Styles for extra small screens */
@media (max-width: 575px) {
  body {
    /* Add specific styles for extra small screens */
    font-size: 10px;
    line-height: 1.2;
  }

  /* Add other specific styles for extra small screens */
  .title {
    font-size: 18px;
  }

  /* Additional improvements for extra small screens */
  .user-input input[type="email"],
  .user-input input[type="text"] {
    /* Further adjust input styles for better usability */
    font-size: 14px;
    padding: 10px;
  }

  .user-input button {
    /* Further increase button size and add more spacing */
    font-size: 14px;
    padding: 10px 16px;
    margin-top: 8px;
  }
}


/* End Autosize */
