/* General Reset */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: black;
  background-color: #fcfff7; /* Light background color */
}

/* Container Class to Add Margins */
.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* Additional responsive tweaks */
@media (max-width: 480px) {
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* Navbar */
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .default-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-grow: 1;
  justify-content: center;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #33658a;
}

/* Customer Login Button */
.navbar .customer-login {
  font-size: 14px;
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  background-color: #2f4858;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar .customer-login:hover {
  background-color: #33658a;
  color: white;
}

/* Hamburger Menu (Hidden by Default) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: transform 0.3s ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    width: 90%;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    color: white;
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Hero Section */
.hero-section {
  background: transparent;
  padding: 80px 20px 50px; /* Added side padding for mobile */
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 50px;
}

/* Hero Text */
.hero-text {
  flex: 1;
  max-width: 50%;
  text-align: justify;
  opacity: 0;
  animation: fadeInLeft 1s forwards 1s;
}

.hero-text h1 {
  font-size: 3rem;
  color: black;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: black;
}

/* Stats */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats div {
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s forwards 1.5s;
}

.stats h2 {
  font-size: 2rem;
  color: #2f4858;
}

.stats p {
  font-size: 1rem;
  color: black;
}

/* Hero Images */
.hero-images {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background-color: #8e9aaf;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 500px;
  opacity: 0;
  animation: fadeInRight 1s forwards 2s;
}

.hero-images::before,
.hero-images::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd700;
  border-radius: 50%;
  z-index: -1; /* Move the elements to the back */
}

.hero-images::before {
  top: -30px;
  left: 20px;
}

.hero-images::after {
  bottom: -30px;
  right: 20px;
}

.small-image {
  width: 150px; /* Increase size of small images */
  height: 150px;
}

.large-image {
  width: 100%; /* Increase size of large image */
  height: 100%;
  border-radius: 5px;
  object-fit: fill;
  box-shadow: 0 6px 12px rgba(47, 72, 88, 0.4);
}

/* Move images as per your request */
.small-image-top {
  position: absolute;
  top: -40px;
  right: -40px;
}

.small-image-bottom {
  position: absolute;
  bottom: -40px;
  left: -40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-section {
    padding-top: 50px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .stats {
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .hero-images {
    max-width: 100%;
    height: auto;
    padding: 20px;
  }
}

/* Default Image Styles */
.small-image {
  width: 120px;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .small-image {
    width: 80px; /* Reduce size for smaller screens */
  }

  .large-image {
    width: 200px; /* Reduce the large image size */
  }
}

@media (max-width: 480px) {
  .small-image {
    width: 60px; /* Further reduce size for very small screens */
  }

  .large-image {
    width: 150px;
  }
}

/* Keyframes for Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About Section */
.about-jeg {
  padding: 60px 0px; /* Increased padding for consistent spacing */
}

.about-jeg-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px; /* Space between rows and columns */
}

/* First Column (Text) */
.about-jeg-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-jeg-text h2 {
  font-size: 2.5rem; /* Increased font size */
  margin-bottom: 20px;
  position: relative;
}

.about-jeg-text h1 {
  font-size: 3.5rem; /* Increased font size */
  margin-bottom: 20px;
  position: relative;
}

/* Second Column (Description) */
.about-jeg-description {
  font-size: 0.9rem; /* Smaller font size for the description */
  color: #333;
  line-height: 1.5;
  padding: 20px;
}

.about-jeg-description p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Adjusted Layout for Consistency */
@media screen and (max-width: 768px) {
  .about-jeg-container {
    grid-template-columns: 1fr; /* Stack the columns on small screens */
    align-items: center;
  }

  .about-jeg-text h2 {
    font-size: 2rem; /* Adjust the title size on smaller screens */
    text-align: center;
  }

  .about-jeg-text h1 {
    font-size: 2rem; /* Adjust the title size on smaller screens */
    text-align: center;
  }

  .about-jeg-description {
    font-size: 1rem; /* Make the description text slightly larger on mobile */
  }
}

a {
  display: inline-block;
  text-decoration: none;
}

.container-box {
  width: auto;
  margin-top: 5em;
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
}

.card {
  width: auto; /* Fixed width for each card */
  height: 28rem; /* Fixed height for each card */
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem; /* Add bottom margin for spacing on smaller screens */

  &:nth-child(1) .box .icon .iconBox {
    background: #d3b19a;
  }
  &:nth-child(2) .box .icon .iconBox {
    background: #70b3b1;
  }
  &:nth-child(3) .box .icon .iconBox {
    background: #d05fa2;
  }
  &:nth-child(4) .box .icon .iconBox {
    background: #d05f5f;
  }

  .content {
    padding: 0.938rem 0.625rem;
    flex-grow: 1; /* Allow content to take the remaining space */
  }

  .content h3 {
    text-transform: capitalize;
    font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
  }

  .content p {
    margin: 0.625rem 0 1.25rem;
    color: #565656;
  }
}

.card-inner {
  position: relative;
  width: inherit;
  height: 60%; /* Adjust the height of the image section */
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;

  .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;

    .imgBox {
      position: absolute;
      inset: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .icon {
      position: absolute;
      bottom: -0.375rem;
      right: -0.375rem;
      width: 6rem;
      height: 6rem;
      background: var(--clr);
      border-top-left-radius: 50%;

      &:hover .iconBox {
        transform: scale(1.1);
      }

      &::before {
        position: absolute;
        content: "";
        bottom: 0.375rem;
        left: -1.25rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
      }

      &::after {
        position: absolute;
        content: "";
        top: -1.25rem;
        right: 0.375rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
      }

      .iconBox {
        position: absolute;
        inset: 0.625rem;
        background: #282828;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;

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

/* Responsive Styling */
@media (max-width: 768px) {
  .container-box {
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items */
    gap: 1.5rem; /* Reduce gap between cards */
  }

  .card .content {
    padding: 0.75rem 0.5rem; /* Adjust padding on mobile */
    height: 50%;
  }

  .card-inner {
    height: 50%; /* Reduce height of the image section */
  }

  .card-inner .box .icon {
    width: 4rem;
    height: 4rem;
    bottom: -0.25rem;
    right: -0.25rem;
  }

  .card-inner .box .iconBox {
    width: 3rem;
    height: 3rem;
  }
}

/* Additional responsive tweaks */
@media (max-width: 480px) {
  .container-box {
    gap: 1rem; /* Further reduce gap for very small screens */
  }

  .card .content h3 {
    font-size: 1.4rem; /* Adjust heading font size */
  }

  .card .content p {
    font-size: 0.9rem; /* Adjust paragraph font size */
  }

  .card-inner .box .icon {
    width: 3rem;
    height: 3rem;
  }

  .card-inner .box .iconBox {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* </ABOUT US> */

/* CONTACT US */

/* CONTACT US */

.container-contact {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-contact {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #2f4858;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #51758b);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #2f4858;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #2f4858;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #2f4858;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #2f4858;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #2f4858;
}

.icon {
  width: 28px;
  /* margin-right: 0.7rem; */
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #2f4858;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons i {
  color: #fff;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #51758b, #2f4858);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #2f4858;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #51758b, #2f4858);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  form {
    padding: 0px 0px 0px 0px;
  }

  .form-contact {
    grid-template-columns: 1fr; /* Stack form inputs vertically */
    padding: 0;
  }

  .contact-form {
    padding: 1.5rem;
    position: relative;
  }

  .contact-form .circle.one {
    width: 100px;
    height: 100px;
    top: 80px;
    right: -30px;
  }

  .contact-form .circle.two {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 20px;
  }

  .title {
    font-size: 1.2rem;
  }

  .input {
    font-size: 0.85rem;
  }

  .textarea.input {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
  }

  .contact-info {
    padding: 1.5rem 1.2rem;
    text-align: center;
  }

  .info {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .contact-info .title {
    font-size: 1.4rem;
  }

  .information {
    font-size: 0.85rem;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }

  .social-icons {
    display: contents;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.1rem;
  }

  .input {
    font-size: 0.8rem;
  }

  .textarea.input {
    font-size: 0.8rem;
  }

  .btn {
    font-size: 0.8rem;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-info .title {
    font-size: 1.2rem;
  }

  .information {
    font-size: 0.8rem;
  }

  .contact-info .text {
    font-size: 0.9rem;
  }

  .social-media {
    padding: 1rem 0 0 0;
  }
}

/* </CONTACT US> */

/* <SERVICES> */
.container-services {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0;
  padding: 0;
}

.section-services {
  font-family: "Poppins", sans-serif;
  padding-top: 115px;
  padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #ffd700;
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #2f4858;
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
  color: #282828;
}

/* SERVICES GRID */
.section-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.section-services .single-service {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.section-services .single-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #ffd700;
  border: 6px solid #2f4858;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #ffd700;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all 0.3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #ffd700;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color 0.3s;
  color: #2f4858;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color 0.3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ffd700;
  transition: background-color 0.3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .section-services .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }

  .section-services .single-service {
    padding: 30px 20px; /* Reduced padding for smaller devices */
  }

  .section-services .single-service .icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .section-services .single-service .title {
    font-size: 20px;
  }

  .section-services .single-service .description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .section-services {
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .section-services .services-grid {
    grid-template-columns: 1fr; /* Stack items vertically on mobile */
    gap: 20px;
  }

  .section-services .single-service {
    padding: 25px 15px;
  }

  .section-services .single-service .icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .section-services .single-service .title {
    font-size: 18px;
  }

  .section-services .single-service .description {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-services .header-section .title {
    font-size: 24px;
  }

  .section-services .header-section .description {
    font-size: 12px;
  }

  .section-services .single-service {
    padding: 20px 10px;
  }

  .section-services .single-service .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .section-services .single-service .title {
    font-size: 16px;
  }

  .section-services .single-service .description {
    font-size: 10px;
  }
}

/* </SERVICES> */

/* FOOTER */

.footer {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start; /* Ensure the items are aligned properly */
  flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.footer-column {
  flex: 1; /* Each column takes equal space */
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 10px;
  min-width: 220px; /* Prevent columns from becoming too narrow */
}

.footer-logo img {
  width: 150px;
  margin-bottom: 15px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0rem 0rem;
}

.subscribe-form input {
  padding: 8px;
  border-radius: 5px;
  border: none;
  width: 70%;
}

.subscribe-form button {
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #2f4858;
  color: white;
  border: none;
  cursor: pointer;
  width: 70%;
}

.subscribe-form button:hover {
  background-color: #33658a;
}

.footer-column h1 {
  font-size: 18px;
  color: #2f4858;
}

.footer-column p {
  margin: 10px 0;
}

.footer-column a {
  color: black;
  text-decoration: none;
}

.footer-column a:hover {
  color: #33658a;
}

.social-icons a {
  color: black;
  font-size: 20px;
  margin-right: 10px;
}

.social-icons a:hover {
  color: #33658a;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2f4858;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s;
}

.back-to-top:hover {
  background-color: #33658a;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer .container {
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center the content */
  }

  .footer-column {
    min-width: 100%; /* Full-width columns on smaller screens */
    padding: 15px 0; /* Add spacing between columns */
  }

  .footer-logo img {
    width: 120px;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%; /* Make input and button full width */
    padding: 10px; /* Increase padding for easier interaction */
  }

  .footer-column h1 {
    font-size: 1.2rem; /* Adjust font size for smaller screens */
  }

  .footer-column p {
    font-size: 0.9rem; /* Adjust font size */
  }

  .social-icons a {
    font-size: 18px; /* Make social icons slightly smaller */
    margin-right: 8px; /* Adjust spacing between icons */
  }

  .back-to-top {
    font-size: 18px; /* Adjust button size */
    padding: 8px; /* Adjust button padding */
  }
}

/* /FOOTER */

/* STATS */

.stats-container {
  display: flex;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  overflow: hidden;
}

.status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 1.5rem 1rem;
  gap: 0.5rem 1rem;
}

.stats-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #6b7280;
}

.stats-status {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: #374151;
}

.stats-value {
  flex: none;
  width: 100%;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 2.5rem;
  color: #111827;
}

[data-status="increment"] {
  color: #22c55e;
}

[data-status="decrement"] {
  color: #ef4444;
}

@media (min-width: 640px) {
  .container {
    width: max-content;
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status {
    width: 300px;
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: max-content;
  }
}

@media (min-width: 1280px) {
  .status {
    padding-inline: 2rem;
  }
}
