body {
  /* margin: 0; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

main {
  flex-grow: 1;
}

.padded-section {
  padding: 20px;
}

header {
  background: white;
  position: fixed;
  top: 0;
  left: 5px;
  right: 5px;
  z-index: 1000;
}

/* Header start */
#top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-section img {
  width: 240px;
}

nav ul {
  list-style-type: none;
  display: none;
  padding: 0;
  text-align: right;
}

nav ul li {
  margin-bottom: 10px;
  padding: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 700;
  font-size: 16px;
}

nav ul li a:hover {
  color: var(--cta);
}

#hamburger {
  display: block;
  cursor: pointer;
}

#hamburger .bar {
  background-color: black;
  height: 3px;
  margin: 5px 0;
  width: 30px;
}

nav ul.hidden {
  display: none;
}

/* Header End */

/* Shared Start */
.heading {
  text-align: center;
  padding-bottom: 20px;
}

.heading h2 {
  font-size: 2.3em;
  margin-bottom: 0.5em;
  text-align: center;
}

.sub-heading {
  font-size: 1.2em;
  text-align: center;
  max-width: 650px;
  margin: 1em auto;
  color: #666;
  line-height: 1.6;
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Shared End */

/* Landing page start */
#landing-page {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content h1,
.content p {
  text-align: center;
}

.buttons-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}

.buttons-mobile button {
  width: 100%;
}

.buttons-desktop {
  display: none;
}

button {
  height: 60px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
  width: 200px;
  background-color: var(--cta);
  font-weight: bold;
  color: white;
  border: none;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.5s ease;
  text-decoration: none;
}

.cta:hover {
  background-color: var(--cta-light);
}

.cta-wrapper {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.arrow {
  transition: margin-left 0.3s ease;
}

.cta:hover .arrow {
  margin-left: 15px;
}

.secondary {
  background-color: transparent;
  color: var(--cta);
  border: 2px solid var(--cta);
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary:hover {
  color: var(--cta-light);
  border: 2px solid var(--cta-light);
  background: rgb(245, 245, 245);
}

.cta-svg {
  margin-left: 10px;
}

.cta:hover .cta-svg {
  margin-left: 20px;
}

.cta-svg {
  transition: margin-left 0.3s ease;
}

/* Landing page end */

/* Project Showcase Start */
#project-showcase .heading {
  padding-top: 64px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-box {
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
}

.project-box img {
  max-width: 100%;
  height: auto;
  transition: ease-out 0.4s;
  cursor: pointer;
}

.project-box img:hover {
  transform: scale(1.03);
  transition: ease-in 0.2s;
}

/* Project Showcase End */

/* Services Start */
#services {
  padding-top: 0px;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.service-box {
  border: 1px solid #ddd;
  padding: 2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-box h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 0.5em;
}

.service-box p {
  font-size: 1em;
  color: #666;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
}

.service-box ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
  color: #555;
}

.service-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  font-size: 0.75em;
  color: #3498db;
  font-weight: normal;
}

.service-box a {
  padding: 0.2em 1.5em;
  margin: 2em 0;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
  color: var(--cta);
  border: 1px solid #b5d6cc;
  height: 40px;
  text-decoration: none;
}

/* Services End */

/* Testimonials Start */
#testimonials {
  padding-top: 0px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  padding: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  color: #333;
  text-align: left;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.testimonial h3 {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  text-align: left;
  margin-top: 15px;
}

.testimonial-footer {
  display: flex;
  flex-direction: row;
}

.testimonial-name-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
}

.testimonial-name-container h3 {
  font-weight: 600;
  color: black;
  font-size: 1.1em;
  margin: 0;
  padding: 0;
}

.testimonial-image {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Testimonials End */

/* Contact Start */
#contact {
  padding-top: 0px;
  padding-bottom: 0px;
}

.team-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 25px 0;
}

.team-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.calendly-inline-widget {
  height: 1010px;
}

/* Contact End */

/* FAQ Start */
.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
}

.accordion-header::after {
  content: '\002B';
  /* Plus sign */
  float: right;
}

.accordion-header.active::after {
  content: '\2212';
  /* Minus sign */
}

.accordion-content {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* FAQ End */

/* Blogs Start */
.searchBox {
  padding: 5px;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid black;
  margin-bottom: 20px;
}

#blogs {
  padding-top: 104px;
}

#blogs h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#blogs p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

#pagination button {
  width: 30px;
  margin: 15px 2px;
  height: 40px;
  background: transparent;
  border: 1px solid gray;
  border-radius: 5px;
  cursor: pointer;
}

#pagination button:hover {
  background: #b9b8b8;
}

#pagination button.active {
  background: #d8d6d6;
}

#pagination button.active:hover {
  background: #b9b8b8;
}

.article-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.article-link:hover .article {
  transform: scale(1.02);
}

.articles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.article {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.article h2,
.article h3 {
  margin: 0;
}

.article h3 {
  margin-top: 10px;
  font-weight: normal;
  color: gray;
}

.article a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.article span {
  display: inline-block;
  margin-top: 20px;
}

.article span:hover {
  color: #007BFF;
}

.article.highlight {
  background-color: #e9e9e9;
}

/* Blogs End */

/* Footer Start */
.social-footer {
  /* background: #f8f8f8; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  margin-top: 32px;
}

.copyright {
  font-size: 12px;
  color: gray;
}

.social-icon {
  margin: 0 10px;
}

.social-icon path {
  fill: black;
  transition: filter 0.3s ease;
}

.social-icon.facebook:hover path {
  fill: #1877F2;
  /* Facebook blue color */
}

.social-icon.instagram:hover path {
  fill: #C13584;
  /* Instagram color */
}

.social-icon.linkedin:hover path {
  fill: #0077B5;
  /* LinkedIn blue color */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* .back-to-top-arrow {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
  cursor: pointer;
}

.back-to-top-arrow path {
  fill: black;
  transition: filter 0.3s ease;
}

.back-to-top-arrow:hover path {
  fill: var(--cta);;
} */

/* Footer End */

@media(min-width: 601px) {
  body {
    padding-top: 92px;
  }

  .padded-section {
    padding: 10px 10vw;
  }

  #landing-page {
    flex-direction: column;
  }

  .contact-container {
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-bottom: 20px;
  }

  .content h1,
  .content p {
    text-align: center;
  }

  #blogs {
    padding-top: 44px;
  }
}

@media (min-width: 850px) {
  #hamburger {
    display: none;
  }

  nav ul {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
  }

  nav ul li {
    display: inline;
    margin-right: 10px;
    margin-bottom: 0;
  }

  header {
    background: white;
    position: fixed;
    top: 0;
    left: 5px;
    right: 5px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #project-showcase .heading {
    padding-top: 124px;
  }

  .project-box {
    width: 48%;
  }

  .testimonial-container {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial:nth-child(2),
  .testimonial:nth-child(4) {
    margin-top: 60px;
    margin-bottom: -60px;
  }

  .calendly-inline-widget {
    height: 1100px;
  }

  .team-images {
    margin-bottom: -66px;
  }
}

@media (min-width: 1001px) {
  #landing-page {
    flex-direction: row;
    justify-content: space-between;
  }

  .content {
    width: 40%;
  }

  .content h1 {
    width: 130%;
  }

  .content p {
    letter-spacing: 0.05em;
  }

  .buttons-desktop {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px
  }

  .buttons-desktop a {
    width: 100%;
  }

  .buttons-desktop button {
    width: 100%;
  }

  .buttons-mobile {
    display: none;
  }

  .image {
    position: relative;
    z-index: -1;
    width: 60%;
  }

  .content h1,
  .content p {
    text-align: left;
  }

  #services {
    padding-top: 104px;
  }

  .service-container {
    flex-direction: row;
    justify-content: center;
  }

  #testimonials {
    padding-top: 104px;
  }

  #contact {
    padding-top: 124px;
    padding-bottom: 64px
  }

}

@media (min-width: 1250px) {
  .buttons-desktop {
    flex-direction: row;
  }
}

@media (min-width: 1551px) {
  .padded-section {
    padding: 10px 356px;
  }

  .calendly-inline-widget {
    height: 690px;
  }
}

@keyframes slide-right-and-back {

  0%,
  12%,
  100% {
    /* Keep the animation stationary for most of the time */
    transform: translateX(0);
  }

  6% {
    /* Peak movement at half of the active animation window */
    transform: translateX(10px);
  }
}

.animate-slide-right-and-back-1 {
  animation: slide-right-and-back 12.5s infinite;
  animation-delay: 2.5s;
  /* Starts after 2.5 seconds */
}

.animate-slide-right-and-back-2 {
  animation: slide-right-and-back 12.5s infinite;
  animation-delay: 5s;
  /* Starts 5 seconds after the first one */
}

.animate-slide-right-and-back-3 {
  animation: slide-right-and-back 12.5s infinite;
  animation-delay: 7.5s;
  /* Starts 7.5 seconds after the second one */
}

.animate-slide-right-and-back-4 {
  animation: slide-right-and-back 12.5s infinite;
  animation-delay: 10s;
  /* Starts 10 seconds after the third one */
}