@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #ec2400;
  --secondary-color: #212429;
  --text-light: #d1d5db;
  --white: #ffffff;
  --max-width: 1200px;
}

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

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

ul {
  list-style: none;
}

/*body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0b1b1f, #0a1214);
} */

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: linear-gradient(
    135deg,
    #ec0000 0%,
    #ec2400 20%,
    #ec5300 40%,
    #ec9b00 60%,
    #ecca00 80%
  );
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(
    330deg,
    #ff0d00,
    #ff624a
  ); /* Adjust gradient angle and colors */
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
  outline: none;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

/*
.beta-banner {
  background: linear-gradient(
    135deg,
    #4e2f2f 0%,
    #ec2400 20%,
    #4d0000 40%,
    #c88302 60%,
    #3c0101 80%
  );
  color: #ffffff;
  padding: 10px;
  text-align: center;
}
*/

.beta-banner {
  background: linear-gradient(
    135deg,
    #4e2f2f 0%,
    #6e1100 20%,
    #4d0000 40%,
    #5c3c00 60%,
    #3c0101 80%
  );
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

/*
.dev-credit {
  position: fixed;
  top: 20px;
  right: 0px;
  background-color: #000000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px 0 0 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  z-index: 1000;
}

.dev-credit:hover {
  background-color: #000000;
}

.credit-text {
  margin-right: 5px;
  color: white;
}

.dev-credit .btn {
  display: none;
  background-color: #fff;
  color: #000000;
  padding: 5px 10px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
}

.dev-credit:hover .btn {
  display: inline-block;
}
*/

/*
.sticky-banner {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: #ff0000;
  padding: 5px;
  border-radius: 10px 0 0 10px;
  transition: width 0.5s ease-in-out;
  z-index: 1000;
}

.sticky-banner:hover {
  width: 200px; 
}
  */

.sticky-chatbox {
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 20px;
  box-shadow: 0 0 5px rgb(229, 255, 0);
  transition: backgrounrgba(229, 255, 0, 0.692) ut;
  z-index: 1000;
}

.sticky-chatbox img {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 0%;
  cursor: pointer;
}

.sticky-chatbox:hover {
  background-color: #e3e018;
}

/* CHAT CARD */

.chat_card {
  position: fixed;
  bottom: 80px; /* Adjust based on chatbox position */
  right: 10px;
  display: none; /* Initially hidden */
  z-index: 999; /* Below the chatbox */
}

.sticky-chatbox:hover + .chat_card,
.chat_card:hover {
  display: block;
  opacity: 1;
}

.chat_card .profile__card {
  position: relative;
  max-width: 400px;
  padding: 0.7rem;
  text-align: center;
  border-radius: 20px;
  background-color: white;
  box-shadow: 10px 10px 50px #9ca3af;
}

.chat_card .profile__card img {
  max-width: 80px;
  border-radius: 100%;
  padding: 0.1rem 0;
}

.chat_card .name {
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

.chat_card .designation {
  font-size: 0.8rem;
  color: gray;
}

.chat_card .social__icons {
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.chat_card .icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.chat_card .icon img {
  max-width: 100%;
  border-radius: 20%;
}

.chat_card .icon:hover {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.chat_card .view__profile {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  color: white;
  background-color: rgba(68, 68, 255, 0.71);
  border-radius: 1rem;
  border: 2px solid rgba(68, 68, 255, 0.797);
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}

.chat_card .view__profile:hover {
  color: var(--extra-light);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.chat_card .view__profile .button-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0.2rem;
}

/* CHAT CARD END */

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.nav__logo img {
  display: flex;
  max-width: 25%;
  max-height: 50%;
}

.nav__logo span {
  display: none;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-size: 1.2rem;
  color: var(--white);
}

.nav__links a:hover {
  color: var(--secondary-color);
}

.header-nav-container {
  font-family: "Poppins", sans-serif;
  background-image: url("../images/bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%; /* Adjust width as needed */
  height: 105vh;
}

.header__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-block: 5rem 2rem;
  padding-inline: 1rem;
  display: grid;
  gap: 2rem;
}

.header__image img {
  width: 70%;
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  border-radius: 50%;
  border: 2px solid #000;
  margin-bottom: 20%;
}

.header__content {
  overflow: hidden;
  text-align: center;
}

.header__content h2 {
  position: relative;
  max-width: fit-content;
  margin-right: auto;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: bolder;
  color: #ec9b00;
  text-align: right;
  /* Shadow effect */
  text-shadow: 2px 2px 4px rgba(236, 83, 0, 0.6);
}

.header__content h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(calc(75% - 1rem), -50%);
  height: 3px;
  width: 150%;
  background-color: var(--white);
}

.header__content h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 3.5rem;
  margin-bottom: 2%;
}

.h1__span-1 {
  font-size: 1.9rem;
  color: white;
}

.h1__span-2 {
  font-size: 2rem;
  font-weight: 500;
  color: #ec2400;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.header__btn {
  display: flex;
  gap: 1rem;
}

.header__content .btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1.1rem;
  border-radius: 0.7rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn-resume {
  color: var(--white);
  background: linear-gradient(
    330deg,
    #ff0d00,
    #ff624a
  ); /* Adjust gradient angle and colors */
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
}

.btn-resume:hover {
  color: rgb(35, 66, 82);
  background-color: #ec5300;
}

.btn-contact {
  color: var(--white);
  background: linear-gradient(
    330deg,
    #ffae00,
    #ff4a4a
  ); /* Adjust gradient angle and colors */
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
}

.btn-contact:hover {
  color: rgb(35, 66, 82);
  background-color: #ec5300;
}

.socials {
  padding-block: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  font-size: 1.5rem;
  color: var(--text-light);
}

.socials a:hover {
  color: var(--primary-color);
}

/* home */
.home {
  padding: 5rem;
  height: 110vh;
  /*background: linear-gradient(135deg, #0b1b1f, #0a1214);*/
  background: linear-gradient(
    135deg,
    #ec0000 0%,
    #ec2400 20%,
    #ec5300 40%,
    #ec9b00 60%,
    #ecca00 80%
  );
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-title {
  font-size: 3rem; /* Adjust size as needed */
  font-weight: bold;
  text-transform: uppercase;
  color: #ecca00; /* Your desired color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow */
  margin-bottom: 2rem; /* Adjust spacing as needed */
}

.home {
  position: relative;
  background-color: #0b1b1f; /* Main background color */
  padding: 5rem;
  overflow: hidden; /* Hide overflowing shadows */
}

.home::before,
.home::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.2),
    transparent
  ); /* Golden shadow */
  pointer-events: none; /* Prevent interaction with pseudo-elements */
}

.home::before {
  top: 0;
  left: 0;
  transform: skewY(-12deg) translateX(-50%); /* Adjust angle of shadow */
  transform-origin: top left;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

.home::after {
  bottom: 0;
  right: 0;
  transform: skewY(160deg) translateX(50%); /* Adjust angle of shadow */
  transform-origin: bottom right;
  box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
}

.section__subheader {
  font-size: 1rem;
  font-weight: 500;
  color: #ec9b00;
}

.about .section__subheader {
  font-size: 1rem;
  font-weight: 600;
  color: #ffea00;
}

.section__header {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.7rem;
}

.section__description {
  margin-bottom: 2rem;
}

.homecontainer {
  position: relative;
  max-width: 200vh;
}

.homecontainer .slide-container .slide {
  min-height: 50vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 9%;
  padding-bottom: 70px;
  padding-top: 70px;
  border-radius: 1%;
}

.homecontainer .slide-container .slide .content {
  flex: 1 1 350px;
  animation: slideContent 0.4s linear 0.6s backwards;
}

@keyframes slideContent {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
}

.homecontainer .slide-container .slide .image {
  flex: 1 1 500px;
}

.homecontainer .slide-container .slide .image img {
  width: 100%;
  animation: slideImage 0.4s linear;
  display: flex;
}

@keyframes slideImage {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

.homecontainer .slide-container .slide .content h3 {
  font-size: 35px;
  color: #333;
}

.homecontainer .slide-container .slide .content p {
  font-size: 16px;
  color: #666;
  padding: 10px 0;
}

.homecontainer .slide-container .slide .content .btn {
  margin-top: 10px;
  display: inline-block;
  background: #ff4e4e;
  color: #fff;
  font-size: 17px;
  padding: 9px 40px;
  border-radius: 1rem;
}

.homecontainer .slide-container .slide .content .btn:hover {
  background: #333;
}

.homecontainer .slide-container {
  display: none;
}

.homecontainer .slide-container.active {
  display: block;
}

.homecontainer .slide-container:nth-child(1) .slide,
.homecontainer .slide-container:nth-child(2) .slide,
.homecontainer .slide-container:nth-child(3) .slide,
.homecontainer .slide-container:nth-child(4) .slide {
  background: linear-gradient(120deg, #f4f3e1a0 50%, #00000080 30.1%);
  border-radius: 2rem;
}

.homecontainer #prev,
.homecontainer #next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #333;
  height: 50px;
  width: 40px;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
  font-weight: bolder;
}

.homecontainer #prev:hover,
.homecontainer #next:hover {
  background: #666;
}

.homecontainer #prev {
  left: 20px;
}

.homecontainer #next {
  right: 20px;
}

/* home section end */

.background-container {
  background-image: url("../images/bg1custom1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%; /* Ensure the container covers the viewport height */
  width: 100%; /* Ensure the container spans the full width of its parent */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  padding: 1rem 0; /* Adjust padding as necessary */
}

.experience__container {
  display: grid;
  gap: 2rem;
}

.experience__image img {
  max-width: 400px;
  margin: auto;
  border-radius: 3%;
  margin-left: 15%;
}

.experience__container .section__header {
  color: white;
}

.experience__container .section__description {
  color: white;
}

.header__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5%;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.header__stats__card {
  display: flex;
  align-items: center;
  min-width: 270px;
  padding: 0.5rem 0.5rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    #c90000 0%,
    #b71b00 20%,
    #cd4800 40%,
    #ba7901 60%,
    #6b5b00 80%
  );
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
  border-radius: 1rem;
  transition: all 0.3s ease; /* Smooth transition for resizing */
}

.card-image {
  width: 80px; /* Adjust size as needed */
  height: 80px; /* Adjust size as needed */
  margin-right: 0.2rem;
  border-radius: 50%; /* Makes the image circular */
}

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

.card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0; /* Remove default margin */
}

.card-content .subheader {
  font-size: 0.9rem;
  color: var(--text-light);
}

.card-content .subheading {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about {
  background-color: rgba(255, 255, 255, 0);
  margin-top: 16vh;
}

.about__container {
  padding-block: 0;
}

.about__grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(
    330deg,
    #ffcc00,
    #ff6666
  ); /* Adjust gradient angle and colors */
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
  transform: translateY(-5rem);
  border-radius: 10px;
}

.about__content .section__header {
  margin-bottom: 1rem;
  color: white;
}

.about__content .para {
  color: white;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about__item span {
  padding: 13px 20px;
  font-size: 1.75rem;
  color: #ec5300;
  background-color: var(--white);
  border-radius: 5px;
}

.about__item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.services {
  padding: 3rem 0;
  background: linear-gradient(
    135deg,
    #4e2f2f 0%,
    #6e1100 20%,
    #4d0000 40%,
    #5c3c00 60%,
    #3c0101 80%
  );
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.services-header {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ec9500;
}

.services-subheader {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.services-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 300px;
  padding: 1rem;
}

.services-card img {
  max-width: 85%;
  height: auto;
  border-bottom: 2px solid #ec5300;
}

.services-card h4 {
  font-size: 1.2rem;
  color: #ec5300;
  margin: 0.5rem 0;
}

.services-card p {
  font-size: 1rem;
  color: #555;
}

.services span {
  font-weight: 700;
  color: #ec0000;
  font-size: 1rem;
}

.services-card:hover {
  transform: scale(1.05);
}

.services-contact {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: white;
}

.services-contact .btn-contact {
  color: #fff;
  background-color: #ec5300;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.services-contact .btn-contact:hover {
  background-color: #b71b00;
}

/* ===== FOOTER =====*/
.footer {
  background: linear-gradient(
    135deg,
    #ec0000 0%,
    #ec2400 20%,
    #ec5300 40%,
    #ec9b00 60%,
    #ecca00 80%
  );
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.5);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.footer__social {
  margin-bottom: 0.7rem;
}
.footer__icon {
  font-size: 1.8rem;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.footer__copy {
  font-size: var(--smaller-font-size);
  margin-bottom: 0.5rem;
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__logo span {
    display: flex;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3rem;
    background-color: transparent;
    transform: none;
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-block: 2rem;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content {
    text-align: left;
  }

  .socials {
    justify-content: flex-start;
  }

  .experience__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__stats {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .beta-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px;
    z-index: 999;
  }
  .beta-banner p {
    font-size: 10px;
  }

  /*
  .dev-credit {
    top: 100px;
  }
  

  .sticky-banner {
    padding: 5px;
  }

  .sticky-banner:hover {
    width: 100px; 
  }
      */

  .sticky-chatbox {
    bottom: 30px;
    right: 10px;
  }

  .chat_card {
    bottom: 100px; /* Adjust based on chatbox position */
    right: 10px;
  }

  .nav__logo img {
    max-width: 35%;
    max-height: 50%;
  }

  .nav__header {
    background: linear-gradient(
      135deg,
      #590000 0%,
      #ec2400 20%,
      #6c2600 40%,
      #ec9b00 60%,
      #8b7600 80%
    );
  }

  .nav__links {
    background-color: rgba(22, 35, 57, 0.826);
  }

  .header__content h2::before {
    left: 68%;
    width: 60%;
    background-color: var(--white);
  }

  .header-nav-container {
    height: 100vh;
  }

  .header__container {
    padding: 7rem 1rem;
  }

  .header__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .header__image img {
    margin-bottom: 1px;
    width: 50%;
  }

  .header__content h1 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    margin-bottom: 5%;
  }

  .h1__span-1 {
    font-size: 1.5rem;
  }

  .h1__span-2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
  }

  .home {
    height: 90vh;
    padding: 3rem;
  }

  .homecontainer .slide-container .slide {
    width: 100%; /* Take full width of the viewport */
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
    padding: 40px; /* Adjust padding as needed */
    margin: 0 auto; /* Center align the container */
    box-sizing: border-box; /* Include padding in total width */
  }

  .homecontainer #prev {
    left: 1%;
    top: 50%;
    width: 6%;
    height: 8%;
    border-radius: 30%;
    border: 1px solid #000;
  }

  .homecontainer #next {
    right: 1%;
    top: 50%;
    width: 6%;
    height: 8%;
    border-radius: 30%;
    border: 1px solid #000;
  }

  .homecontainer .slide-container:nth-child(1) .slide,
  .homecontainer .slide-container:nth-child(2) .slide,
  .homecontainer .slide-container:nth-child(3) .slide,
  .homecontainer .slide-container:nth-child(4) .slide {
    background: linear-gradient(140deg, #f4f3e1a0 85%, #0e233c9d 30.1%);
  }

  .header__stats__card {
    min-width: 100%; /* Full width on smaller screens */
    margin-bottom: 1rem; /* Add space between cards */
  }
  .services-header {
    font-size: 2rem;
  }

  .services-subheader {
    font-size: 1rem;
  }

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

  .services-card {
    width: 90%;
    margin-bottom: 1.5rem;
  }

  .services-contact .btn-contact {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header__stats__card {
    padding: 1rem; /* Reduce padding on very small screens */
    font-size: 0.8rem; /* Reduce font size on very small screens */
  }

  .header__stats__card h4 {
    font-size: 1.2rem; /* Adjust heading size */
  }

  .header__stats__card p {
    font-size: 0.8rem; /* Adjust paragraph size */
  }
}

@media (width < 900px) {
  .about__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .experience__image img {
    max-width: 300px;
    margin: auto;
    border-radius: 3%;
  }

  .experience__content .btn {
    display: block;
    margin: 0 auto;
    /* Centers the button horizontally */
  }
}
