@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

:root {
  --black: #191a23;
  --lime-green: #18CB96;
  --card-bg-grey: #f3f3f3;
  --dark-grey: #292a32;
}

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

a {
  text-decoration: none;
  color: var(--black);
}

li {
  list-style: none;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 2rem 7rem;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

button {
  padding: 1rem 2rem;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

input {
  outline: none;
  font-size: 16px;
}

/* for lenis */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* header */
header {
  position: fixed;
  padding: 1.5rem 7rem 0 7rem;
  top: 0;
  left: 0;
  text-transform: capitalize;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  z-index: 1000;
  transition: transform 0.8s ease-in-out;
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.hidden_header {
  transform: translateY(-100%);
}

header .logo a img {
  width: 12rem;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo {
  flex: 1;
  padding-left: 40px;
}

.logo,
.nav_list_container {
  flex-shrink: 1;
  flex-basis: 200px;
}

.nav_list_container {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .nav_list_container ul {
    display: flex;
    align-content: center;
    gap: 0.5rem;
  }

  /* Hide hamburger menu by default on desktop */
  .hamburger_menu {
    display: none;
  }

.list_item {
  margin-right: 10px;
}

.list_item a,
.footer_nav_list-list_item a {
  padding: 1.2rem 1.5rem;
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.list_item a:hover {
  background-color: rgba(185, 255, 102, 0.1);
  color: var(--black);
}

.list_item a::after,
.footer_nav_list-list_item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
  border-radius: 1px;
}

.list_item a::after {
  background-color: var(--lime-green);
}

.list_item a:hover::after,
.footer_nav_list-list_item a:hover::after {
  width: 60%;
}

.list_btn {
  margin-left: 20px;
  padding: 1rem 2rem;
  cursor: pointer;
  text-transform: none !important;
  border: 1px solid var(--black);
  border-radius: 10px;
  transition: 0.3s ease-in;
}

.list_btn:hover {
  background-color: var(--black);
  color: #fff;
  border: 1px solid #fff;
}

.nav-button {
  background-color: var(--black);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  margin-left: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.nav-button:hover {
  background-color: var(--lime-green);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* hero section */
main {
  margin-top: 5rem;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  overflow: hidden;
  min-height: 85vh;
  padding: 2rem 0;
}

.hero_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  flex: 1;
  max-width: 650px;
}

.hero_left h3 {
  font-size: 5.5vmax;
  max-width: 100%;
  text-wrap: pretty;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(135deg, var(--black) 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero_left p {
  font-size: 1.5rem;
  max-width: 100%;
  text-wrap: pretty;
  line-height: 1.6;
  color: #555;
  font-weight: 400;
}

.hero_left button {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 15px;
  z-index: 100;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.hero_left button:hover {
  background: linear-gradient(135deg, var(--lime-green) 0%, #4DD4AF 100%);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(185, 255, 102, 0.3);
}

.hero_right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.hero_right img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* client row */
.client_row_container,
.c_t_a,
.testimonials {
  margin-top: 6.25rem;
}

.client_row_container {
  width: 100%;
  overflow: hidden;
}

.client_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 105px;
  transition: transform 0.1s ease-out;
}

.client_row img {
  width: 120px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* services */
.services,
.case_studies,
.work_process,
.team_members,
.contact_us,
footer {
  margin-top: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services_top,
.case_studies .case_studies_top,
.work_process_top,
.team_members_top,
.testimonials_top,
.contact_us_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.services_top h3,
.case_studies .case_studies_top h3,
.work_process_top h3,
.team_members_top h3,
.testimonials_top h3,
.contact_us_top h3 {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--lime-green);
  padding: 5px;
  border-radius: 5px;
  text-transform: capitalize;
}

.services_top P,
.case_studies .case_studies_top p,
.work_process_top p,
.team_members_top p,
.testimonials_top p,
.contact_us_top p {
  text-wrap: pretty;
  max-width: 550px;
  font-size: 17px;
}

/* Enhanced contact form header styles */
.contact_us_top {
  text-align: center;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact_us_top h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lime-green) 0%, #16a085 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: -0.5px;
}

.contact_us_top p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.services_bottom,
.case_studies_bottom,
.work_process_bottom,
.team_members_bottom,
.testimonials_bottom,
.contact_us_bottom {
  margin-top: 5rem;
}

.services_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.services_bottom .cards_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.cards_container .card {
  padding: 3rem;
  border: 1px solid var(--black);
  box-shadow: 0 5px 0 0 var(--black);
  border-radius: 45px;
  display: flex;
  justify-content: space-between;
  width: 48%;
}

.card .card_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 93px;
}

.card .card_left div:nth-child(1) h4 {
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 5px;
  text-transform: capitalize;
  padding: 0 2px;
  width: fit-content;
}

.card .card_left div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.card .card_left div:nth-child(2) img {
  background-color: var(--black);
  color: var(--card-bg-grey);
  padding: 10px;
  border-radius: 50%;
}

.card .card_left div:nth-child(2) span {
  text-transform: capitalize;
  font-size: 18px;
}

.card .card_right {
  align-self: center;
}

.card .card_right img {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.seo_card,
.email_card,
.ppc_card .card_left div:nth-child(1) h4,
.sm_card .card_left div:nth-child(1) h4,
.content_card .card_left div:nth-child(1) h4,
.sm_card .card_left div:nth-child(2) img,
.analytics_card .card_left div:nth-child(2) img {
  background-color: var(--card-bg-grey);
}

.seo_card .card_left div:nth-child(1) h4,
.email_card .card_left div:nth-child(1) h4,
.analytics_card .card_left div:nth-child(1) h4,
.ppc_card,
.content_card {
  background-color: var(--lime-green);
}

.sm_card,
.analytics_card {
  background-color: var(--black);
}

.sm_card .card_left div:nth-child(2) span,
.analytics_card .card_left div:nth-child(2) span {
  color: var(--card-bg-grey);
}

/* call to action */
.c_t_a {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.c_t_a .bg_color {
  position: absolute;
  height: 90%;
  width: 100%;
  border-radius: 45px;
  background-color: var(--card-bg-grey);
}

.c_t_a-left,
.c_t_a-right {
  z-index: 500;
  flex: 1;
}

.c_t_a-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 0 4rem;
}

.c_t_a-left h3 {
  font-size: 30px;
}

.c_t_a-left p {
  font-size: 18px;
}

.c_t_a-left button {
  background-color: var(--black);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 20px;
}

.c_t_a-left button:hover {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.c_t_a-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c_t_a-right img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
}

/* case studies */
.case_studies_bottom {
  display: flex;
  justify-content: space-around;
  background-color: var(--black);
  color: #fff;
  border-radius: 45px;
  padding: 4rem;
}

.case_studies_bottom .case-studies_bottom-card_container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
}

.case_studies_bottom .case_studies_bottom-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 18px;
}

.case-studies_bottom-card_container:nth-child(1),
.case-studies_bottom-card_container:nth-child(2) {
  border-right: 1px solid var(--card-bg-grey);
}

.case_studies_bottom-card div {
  text-transform: capitalize;
  color: var(--lime-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.case_studies_bottom-card div img {
  width: 20px;
  height: auto;
  object-fit: contain;
}

/* work process */
.work_process {
  margin: 6rem 0 4rem 0;
  padding: 0 2rem;
}

.work_process_top {
  text-align: left;
  margin-bottom: 2.5rem;
}

.work_process_top h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.work_process_top p {
  font-size: 1.25rem;
  color: var(--gray);
}

.work_process_bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.work_process_bottom_box {
  background: #fff;
  border: 1px solid var(--black);
  border-radius: 32px;
  box-shadow: 0 4px 0 0 var(--black);
  padding: 0;
  transition: box-shadow 0.2s;
}

.work_process_bottom_box:hover {
  box-shadow: 0 8px 0 0 var(--lime-green);
}

.work_process_bottom_box .box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 2rem 2.5rem 2rem 2rem;
  border-radius: 32px 32px 0 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--black);
  user-select: none;
}

.work_process_bottom_box .box-top h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.work_process_bottom_box .box-top span {
  display: flex;
  gap: 0.3rem;
}

.box-top_bar {
  width: 24px;
  height: 4px;
  background: var(--lime-green);
  border-radius: 2px;
}

.work_process_bottom_box .box-bottom {
  opacity: 0;
  margin-top: -2rem;
  transition: 0.5s ease-out;
  max-height: 0;
  overflow: hidden;
  padding: 0 2.5rem 0 2rem;
  color: var(--black);
  font-size: 1.1rem;
}

.work_process_bottom_box .box-bottom.active {
  opacity: 1;
  margin: 0;
  max-height: 300px;
  padding: 2rem 2.5rem 2rem 2rem;
}

@media (max-width: 900px) {
  .work_process_top h3 {
    font-size: 2rem;
  }
  .work_process_bottom_box .box-top {
    font-size: 1.1rem;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
  }
  .work_process_bottom_box .box-bottom,
  .work_process_bottom_box .box-bottom.active {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 600px) {
  .work_process {
    margin: 3rem 0 2rem 0;
    padding: 0 0.5rem;
  }
  .work_process_top h3 {
    font-size: 1.3rem;
  }
  .work_process_bottom_box {
    border-radius: 18px;
  }
  .work_process_bottom_box .box-top {
    padding: 1rem 1rem 1rem 0.7rem;
    font-size: 1rem;
  }
  .work_process_bottom_box .box-bottom,
  .work_process_bottom_box .box-bottom.active {
    font-size: 0.95rem;
    padding-left: 0.7rem;
    padding-right: 1rem;
  }
}

/* about us */
.about_us {
  margin-top: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_us_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.about_us_top h3 {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--lime-green);
  padding: 5px;
  border-radius: 5px;
  text-transform: capitalize;
}

.about_us_top p {
  text-wrap: pretty;
  max-width: 550px;
  font-size: 17px;
}

.about_us_bottom {
  margin-top: 5rem;
  background-color: var(--card-bg-grey);
  border-radius: 45px;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about_us_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.about_us_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}

.about_us_left h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.about_us_left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

.about_us_left ul {
  list-style: none;
  padding: 0;
}

.about_us_left ul li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-grey);
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.about_us_left ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-green);
  font-weight: bold;
  font-size: 1.2rem;
  background-color: rgba(185, 255, 102, 0.2);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.about_us_right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_us_right img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* team members */
.team_members_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.team_members_profile-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile_container_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
}

.team_members_profile-container .profile_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--black);
  box-shadow: 0 5px 0 0 var(--black);
  border-radius: 45px;
  width: 430px;
  height: 331px;
  margin-bottom: 40px;
}

.profile_card .profile_card_top {
  display: flex;
  padding: 1rem 0 2rem 0;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--black);
  width: 100%;
}

.profile_card_top .profile_card_top_img {
  position: relative;
}

.profile_card_top .profile_card_top_img .mask {
  display: none;
}

.profile_card_top .profile_card_top_img img {
  border-radius: 50%;
  width: 99px;
  height: 99px;
  object-fit: cover;
}

.profile_card_top span,
.profile_card_top_img {
  align-self: flex-end;
}

.profile_card_top span h4 {
  font-size: 20px;
  font-weight: 500;
}

.profile_card_top span p {
  font-size: 18px;
}

.profile_card_top .profile_card_top_icon {
  background-color: var(--black);
  align-self: flex-start;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
}

.profile_card_top .profile_card_top_icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.profile_card_top .profile_card_top_icon a:hover {
  transform: scale(1.1);
}

.profile_card_top .profile_card_top_icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.profile_card_top .profile_card_top_icon svg {
  width: 20px;
  height: 20px;
  color: white;
  filter: brightness(0) invert(1);
}

.profile_card_top_icon:hover {
  background-color: #464646;
}

.profile_card_bottom {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
}

.profile_card_bottom p {
  text-wrap: pretty;
  width: 100%;
}

.team_members_bottom button {
  padding: 1rem 4rem;
  margin-top: -1rem;
  font-size: 16.2px;
  align-self: flex-end;
  background-color: var(--black);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
}

.team_members_bottom button:hover {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

/* testimonials */
.testimonials_bottom {
  background-color: var(--black);
  border-radius: 45px;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  min-height: 550px;
}

.testimonial-swiper {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.swiper_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 100%;
  padding: 1rem;
}

.testimonial-content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.swiper_card .text {
  border: 1px solid var(--lime-green);
  border-radius: 25px;
  padding: 2.5rem;
  width: 100%;
  position: relative;
  background: rgba(185, 255, 102, 0.05);
  backdrop-filter: blur(10px);
}

.swiper_card .text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  font-style: italic;
}

.swiper_card .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  padding: 0 2rem;
}

.author-info {
  text-align: left;
}

.author h4,
.author-info h4 {
  font-size: 1.25rem;
  color: var(--lime-green);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author p,
.author-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.stars span {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.swiper-pagination {
  bottom: 1rem !important;
  position: absolute !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  background-color: var(--lime-green) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--black) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none !important;
}

.swiper-button-next {
  right: 1rem !important;
}

.swiper-button-prev {
  left: 1rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fff !important;
  color: var(--black) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--lime-green) !important;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  mask-image: url(../IMAGES/mask_2.svg);
  -webkit-mask-image: url(../IMAGES/mask_2.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  width: 15px;
  height: 15px;
  background-color: var(--card-bg-grey);
  opacity: 1;
}

/* contact us */
.contact_us_bottom {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 5rem;
  border-radius: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  min-height: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact_us_bottom .image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact_us_bottom .image_wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.contact_us_bottom .form_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.contact_us_form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact_us_form .checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact_us_form .checklist input[type="radio"] {
  display: none;
}

.contact_us_form .checklist label {
  position: relative;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact_us_form .checklist label:hover {
  border-color: var(--lime-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 203, 150, 0.15);
}

.contact_us_form .checklist label .custom_radio {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background-color: white;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.contact_us_form .checklist label .custom_radio::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--lime-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.contact_us_form .checklist input[type="radio"]:checked + .custom_radio {
  border-color: var(--lime-green);
  background-color: var(--lime-green);
}

.contact_us_form .checklist input[type="radio"]:checked + .custom_radio::after {
  transform: translate(-50%, -50%) scale(1);
}

.contact_us_form .checklist input[type="radio"]:checked ~ span {
  color: var(--black);
  font-weight: 600;
}

.contact_us_form .form_inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact_us_form .form_inputs > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form_inputs .input_wrapper {
  position: relative;
}

.form_inputs .input_wrapper input,
textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form_inputs .input_wrapper input:focus,
textarea:focus {
  outline: none;
  border-color: var(--lime-green);
  box-shadow: 0 4px 12px rgba(24, 203, 150, 0.15);
  transform: translateY(-1px);
}

.form_inputs .input_wrapper input::placeholder,
textarea::placeholder {
  color: #6c757d;
  font-size: 16px;
  font-weight: 400;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form_inputs button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--black) 0%, #2c3e50 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form_inputs button:hover {
  background: linear-gradient(135deg, var(--lime-green) 0%, #16a085 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 203, 150, 0.3);
}

.form_inputs button:active {
  transform: translateY(0);
}

.error_message {
  font-size: 15px;
  color: #ff0000;
}

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 1rem;
}

#loading .spinner {
  border: 4px solid rgba(21, 255, 0, 0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

.confirmation_message {
  color: var(--black);
  font-size: 20px;
}

/* footer */
footer {
  background-color: var(--black);
  padding: 3rem;
  border-radius: 45px;
}

.footer_top,
.footer_top_logo,
.footer_social_icons {
  display: flex;
  align-items: center;
}

.footer_top {
  justify-content: space-between;
}

.footer_top_logo img {
  width: 12rem;
  height: auto;
  max-width: 100%;
}

.footer_nav_list_container .footer_nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_nav_list .footer_nav_list-list_item {
  margin-right: 10px;
}

.footer_nav_list .footer_nav_list-list_item a {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
}

.footer_nav_list-list_item a::after {
  background-color: #fff;
}

.footer_social_icons {
  gap: 20px;
}

.footer_social_icons img {
  cursor: pointer;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer_social_icons img:hover {
  box-shadow: 1px 1px 7px #fff;
}

footer .footer_middle {
  margin-top: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_middle .footer_address,
.footer_address .address_wrapper {
  display: flex;
  flex-direction: column;
}

.footer_middle .footer_address {
  gap: 27px;
}

.footer_address div h3 {
  font-size: 20px;
  background-color: var(--lime-green);
  width: fit-content;
}

.footer_address .address_wrapper {
  gap: 20px;
}

.footer_address .address_wrapper,
.address_wrapper .email_address a,
.address_wrapper .phone_num a {
  color: #fff;
}

.address_wrapper .email_address a,
.address_wrapper .phone_num a {
  font-size: 18px;
}

.address_wrapper .email_address a:hover,
.address_wrapper .phone_num a:hover {
  text-decoration: underline;
}

.address_wrapper .location {
  display: flex;
  flex-direction: column;
}

.footer_middle .newsletter_sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

#newsletter {
  background-color: var(--dark-grey);
  padding: 58px 40px;
  height: 184px;
  width: 634px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.newsletter_email_input_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.newsletter_email_input_wrapper .error_message {
  margin-left: 7px;
}

#newsletter input,
.newsletter_email_input_wrapper input {
  width: 100%;
  height: 67px;
  border-radius: 14px;
}

#newsletter input[type="email"] {
  border: 1px solid #fff;
  background-color: transparent;
  padding: 1rem 2rem;
  color: #fff;
  transition: 0.3s ease-in;
}

#newsletter input[type="email"]:focus {
  box-shadow: 1px 1px 7px #fff;
}

#newsletter input[type="email"]::placeholder {
  color: #fff;
}

#newsletter input[type="submit"] {
  cursor: pointer;
  background-color: var(--lime-green);
  color: var(--black);
  border: none;
  font-size: 18px;
  transition: 0.3s ease-in;
}

#newsletter input[type="submit"]:hover {
  border: 1px solid var(--lime-green);
  background-color: transparent;
  color: #fff;
}

footer .footer_bottom {
  margin-top: 50px;
  height: 78px;
  border-top: 1px solid #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  font-size: 18px;
}

.footer_bottom .copyright {
  display: flex;
  gap: 40px;
}

.copyright .privacy_policy {
  text-decoration: underline;
  cursor: pointer;
}

/* back to top button */
#backToTop {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: none;
  background-color: rgba(41, 42, 50, 0.9);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in;
}

#backToTop:hover {
  background-color: #555;
}

/* keyframes animations */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slideIn {
  animation: slideInFromBottom 1.5s ease-out;
}

/* media queries */
@media screen and (max-width: 1513px) {
  .nav_list_container {
    flex-basis: 400px;
  }

  .logo {
    padding-left: 0;
  }

  .client_row {
    flex-wrap: wrap;
    gap: 60px;
  }

  .client_row img {
    width: 100px;
  }

  .services_top,
  .case_studies .case_studies_top {
    padding-left: 0;
  }

  .services_bottom .cards_container {
    justify-content: space-between;
  }

  .cards_container .card {
    width: 47%;
  }

  .profile_container_1 {
    gap: 1.5rem;
    max-width: 800px;
  }

  .team_members_profile-container .profile_card {
    width: 380px;
  }
}

@media screen and (max-width: 1300px) {
  body {
    padding: 2rem;
  }

  header {
    padding: 1rem 2rem 0 2rem;
  }

  .nav_list_container {
    flex-basis: 200px;
  }

  .case_studies .case_studies_bottom-card {
    padding-right: 2rem;
  }

  .case_studies_bottom-card:nth-child(2),
  .case_studies_bottom-card:nth-child(3) {
    padding-left: 2rem;
  }

  .team_members_top {
    padding: 0;
  }

  .team_members_bottom {
    padding: 0;
  }

  .team_members_bottom button {
    align-self: center;
  }
}

@media screen and (max-width: 1253px) {
  .nav_list_container {
    flex-basis: 400px;
  }
}

@media screen and (max-width: 1150px) {
  .nav_list_container {
    flex-basis: 600px;
  }

  .client_row {
    gap: 40px;
  }

  .client_row img {
    width: 80px;
  }

  .services_bottom {
    gap: 30px;
  }

  .services_bottom .cards_container {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .cards_container .card {
    width: 80%;
    align-items: center;
    justify-content: space-evenly;
  }

  .team_members_top {
    justify-content: center;
  }

  .profile_container_1 {
    flex-direction: column;
    gap: 2rem;
  }

  .team_members_profile-container .profile_card {
    width: 100%;
    max-width: 500px;
  }

  .contact_us_form,
  .confirmation_message {
    width: 28rem;
  }

  .contact_us_bottom .image_wrapper img {
    left: 13rem;
  }
}

@media screen and (max-width: 900px) {
  body {
    padding: 2rem;
  }

  header .logo a img {
    width: 12rem;
  }

  .nav_list_container ul {
    display: none;
  }

  .hamburger_menu {
    position: absolute;
    right: 5rem;
    top: 0;
    margin-top: 1.75rem;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
  }

  .hamburger_menu:hover {
    background: rgba(185, 255, 102, 0.1);
    border-color: rgba(185, 255, 102, 0.3);
  }

  .hamburger_menu:focus {
    outline: 2px solid var(--lime-green);
    outline-offset: 2px;
    background: rgba(185, 255, 102, 0.1);
    border-color: rgba(185, 255, 102, 0.3);
  }

  .bar {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  .hamburger_menu.open {
    background: rgba(185, 255, 102, 0.2);
    border-color: rgba(185, 255, 102, 0.5);
  }

  .hamburger_menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: linear-gradient(135deg, var(--lime-green) 0%, #4DD4AF 100%);
  }

  .hamburger_menu.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger_menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: linear-gradient(135deg, var(--lime-green) 0%, #4DD4AF 100%);
  }

  /* Mobile menu backdrop */
  .nav_list_container #list.menu_open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    backdrop-filter: blur(2px);
  }

  .nav_list_container #list.menu_open {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    align-items: flex-start;
    padding: 4rem 2rem 2rem 2rem;
    border-left: 1px solid rgba(185, 255, 102, 0.2);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    animation: slideInFromRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .list_item,
  .list_btn,
  .nav-button {
    margin-left: 0;
    width: 100%;
  }

  .list_item {
    margin-bottom: 0.5rem;
  }

  .list_item a {
    padding: 1.2rem 1.5rem;
    margin: 0;
    border-radius: 12px;
    width: 100%;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .list_item a:hover {
    background: rgba(185, 255, 102, 0.2);
    border-color: rgba(185, 255, 102, 0.3);
    transform: translateX(5px);
  }

  .list_btn {
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
    border-radius: 12px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .list_btn:hover {
    background: var(--black);
    color: #fff;
    transform: translateX(5px);
  }

  .nav-button {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 1.2rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .client_row {
    gap: 30px;
  }

  .services_top,
  .case_studies .case_studies_top,
  .work_process_top,
  .team_members_top,
  .testimonials_top,
  .contact_us_top,
  .about_us_top {
    flex-direction: column;
  }

  .about_us_content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .about_us_left {
    order: 2;
    text-align: center;
  }

  .about_us_right {
    order: 1;
  }

  .about_us_right img {
    max-width: 350px;
  }

  .case_studies_bottom {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .case_studies_bottom::-webkit-scrollbar {
    display: none;
  }

  .case-studies_bottom-card_container:nth-child(2),
  .case-studies_bottom-card_container:nth-child(3) {
    padding-left: 0;
  }

  .case_studies_bottom .case-studies_bottom-card_container {
    justify-content: center;
    background-color: var(--black);
    border-radius: 45px;
    padding: 2rem 3rem;
    width: 100%;
    height: 300px;
    transform: translateX(300px);
  }

  .case-studies_bottom-card_container:nth-child(1),
  .case-studies_bottom-card_container:nth-child(2) {
    border-right: none;
  }

  .case_studies_bottom-card p {
    width: 300px;
  }

  .work_process_top {
    justify-content: center;
  }

  .contact_us_form,
  .confirmation_message {
    width: 23rem;
  }

  .contact_us_bottom .image_wrapper img {
    left: 5rem;
  }

  .footer_nav_list .footer_nav_list-list_item {
    margin-right: 7px;
  }

  .footer_nav_list-list_item a {
    padding: 0.5rem;
  }

  .footer_social_icons {
    gap: 15px;
  }

  .footer_social_icons img {
    width: 20px;
    height: 20px;
  }

  .newsletter_form_wrapper,
  #newsletter {
    width: 100%;
  }
}

@media screen and (max-width: 934px) {
  .team_members_profile-container .profile_card {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
  }

  .contact_us_form,
  .confirmation_message {
    width: 19rem;
  }
  
  .footer_top_logo img {
    width: 11rem;
  }

  .footer_top {
    position: relative;
  }

  .footer_top,
  .footer_nav_list_container .footer_nav_list,
  footer .footer_middle {
    flex-direction: column;
  }

  .footer_nav_list .footer_nav_list-list_item {
    margin-right: 0;
  }

  .footer_top,
  footer .footer_middle {
    gap: 37px;
  }

  footer .footer_middle {
    margin-top: 37px;
    margin-bottom: 37px;
  }

  .footer_middle .footer_address,
  .footer_address .address_wrapper,
  .address_wrapper .location {
    align-items: center;
  }

  .footer_social_icons {
    position: absolute;
    top: 46rem;
  }

  footer .footer_bottom {
    justify-content: center;
  }
}

@media screen and (max-width: 885px) {
  body {
    position: relative;
  }

  main {
    margin-top: 3rem;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  header .logo a img {
    width: 12rem;
  }

  .hamburger_menu {
    right: 3rem;
  }

  .nav_list_container #list.menu_open {
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  }

  .hero {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    min-height: auto;
    padding: 1rem 0;
  }

  .hero_left {
    text-align: center;
    align-items: center;
    gap: 2rem;
    order: 2;
    max-width: 100%;
  }

  .hero_right {
    order: 1;
    max-width: 100%;
  }

  .hero_left h3 {
    font-size: 3.5rem;
    text-align: center;
  }

  .hero_left p {
    font-size: 1.25rem;
    text-align: center;
    max-width: 90%;
  }

  .hero_left button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  .hero_right img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .client_row_container {
    margin-top: 0rem;
  }

  .services {
    padding: 0 20px;
    margin-top: 6.375rem;
  }

  .services_top,
  .case_studies .case_studies_top,
  .work_process_top,
  .team_members_top,
  .testimonials_top,
  .contact_us_top {
    gap: 30px;
  }

  .services_bottom,
  .case_studies_bottom,
  .work_process_bottom,
  .team_members_bottom,
  .testimonials_bottom,
  .contact_us_bottom {
    margin-top: 40px;
  }

  .team_members_bottom {
    gap: 25px;
  }

  .services_top p,
  .case_studies .case_studies_top p,
  .team_members_top p,
  .testimonials_top p,
  .contact_us_top p,
  .about_us_top p {
    max-width: 100%;
    text-align: center;
  }

  .about_us {
    margin-top: 60px;
  }

  .about_us_left h4 {
    font-size: 1.3rem;
  }

  .about_us_left p,
  .about_us_left ul li {
    font-size: 1rem;
  }

  .about_us_left ul {
    text-align: left;
    display: inline-block;
  }

  .cards_container .card {
    width: 100%;
    gap: 0;
    padding: 3rem 0.5rem;
  }

  .card .card_right img {
    max-width: 128px;
    width: 100%;
    height: auto;
  }

  .c_t_a {
    margin: 70.53px 10px 0 10px;
  }

  .c_t_a-left {
    padding: 0 0 0 1.5rem;
  }

  .case_studies,
  .work_process,
  .team_members,
  .contact_us {
    margin-top: 60px;
  }

  .case_studies_bottom {
    flex-direction: column;
    overflow-x: hidden;
    padding: 0 0.5rem;
  }

  .case_studies_bottom .case-studies_bottom-card_container {
    transform: translate(0px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .case_studies_bottom-card p {
    width: 100%;
  }

  .case_studies_bottom-card div {
    align-self: flex-start;
  }

  .work_process {
    padding: 0 20px;
  }

  .work_process_bottom_box {
    padding: 1rem 2rem;
  }

  .work_process_bottom_box .box-bottom.active {
    padding: 2rem 0;
  }

  .testimonials_bottom {
    padding: 3rem 1.5rem 2rem 1.5rem;
    min-height: 500px;
  }

  .swiper_card .text {
    padding: 2rem;
  }

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

  .swiper_card .author {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .author-info {
    text-align: center !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
  }

  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact_us_bottom {
    padding: 2.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .contact_us_form,
  .confirmation_message {
    width: 100%;
    max-width: none;
  }

  .contact_us_bottom .image_wrapper {
    display: none;
  }

  .contact_us_top h3 {
    font-size: 2rem;
  }

  .contact_us_top p {
    font-size: 1rem;
  }

  .contact_us_form .checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact_us_form .checklist label {
    padding: 0.8rem 1rem;
    font-size: 14px;
  }

  .about_us_bottom {
    padding: 2.5rem;
  }

  .about_us_content {
    gap: 1.5rem;
  }

  .about_us_left {
    gap: 1.5rem;
    padding-right: 0;
  }

  .about_us_left h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .about_us_left p,
  .about_us_left ul li {
    font-size: 0.95rem;
  }

  .about_us_right img {
    max-width: 280px;
  }

  footer {
    margin-top: 5.625rem;
  }
}

@media screen and (max-width: 768px) {
  .c_t_a {
    padding: 3rem 1.6rem;
  }

  .c_t_a .bg_color {
    height: 100%;
  }

  .c_t_a-right {
    display: none;
  }
  
  .footer_top_logo img {
    width: 10.5rem;
  }

  .team_members_profile-container .profile_card {
    width: 100%;
    padding: 0 2rem;
    height: auto;
    min-height: 250px;
  }

  .profile_card .profile_card_top {
    justify-content: space-around;
  }

  .testimonials_bottom {
    padding: 2.5rem 1rem 2rem 1rem;
    min-height: 450px;
  }

  .swiper_card .text {
    width: 100%;
    padding: 1.5rem;
  }

  .swiper_card .text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .testimonial-content {
    gap: 1.5rem;
  }

  .author h4,
  .author-info h4 {
    font-size: 1.1rem;
  }

  .author p,
  .author-info p {
    font-size: 0.9rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 16px !important;
    height: 16px !important;
  }

  footer {
    padding: 3rem 1rem;
  }

  #newsletter,
  .footer_bottom .copyright {
    flex-direction: column;
  }

  #newsletter input[type="submit"] {
    padding: 1rem 2rem;
  }

  .footer_bottom .copyright {
    gap: 15px;
    align-items: center;
  }

  .newsletter_email_input_wrapper {
    margin-top: 0;
  }
}

@media screen and (max-width: 595px) {
  .swiper_card {
    width: 100% !important;
    padding: 0.5rem;
  }

  #backToTop {
    right: 1rem;
    padding: 10px;
  }
}

@media screen and (max-width: 500px) {
  body {
    padding: 2rem 1rem;
  }

  header {
    padding: 1rem 1rem 0 1rem;
  }

  header .logo a img {
    width: 10rem;
  }

  main {
    margin-top: 3.5rem;
  }

  .hamburger_menu {
    right: 1.5rem;
  }

  .nav_list_container #list.menu_open {
    width: 100%;
    padding: 2rem 1.5rem;
    border-left: none;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
  }

  .hero {
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0;
  }

  .hero_left {
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero_left h3 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .hero_left p {
    font-size: 1.1rem;
    max-width: 95%;
  }

  .hero_left button {
    width: 90%;
    max-width: 300px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .hero_right img {
    max-width: 350px;
  }

  .services {
    padding: 0 10px;
  }

  .card {
    position: relative;
  }

  .card .card_left div:nth-child(1) h4:nth-child(1) {
    position: absolute;
    top: 1rem;
  }

  .card .card_left div:nth-child(2) span {
    display: none;
  }

  .card .card_right {
    align-self: flex-end;
  }

  .c_t_a-left {
    padding: 0;
  }

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

  .work_process_bottom_box .box-top h3::before {
    font-size: 30px;
  }

  .work_process_bottom_box .box-top h3 {
    font-size: 18px;
  }

  .work_process_bottom_box .box-top span {
    width: 35px;
    height: 35px;
  }

  .work_process_bottom_box .box-bottom {
    margin-top: -7rem;
  }

  .team_members_profile-container .profile_card {
    padding: 0.8rem;
    height: 260px;
  }

  .profile_card .profile_card_top {
    justify-content: space-between;
  }

  .testimonials_bottom {
    padding: 1rem 0 0 0;
    height: 480px;
  }

  .author h4 {
    font-size: 18px;
  }

  .author p {
    font-size: 16px;
  }

  .testimonials_bottom {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    min-height: 400px;
  }

  .swiper_card .text {
    padding: 1.25rem;
  }

  .swiper_card .text p {
    font-size: 0.9rem;
  }

  .quote-icon svg {
    width: 24px;
    height: 18px;
  }

  .author h4,
  .author-info h4 {
    font-size: 1rem;
  }

  .author p,
  .author-info p {
    font-size: 0.85rem;
  }

  .stars {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }

  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 14px !important;
    height: 14px !important;
  }

  .about_us_left h4 {
    font-size: 1.1rem;
  }

  .about_us_left p,
  .about_us_left ul li {
    font-size: 0.9rem;
  }

  .about_us_bottom {
    padding: 1.5rem;
  }

  .about_us_right img {
    max-width: 250px;
  }
}

@media screen and (max-width: 428px) {
  header .logo a img {
    width: 9rem;
  }
  
  .footer_top_logo img {
    width: 10rem;
  }

  .hamburger_menu {
    margin-top: 1.4rem;
  }

  .hero_left h3 {
    font-size: 2.5rem;
  }

  .hero_left p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero_left button {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
  }

  .hero_right img {
    max-width: 300px;
  }

  .c_t_a-left h3 {
    font-size: 26px;
  }

  .work_process_top h3 {
    text-align: center;
    width: fit-content;
  }

  .work_process_bottom_box {
    padding: 1rem;
  }

  .work_process_bottom_box .box-top {
    padding: 1rem 0;
  }

  .work_process_bottom_box .box-top h3::before {
    font-size: 27px;
  }

  .work_process_bottom_box .box-top h3 {
    font-size: 16px;
  }

  .work_process_bottom_box .box-bottom {
    margin-top: -9rem;
  }

  .work_process_bottom_box:nth-child(2) .box-top,
  .work_process_bottom_box:nth-child(3) .box-top,
  .work_process_bottom_box:nth-child(4) .box-top,
  .work_process_bottom_box:nth-child(5) .box-top {
    margin-top: 1rem;
  }

  .team_members {
    padding: 0 20px;
  }

  .team_members_profile-container .profile_card {
    padding: 0.5rem;
    height: 290px;
  }

  .profile_card_top .profile_card_top_img img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
  }

  .profile_card_top span h4 {
    font-size: 18px;
  }

  .profile_card_top span p {
    font-size: 16px;
  }

  .team_members_bottom button {
    width: 100%;
  }

  .swiper-pagination {
    top: 26rem !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 26.5rem !important;
    width: 30px;
    height: 30px;
  }

  footer {
    padding: 2rem 1rem;
  }

  .contact_us_form .checklist label,
  .footer_nav_list .footer_nav_list-list_item a,
  .address_wrapper .email_address a,
  .address_wrapper .phone_num a,
  #newsletter input[type="submit"] {
    font-size: 16px;
  }

  .footer_address div h3 {
    font-size: 18px;
  }

  .address_wrapper .location {
    text-align: center;
  }

  #newsletter {
    padding: 58px 25px;
  }

  .footer_social_icons {
    top: 44rem;
  }

  .footer_social_icons img {
    width: 18px;
    height: 18px;
  }

  footer .footer_bottom {
    align-items: center;
    text-align: center;
    font-size: 16px;
  }

  .footer_bottom .copyright {
    margin-top: 37px;
  }
}

@media screen and (max-width: 375px) {
  .hero_left h3 {
    font-size: 2.2rem;
  }

  .hero_left p {
    text-align: center;
    font-size: 0.95rem;
  }

  .hero_left button {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }

  .hero_right img {
    max-width: 280px;
  }

  .work_process_bottom_box .box-bottom {
    margin-top: -9rem;
  }

  .work_process_bottom_box .box-bottom.active {
    padding: 1rem 0;
  }

  .team_members_profile-container .profile_card {
    height: 300px;
  }



  .profile_card_top .profile_card_top_img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
  }

  .swiper_card {
    padding: 1rem;
  }

  .swiper_card .text {
    padding: 1rem;
  }

  .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px !important;
  }

  .contact_us_bottom {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .contact_us_top h3 {
    font-size: 1.75rem;
  }

  .contact_us_top p {
    font-size: 0.9rem;
  }

  .contact_us_form .checklist {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact_us_form .checklist label {
    padding: 0.75rem;
    font-size: 13px;
  }

  .form_inputs .input_wrapper input,
  textarea {
    padding: 1rem;
    font-size: 14px;
  }

  .form_inputs button {
    padding: 1rem 1.5rem;
    font-size: 16px;
  }

  .footer_social_icons {
    top: 45.5rem;
  }

  .footer_social_icons img {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 320px) {
  .hero_left h3 {
    font-size: 2rem;
  }

  .hero_left p {
    font-size: 0.9rem;
  }

  .hero_left button {
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
  }

  .hero_right img {
    max-width: 250px;
  }

  .work_process_bottom_box .box-top {
    padding: 0.5rem 0;
  }

  .work_process_bottom_box .box-top h3::before {
    margin-right: 0.4rem;
    font-size: 24px;
  }

  .work_process_bottom_box .box-bottom {
    margin-top: -10.5rem;
  }

  .work_process,
  .team_members {
    padding: 0 10px;
  }

  .team_members_profile-container .profile_card {
    height: 320px;
  }

  .profile_card .profile_card_top {
    gap: 5px;
  }

  .profile_card_top .profile_card_top_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
  }

  .profile_card_top span h4 {
    font-size: 16.5008px;
    width: 120px;
  }

  .profile_card_top span p,
  .author p {
    font-size: 14px;
  }

  .testimonials_bottom {
    height: 525px;
  }

  .swiper-pagination {
    top: 29rem !important;
  }

  .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 29.5rem !important;
    width: 25px;
    height: 25px;
  }
}

/* Our Working Process Stepper Styles */
.work_process_steps {
  margin: 6rem 0 4rem 0;
  padding: 0 2rem;
}

.work_process_steps_top {
  text-align: center;
  margin-bottom: 3rem;
}

.work_process_steps_top h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.work_process_steps_top p {
  font-size: 1.25rem;
  color: var(--dark-grey);
  max-width: 600px;
  margin: 0 auto;
}

.work_process_steps_blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.work_process_step {
  background: #fff;
  border: 1px solid var(--black);
  border-radius: 24px;
  box-shadow: 0 4px 0 0 var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 200px;
  justify-content: space-between;
}

.work_process_step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 0 var(--lime-green);
}

.step_circle {
  width: 48px;
  height: 48px;
  background: var(--lime-green);
  color: var(--black);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 0 0 var(--black);
}

.step_content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.step_content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
  line-height: 1.3;
}

.step_content p {
  font-size: 1rem;
  color: var(--dark-grey);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.step_arrow {
  font-size: 2rem;
  color: var(--lime-green);
  font-weight: bold;
  user-select: none;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.work_process_step:last-child .step_arrow {
  display: none;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .work_process_steps_blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .work_process_step {
    padding: 1.5rem;
    height: 180px;
  }
  
  .step_circle {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
  }
  
  .step_content h4 {
    font-size: 1.1rem;
  }
  
  .step_content p {
    font-size: 0.95rem;
  }
  
  .step_arrow {
    font-size: 1.8rem;
    width: 36px;
    height: 36px;
    right: -0.75rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .work_process_steps {
    margin: 4rem 0 3rem 0;
    padding: 0 1rem;
  }
  
  .work_process_steps_top {
    margin-bottom: 2rem;
  }
  
  .work_process_steps_top h3 {
    font-size: 2rem;
  }
  
  .work_process_steps_top p {
    font-size: 1.1rem;
  }
  
  .work_process_steps_blocks {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .work_process_step {
    padding: 1.5rem;
    border-radius: 20px;
    height: auto;
    min-height: 160px;
  }
  
  .step_circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .step_content h4 {
    font-size: 1rem;
  }
  
  .step_content p {
    font-size: 0.9rem;
  }
  
  .step_arrow {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    right: -0.5rem;
  }
}

@media (max-width: 480px) {
  .work_process_steps {
    margin: 3rem 0 2rem 0;
    padding: 0 0.75rem;
  }
  
  .work_process_steps_top h3 {
    font-size: 1.75rem;
  }
  
  .work_process_steps_top p {
    font-size: 1rem;
  }
  
  .work_process_step {
    padding: 1.25rem;
    border-radius: 16px;
    min-height: 140px;
  }
  
  .step_circle {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 0.625rem;
  }
  
  .step_content h4 {
    font-size: 0.95rem;
  }
  
  .step_content p {
    font-size: 0.85rem;
  }
  
  .step_arrow {
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
    right: -0.25rem;
  }
}

@media (max-width: 375px) {
  .work_process_steps {
    padding: 0 0.5rem;
  }
  
  .work_process_steps_top h3 {
    font-size: 1.5rem;
  }
  
  .work_process_step {
    padding: 1rem;
    min-height: 120px;
  }
  
  .step_circle {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .step_content h4 {
    font-size: 0.9rem;
  }
  
  .step_content p {
    font-size: 0.8rem;
  }
  
  .step_arrow {
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    right: -0.25rem;
  }
}


.footer_nav_list .nav-button {
  background-color: var(--lime-green);
  color: var(--black);
  border: 1px solid var(--lime-green);
  transition: all 0.3s ease;
}

.footer_nav_list .nav-button:hover {
  background-color: var(--black);
  color: var(--lime-green);
}
/* Remove old accordion styles if present */
.work_process, .work_process_top, .work_process_bottom, .work_process_bottom_box, .box-top, .box-bottom, .box-top_bar { display: none !important; }
