:root {
  --card-radius: 12px;
  --bg-size: 220%;
  /* how big the rotating layer is */
  --bg-blur: 36px;
  /* softness of the gradient */
  --glow-blur: 60px;
  /* second layer blur for big glow */
  --base-duration: 12s;
  /* rotation duration (longer = smoother) */
  --hover-duration: 6s;
  /* when hovered, rotate faster */
  --glow-opacity: 0.28;
  /* intensity of color glow */
  --overlay-opacity: 0.9;
  /* inner card opacity for readability */
}

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

html {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

body {
  background-color: #000;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
}

.mb {
  margin-bottom: 100px;
}

.plr {
  padding: 0 20px 0 20px;
}

/* Countdown */
.deal-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 22px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  /* border-radius: 999px; */
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap; /* keep single line */
  font-family: Poppins;
  flex-wrap: wrap;
}

.deal-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.deal-badge {
  /* font-size: 0.8rem; */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.9;
}

.deal-heading {
  font-size: 1rem;
}

.timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.153);
  padding: 4px 15px;
  max-width: 250px;
  animation: pop 1s linear infinite alternate;
}

@keyframes pop {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.02);
  }
}

.time-box {
  display: flex;
  align-items: baseline;
  /* min-width: 56px; */
  /* padding: 6px 8px; */
  /* border-radius: 10px; */
  /* background: rgba(15, 23, 42, 0.9); */
  /* box-shadow: 0 6px 14px rgba(15, 23, 42, 0.5); */
  /* text-align: center; */
  /* border: 1px solid rgba(148, 163, 184, 0.45); */
}

.time-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.time-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

/* Optional: slightly shrink on really small screens */
@media (max-width: 480px) {
  /* .deal-banner {
    transform: scale(0.9);
  } */
}

/*  Header Start */
header {
  font-family: var(--inter);
  position: fixed;
  /* padding-top: 30px; */
  width: 100%;
  top: 0;
  z-index: 999;
  background-image: linear-gradient(180deg, #000, transparent);
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.brand_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  /* padding: 15px; */
  border-radius: 50px;
  position: relative;
  width: 55px;
  height: 55px;
  transition: width 0.5s ease;
}

.brand_logo.active {
  width: 154px;
}

.brand_square_blue {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #007bff;
}

.brand_logo.active .brand_square_blue {
  display: none;
  animation: fadeOut 0.5s ease-in-out;
}

.brand_header_logo {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 154px;
  height: 50.1438px;
  object-fit: contain;
}

.brand_logo.active .brand_header_logo {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

/* .brand_logo:hover .brand_header_logo {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
} */

@keyframes fadeIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* .brand_logo:hover .brand_square_blue {
  display: none;
  animation: fadeOut 0.5s ease-in-out;
} */

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* .brand_logo:hover {
  width: 154px;
} */
/* Main menu */

.navigation_wrapper {
  position: relative;
  transition: transform 0.3s ease;
}

.navigation_wrapper:hover {
  cursor: pointer;
  transform: scale(0.95);
}

.liquid_glass_effect {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  filter: url(#glass-distortion);
  border-radius: 50px;
  isolation: isolate;
  /* box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5); */
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  /* z-index: 1; */
  border-radius: 50px;
  /* overflow: hidden; */
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.2),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.2);
}

.nav_menu {
  display: flex;
  justify-content: space-between;
  /* background-color: rgba(255, 255, 255, 0.1); */
  border-radius: 50px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  width: 100%;
  padding: 10px 20px;
}

.nav_menu a {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Poppins";
}

.nav_menu a span {
  width: 30px;
  height: 30px;
  display: block;
  background-color: rgb(61, 61, 61);
  border-radius: 50%;
}

/* animation Class */
.lr_animation {
  animation: move_brand 60s linear infinite;
}

.rl_animation {
  animation: move_brand_reverse 60s linear infinite;
}

@keyframes move_brand {
  from {
    translate: 0;
  }

  to {
    translate: -100%;
  }
}

@keyframes move_brand_reverse {
  from {
    translate: -100%;
  }

  to {
    translate: 0;
  }
}

@media (max-width: 480px) {
  .brand_logo {
    width: 55px;
    height: 45px;
  }
  .brand_logo.active {
    width: 125px;
  }

  .brand_header_logo {
    width: 120px;
    height: 40px;
  }

  .nav_menu {
    padding: 5px 10px;
  }

  .nav_menu a span {
    width: 25px;
    height: 25px;
  }

  .nav_menu a {
    font-size: 14px;
  }
}

/* Common Cta */

.hero_section {
  position: relative;
}

.common_carousel_container_wrapper {
  width: 100%;
  overflow: hidden;
  height: 90vh;
  position: relative;
  pointer-events: none;
}

.common_cta_banner_container {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.common_carousel_container_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.927);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.common_cta_banner_carousel_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: rotate(-5deg);
  margin-top: -80px;
}

.common_cta_banner_carousel_group {
  /* overflow-x: auto; */
  display: flex;
}

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

.common_cta_banner_carousel_group::-moz-scrollbar {
  display: none;
}

.common_cta_banner_carousel_group::-ms-scrollbar {
  display: none;
}

.common_cta_banner_carousel_group::-o-scrollbar {
  display: none;
}

.common_cta_banner_carousel_group::-scrollbar {
  display: none;
}

.common_cta_banner_carousel {
  display: flex;
  padding-right: 20px;
  gap: 20px;
}

.common_cta_banner_item {
  flex: 0 0 auto;
  width: 600px;
  /* margin-right: 20px; */
  border-radius: 9px;
  overflow: hidden;
  height: 300px;
}

/* .hero_carousel_cta_item {
  height: 180px;
} */

.common_cta_banner_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.content_container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero_content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero_content h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 64px;
  text-align: center;
  font-family: "Poppins";
  line-height: 1.1;
  font-weight: 600;
}

.hero_content p {
  color: #fff;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0px;
  text-align: center;
  line-height: 1.4;
  max-width: 700px;
  font-family: "Poppins";
}

.hero_content button {
  text-decoration: none;
  background-image: linear-gradient(
    140deg,
    rgb(255, 0, 0),
    rgb(245, 96, 32),
    rgb(113, 63, 171),
    rgb(34, 43, 255),
    rgb(0, 217, 246)
  );
  border: none;
  border-radius: 7px;
  color: #ffffff;
  cursor: pointer;
  font-family: "Poppins";
  font-size: clamp(13.323px, 3vw, 18px);
  font-weight: 600;
  text-transform: capitalize;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.hero_content button a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: "Poppins";
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(5px);
}

/* GLASS SHINE */
.hero_content button a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Hover Shine Animation */
.hero_content button a:hover::after {
  opacity: 1;
  animation: glassShine 0.9s ease-out;
}

@keyframes glassShine {
  0% {
    left: -70%;
  }

  100% {
    left: 130%;
  }
}

@media screen and (max-width: 768px) {
  .hero_content h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

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

  .common_carousel_container_wrapper {
    height: 100vh;
  }

  .content_wrapper {
    padding-top: 60px;
  }
}

/* Request Call */
.request_call_form {
  font-family: "Poppins";
}

.request_call_form_container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_heading h3 {
  font-size: 42px;
  color: #fff;
  font-family: Poppins;
  font-weight: 500;
}

.book_now_form_wrapper {
  position: relative;
}

.request_form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
}

.request_form input,
.request_form textarea {
  background: none;
  border: none;
  outline: none;
  border-bottom: 1px solid #888;
  padding: 10px;
  font-size: 18px;
  color: #fff;
}

.request_form input {
  flex: 250px;
}

.request_form input:focus-within {
  border-bottom: 1px solid rgb(0, 132, 255);
}

.request_form textarea {
  width: 100%;
  resize: none;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.request_form button {
  width: 100%;
  background: #222;
  outline: none;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.request_form button:hover {
  background: #2a2a2a;
}

/* Sales Landing Page Section */

/* .sales_landingpage_section {

} */

/* .new {

} */

.sales_landingpage_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sales_landingpage_container > h2 {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 5vw, 42px);
  letter-spacing: 0px;
  line-height: 1.2;
  color: #fff;
  max-width: 567px;
}

.main_screens_container {
  position: relative;
}

.screens_container {
  grid-area: 1/1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 140px;
}

.laptop_screen_container {
  max-width: 764.557px;
  height: 450px;
  position: relative;
}

.laptop_screen_container > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile_screen_container {
  max-width: 225.445px;
  height: 421.992px;
  position: relative;
}

.mobile_container {
  max-width: 225.445px;
  height: 421.992px;
  position: relative;
}

.mobile_container > img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

.rectangle_blue {
  position: absolute;
  top: 163px;
  left: 10px;
  width: 83px;
  height: 13px;
  z-index: 1;
  border: 2px solid rgb(73, 88, 255);
}

.section_two_cta_button_one,
.section_two_cta_button_two {
  position: absolute;
}

.section_two_cta_button_one {
  top: clamp(3%, calc(17% - 4vw), 9%);
  left: 83.9%;
  width: clamp(225px, 22vw, 300px);
  /* background-color: red; */
  display: flex;
  flex-direction: column;
}

.section_two_cta_button_one > p {
  align-self: center;
  padding: 8px 18px;
  font-size: clamp(11px, 1.2vw, 11px);
}

.section_two_cta_button_one > .arrow_one {
  width: 55%;
  height: 24px;
}

.arrow_one {
  display: block;
}

.arrow_three {
  display: none;
}

.section_two_cta_button_two {
  left: -267px;
  top: 40%;
}

.section_two_cta_button_two > p {
  width: max-content;
  position: absolute;
  bottom: 0;
  left: 20px;
  padding: 5px 14px;
  font-size: 13px;
}

.section_two_cta_button_two > img {
  width: 278px;
  height: 110px;
}

.section_two_cta_button_one > p,
.section_two_cta_button_two > p {
  background-color: rgb(73, 88, 255);
  border: 1px solid rgb(156, 156, 156);
  border-radius: 50px;
  color: #fff;
  text-transform: capitalize;
  font-family: "Poppins";
  font-weight: 300;
}

@media screen and (max-width: 992px) {
  .screens_container {
    flex-direction: column;
  }

  .laptop_screen_container {
    max-width: 764px;
    height: 100%;
  }

  .section_two_cta_button_one {
    top: -50px;
    left: unset;
    right: 10%;
    max-width: 172px;
  }

  .section_two_cta_button_two {
    left: 45%;
    top: -42px;
  }

  .section_two_cta_button_two > p {
    top: 3px;
    bottom: unset;
    z-index: 2;
  }

  .section_two_cta_button_two > img {
    width: 103px;
    height: 217px;
    transform: rotate(180deg);
  }

  .arrow_one {
    display: none;
  }

  .arrow_three {
    display: block;
    width: 20px;
    height: 88px;
    position: relative;
    right: -120px;
  }
}

@media screen and (max-width: 768px) {
  .arrow_three {
    height: 86px;
    right: -73%;
    width: 20px;
  }
}

@media screen and (max-width: 480px) {
  .arrow_three {
    height: 59px;
    right: -83%;
    width: 12px;
  }

  .section_two_cta_button_two > p {
    left: 0;
  }
}

/* section 3 */
.section_3_container {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  gap: 30px;
}

.section_3_container_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.section_3_container_left_top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

.section_3_container_left_top > p {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 1.6;
}

.section_3_container_left_top > h2 {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(28px, 5vw, 36px);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.section_3_container_left_bottom {
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-top: -50px;
}

@media screen and (max-width: 560px) {
  .section_3_container_left_bottom {
    margin-top: 0;
  }
}

.section_3_container_bottom_wrapper {
  height: 120px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #333;
  position: absolute;
}

.section_3_bottom_content {
  position: relative;
  display: flex;
  gap: 15px;
  z-index: 1;
  height: 100%;
  /* background-color: red; */
  width: 100%;
  align-items: flex-end;
}

.section_3_left_bottom_left_item {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0 20px 20px;
}

.section_3_left_bottom_left_item > p {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 1.4;
}

.section_3_left_bottom_left_item > h2 {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.section_3_left_bottom_right_item {
  width: 45%;
  height: 300px;
  overflow: hidden;
  display: flex;
}

.section_3_left_bottom_right_item > img {
  width: 31%;
  object-fit: cover;
  object-position: top;
}

.img_1 {
  position: relative;
  top: 45px;
  left: 10px;
}

.img_2 {
  position: relative;
  top: 0px;
  box-shadow: 0 0 50px #000;
  width: 50% !important;
}

.img_3 {
  position: relative;
  top: 45px;
  right: 12px;
  z-index: -1;
}

.section_3_container_right {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.section_3_right_card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  border: 1px solid #333;
  width: 100%;
}

.section_3_right_card_top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}

.section_3_right_card_top > img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.section_3_right_card_bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}

.section_3_right_card_bottom > img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .section_3_container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .section_3_container_right {
    flex-direction: column;
  }

  .section_3_right_card {
    height: auto;
    gap: 40px;
  }
}

@media screen and (max-width: 560px) {
  .section_3_container_left_top > h2,
  .section_3_container_left_top > p {
    text-align: center;
  }

  .section_3_bottom_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section_3_left_bottom_left_item {
    width: 100%;
    padding: none;
  }

  .section_3_left_bottom_right_item {
    width: 100%;
    padding-bottom: 0;
    border-radius: 20px;
  }
}

/* Section 4 */

.cta_banner_container {
  display: flex;
  border-radius: 20px;
  background-image: linear-gradient(180deg, blue, rgb(3, 25, 115));
  height: 350px;
  color: #fff;
  overflow: hidden;
}

.cta_banner_container_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}

.cta_banner_container_left h2 {
  font-family: "Poppins";
  text-transform: capitalize;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0px;
  line-height: 1;
}

.cta_banner_container_left p {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 1.4;
  max-width: 500px;
}

.cta_banner_container_left a {
  text-decoration: none;
  background-color: #ffffff;
  border: none;
  border-radius: 7px;
  color: #000000;
  cursor: pointer;
  font-family: "Poppins";
  font-size: clamp(13.323px, 3vw, 18px);
  font-weight: 600;
  text-transform: capitalize;
  width: fit-content;
  height: fit-content;
  transition: border-radius 0.3s ease;
  padding: 12px 32px;
}

.cta_banner_container_right {
  flex: 1;
  background-color: navy;
  overflow: hidden;
  padding: 0 20px 0 20px;
}

.common_cta_banner_carousel_container.cta_carousel {
  flex-direction: row;
  margin-top: 0;
  transform: rotate(0deg);
  height: 100%;
}

.common_cta_banner_carousel_group.cta_carousel {
  height: 100%;
  flex-direction: column;
}

.common_cta_banner_carousel.cta_carousel {
  flex-direction: column;
  width: 100%;
  padding: 0 0 20px 0;
}

.common_cta_banner_item.hero_carousel_cta_item.cta_carousel {
  width: 100%;
  height: auto;
}

.bt_animation {
  animation: move_up 60s linear infinite;
}

.tb_animation {
  animation: move_down 60s linear infinite;
}

@keyframes move_up {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

@keyframes move_down {
  from {
    transform: translateY(0%);
  }

  to {
    transform: translateY(-100%);
  }
}

@media screen and (max-width: 768px) {
  .cta_banner_container {
    flex-direction: column;
    height: 600px;
  }

  .cta_banner_container_right {
  }

  .sales_landingpage_container > h2 {
    text-align: center;
    margin-bottom: 80px;
  }
}

/* Testimonial Slider */

.testimonial_section {
  /* padding: 150px 0; */
}

.testimonial_container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.testimonial_left {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 13px;
}

.testimonial_left .client-title {
  color: gray;
  font-size: clamp(32px, 5vw, 38px);
  font-weight: 300;
  font-variation-settings: normal;
  letter-spacing: 0px;
  line-height: 1;
  font-family: "Poppins";
  cursor: pointer;
}

.client-title.active {
  color: #fff;
}

.testimonial_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: clamp(290px, 45vw, 600px);
}

.sliderContainer {
  /* max-width: 600px; */
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  isolation: isolate;
}

.slider {
  display: flex;
  transition: 300ms ease;
}

.slider .slide {
  flex-shrink: 0;
  width: 100%;
}

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

.sliderContainer .arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 96%;
  left: 2%;
  display: flex;
  justify-content: space-between;
}

.sliderContainer .arrows button {
  border: none;
  background-color: rgba(0, 0, 0, 0.495);
  color: white;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 300ms ease;
  cursor: pointer;
}

.sliderContainer .arrows button:hover {
  background-color: rgba(0, 0, 0, 0.736);
  transform: scale(1.1);
}

.sliderContainer .arrows button:active {
  background-color: rgba(0, 0, 0, 0.884);
  transform: scale(1);
}

.testimonial_right .dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  bottom: 0.5rem;
  width: 100%;
  /* padding: 1rem;
            background-color: red; */
}

.testimonial_right .dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.444);
  background-color: rgba(255, 255, 255, 0.495);
  transition: 200ms ease;
  cursor: pointer;
}

.testimonial_right .dots .dot.active {
  background-color: white;
  transform: scale(1.3);
}

.testimonial_right .dots .dot:hover {
  background-color: white;
}

.client_common_review {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
}

.client_common_review > p > i {
  font-size: 45px;
}

.client_review_text {
  font-family: "Poppins";
  word-break: break-word;
  font-weight: 200;
  font-style: normal;
  text-transform: lowercase;
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 1.3;
}

.client_common_infos {
  display: flex;
  gap: 15px;
}

.client_common_info_image {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  width: 200px;
}

.client_common_info_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.client_common_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client_common_info h3 {
  font-family: "Poppins";
  word-break: break-word;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 1.2;
}

.client_common_info p {
  font-family: "Poppins";
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .testimonial_left {
    display: none;
  }

  .testimonial_right {
    width: 100%;
  }

  .client_common_infos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client_review_text {
    text-align: center;
  }
}

/* Pricing Section Start */
.pricing_section_container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pricing_section_top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.pricing_section_top h2 {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(28px, 5vw, 54px);
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: #fff;
}

.pricing_section_top p {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 1.6;
  max-width: 700px;
  color: #fff;
}

.pricing_section_bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing_card_wrapper {
  position: relative;
  flex: 300px;
  padding: 2px;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.pricing_card_wrapper:hover {
  box-shadow: 0 6px 22px rgba(34, 43, 255, 0.18),
    0 10px 40px rgba(113, 63, 171, 0.12);
}

.pricing_card_wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--bg-size);
  height: var(--bg-size);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: 50% 50%;
  z-index: 0;
  pointer-events: none;

  /* conic gradient gives nice radial color sweep that reads well when rotated */
  background: transparent;

  filter: blur(var(--bg-blur)) saturate(140%);
  opacity: var(--glow-opacity);
  animation: rotateConic var(--base-duration) linear infinite;
  border-radius: 50%;
}

.pricing_card_wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--bg-size) * 0.9);
  height: calc(var(--bg-size) * 0.9);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: 50% 50%;
  z-index: -1;
  pointer-events: none;
  background: transparent;

  filter: blur(var(--glow-blur)) saturate(160%);
  opacity: calc(var(--glow-opacity) * 0.7);
  animation: rotateConicReverse calc(var(--base-duration) * 1.4) linear infinite;
  border-radius: 50%;
}

.pricing_card_wrapper:hover::before {
  background: conic-gradient(
    from 140deg,
    rgba(255, 0, 0, 1) 0deg,
    rgba(245, 96, 32, 1) 60deg,
    rgba(113, 63, 171, 1) 140deg,
    rgba(34, 43, 255, 1) 220deg,
    rgba(0, 217, 246, 1) 300deg,
    rgba(255, 0, 0, 1) 360deg
  );
  animation-duration: var(--hover-duration);
  opacity: calc(var(--glow-opacity) + 0.12);
  filter: blur(calc(var(--bg-blur) * 0.85)) saturate(170%);
}

.pricing_card_wrapper:hover::after {
  background: conic-gradient(
    from 200deg,
    rgba(0, 217, 246, 0.9) 0deg,
    rgba(34, 43, 255, 0.9) 90deg,
    rgba(113, 63, 171, 0.9) 180deg,
    rgba(245, 96, 32, 0.9) 260deg,
    rgba(255, 0, 0, 0.9) 320deg
  );
  animation-duration: calc(var(--hover-duration) * 1.1);
  opacity: calc(var(--glow-opacity) * 0.95);
  filter: blur(calc(var(--glow-blur) * 0.85)) saturate(180%);
}

/* keyframes for smooth rotation */
@keyframes rotateConic {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateConicReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.pricing_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.075);
  padding: 30px 30px 50px 30px;
  /* flex: 300px; */
  border-radius: 10px;
  height: 100%;
}

.pricing_card:hover {
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out;
}

.offer_tag {
  /* background-color: #007bff; */
  border-radius: 50px;
  width: max-content;
  position: absolute;
  right: 20px;
  padding: 5px 10px;
  font-family: "Poppins";
  color: #ffffff;
  font-size: 13px;
  background: linear-gradient(270deg, #007bff, #00c6ff, #007bff);
  background-size: 400% 400%;
  animation: gradientRotate 10s ease infinite;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pricing_card h3 {
  font-family: "Poppins", sans-serif;
  color: rgb(183, 187, 198);
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: normal;
  letter-spacing: 0px;
  line-height: 1;
}

.pricing_card > p {
  /* font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 42px;
  font-weight: 400;
  font-variation-settings: normal; */
  /* letter-spacing: 0px; */
  /* line-height: 0; */
}

.pricing_card_price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing_card_price h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
}

.pricing_amount {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
}

.pricing_amount .discount_price {
  position: absolute;
  font-size: 22px;
  left: 0;
  top: -15px;
  text-decoration: line-through;
  /* text-decoration-color: red; */
  color: #b2b2b2;
}

.pricing_amount .monthly_price {
  position: absolute;
  font-size: 13px;
  bottom: 18px;
  margin-left: 10px;
}

.pricing_buttons_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.renew_at_info {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 300;
}

.pricing_btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgb(54, 54, 54);
  padding: 22px 0px;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: normal;
  letter-spacing: 0px;
  line-height: 0;
  word-break: break-word;
  font-style: normal;
  text-transform: capitalize;
  text-align: center;
}

.pricing_card_wrapper:hover .pricing_btn {
  background-image: linear-gradient(
    140deg,
    rgb(255, 0, 0),
    rgb(245, 96, 32),
    rgb(113, 63, 171),
    rgb(34, 43, 255),
    rgb(0, 217, 246)
  );
}

.pricing_features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing_features li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 200;
  font-variation-settings: normal;
  letter-spacing: 0px;
  line-height: 1.3;
}

.pricing_features li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Pricing Section End */

/* Reach Us Section */
.reach-us-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 5%;
  font-family: "Poppins", sans-serif;
}

.pt-150 {
  padding: 150px 0 0 0;
}

.reach-us-heading {
  all: unset;
  font-size: clamp(38px, 5.5vw, 64px);
  text-transform: uppercase;
  color: #fff;
}

.forms_and_contacts-section {
  display: flex;
  gap: 50px;
  position: relative;
}

.reach-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reach-us-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reach-us-inputs input {
  all: unset;
  flex: 338px;
  padding: 15px;
  font-size: clamp(18px, 3.5vw, 24px);
  border-bottom: 2px solid #fff;
  color: #fff;
}

.reach-us-inputs input::placeholder,
.reach-us-form textarea::placeholder {
  text-transform: uppercase;
  font-size: clamp(18px, 3.5vw, 24px);
}

.select_service_wrapper {
  position: relative;
  width: 100%;
}

.select_service_wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
  font-size: clamp(18px, 3.5vw, 24px);
}

#services {
  padding: 15px;
  background: none;
  outline: none;
  border: 2px solid #fff;
  font-size: clamp(18px, 3.5vw, 24px);
  width: 100%;
  display: block;
  color: gray;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

#services option {
  background-color: #1b1b1b;
  color: #fff;
  padding: 10px;
  font-size: clamp(18px, 3.5vw, 24px);
  cursor: pointer;
}

#services:has(option:checked:not([value=""])) {
  color: #fff;
}

.select_service_wrapper:has(option[value="all"]:checked)
  + .form_plans_container,
.select_service_wrapper:has(option[value="branding"]:checked)
  + .form_plans_container,
.select_service_wrapper:has(option[value="marketing"]:checked)
  + .form_plans_container,
.select_service_wrapper:has(option[value="development"]:checked)
  + .form_plans_container {
  display: flex;
}

.reach-us-form textarea {
  all: unset;
  resize: none;
  height: 200px;
  padding: 15px;
  font-size: clamp(18px, 3.5vw, 24px);
  border: 2px solid #fff;
  color: #fff;
}

.reach-us-btn {
  all: unset;
  width: max-content;
  padding: 10px 40px;
  background-color: #fff;
  font-size: 25px;
  text-transform: uppercase;
  cursor: pointer;
}

.reach-us-contact {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 25%;
}

/* .reach-us-address {
} */

.reachus-address-heading {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.reachus-address-text {
  text-transform: capitalize;
}

.reach-us-address p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.reach-us-tagline {
  font-size: clamp(32px, 5.5vw, 64px);
  text-transform: uppercase;
  color: #fff;
}

/* Loader Animation */

.loader_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  display: none;
  justify-content: center;
  align-items: center;
}

.loader_wrapper.active {
  display: flex;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
  background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%,
    var(--c) 0 50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}

.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear;
}

@keyframes l12 {
  100% {
    transform: rotate(0.5turn);
  }
}

/* Radio Check Box */
.form_plans_container {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form_plans_container > p {
  text-align: center;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 600;
}

.radio-checkbox-group {
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.select_service_wrapper:has(option[value="all"]:checked)
  + .form_plans_container
  #all_in_one,
.select_service_wrapper:has(option[value="branding"]:checked)
  + .form_plans_container
  #branding_plan,
.select_service_wrapper:has(option[value="marketing"]:checked)
  + .form_plans_container
  #marketing_plan,
.select_service_wrapper:has(option[value="development"]:checked)
  + .form_plans_container
  #development_plan {
  display: flex;
}

.plan-card {
  flex: 1;
  position: relative;
  max-width: 300px;
}

/* .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
} */

.radio-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.plan-label {
  display: block;
  text-align: center;
  user-select: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkmark {
  /* position: absolute; */
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: white;
  transition: all 0.2s ease;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.radio-checkbox:checked ~ .plan-label .checkmark {
  border-color: #007bff;
  background: #e6f0ff;
}

.radio-checkbox:checked ~ .plan-label .checkmark::after {
  transform: translateY(-50%) scale(1);
}

.plan-name,
.price {
  font-size: 18px;
  font-weight: 600;
  color: gray;
}

.radio-checkbox:checked ~ .plan-label .plan-name {
  color: #fff;
}

.radio-checkbox:checked ~ .plan-label .price {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .reach-us-inputs input {
    flex: 100%;
  }
}

/* FAQ's Section */
.faq_section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/images/grid_line_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  /* padding: 100px 0px; */
}

.faq-container {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* padding: 20px 30px; */
}

.faq-container > h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffff;
  font-size: clamp(24px, 5vw, 50px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.faqs_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq {
  /* border-bottom: 1px solid #eee; */
  /* padding: 15px 0; */
}

.faq:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  text-transform: capitalize;
  background-color: #101010;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 20px;
}

.faq_question_title {
  font-size: clamp(16px, 2vw, 18px);
}

.faq-question:hover {
  color: #007bff !important;
}

.faq-question .icon {
  font-size: 28px;
  color: #007bff;
  transform-origin: center center;
  transition: transform 0.3s;
}

.faq.active .faq-question .icon {
  transform: rotate(130deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  color: #fff;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  border: 1px solid #33333357;
  border-top: transparent;
  font-size: clamp(15px, 2vw, 18px);
  padding: 0px 20px;
  background-color: #060505;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.faq.active .faq-answer {
  opacity: 1;
  padding: 15px;
}

/* Footer Section */
.footer-section {
  position: relative;
  padding: 80px 0 20px 0;
  background-color: #000000;
}

.footer-section > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  inset: 0;
  pointer-events: none;
}

.footer_bg_dark_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    transparent,
    transparent 80%,
    transparent,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.footer_section_wrapper {
  position: relative;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-container-top {
  position: relative;
  overflow: hidden;
  height: 190px;
  cursor: pointer;
}

.footer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
}

.slide-footer {
  height: 190px;
  display: flex;
  align-items: center;
  font-family: "Poppins";
  color: #fff;
}

.slide-a {
  font-size: 110px;
  font-weight: 700;
}

.slide-b {
  font-size: 188px;
  font-weight: 600;
  gap: 10px;
  text-decoration: none;
  text-transform: capitalize;
}

.footer-container-top-arrow {
  transform: rotate(45deg);
}

.footer-container-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
  flex-wrap: wrap;
}

.footer-container-bottom a {
  color: #ffffff;
}

.footer-container-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-address-container {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address-container-heading {
  font-size: 1.2rem;
  line-height: 110%;
  font-family: "Poppins";
  font-weight: bold;
  text-transform: capitalize;
}

.footer-address-container-detail {
  font-family: "Poppins";
  text-transform: capitalize;
  font-size: 1rem;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Poppins";
  font-size: 1rem;
}

.footer-container-bottom-right {
  flex: 360px;
  height: 300px;
}

.footer-container-bottom-right iframe {
  border-radius: 20px;
}

.footer-copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  padding: 20px 0;
}

.footer-copyright-section a {
  color: #ffffff;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copyright img {
  width: 154px;
  height: 50.1438px;
}

.copyright-tag {
  font-size: 1rem;
  font-family: "Poppins";
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .footer-container-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-container-bottom {
    flex-direction: column;
  }

  .footer-container-bottom-right {
    width: 100%;
    height: auto;
  }

  .footer-container-bottom-right iframe {
    width: 100%;
    height: 300px;
  }
}

/* Pricing Tabs */

.pricing_tabs_main_container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.tabs-header {
  display: flex;
  gap: 8px;
  background: #212121;
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  width: max-content;
  align-self: center;
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  transform: translateY(-1px);
  background: rgba(148, 163, 184, 0.15);
}

.tab-btn.active {
  background-color: #000;
  /* background: linear-gradient(135deg, #2563eb, #22c55e); */
  color: white;
  /* box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 10px 25px rgba(37, 99, 235, 0.5);
 */
}

.tabs-content {
}

.tab-panel {
  display: none;
  animation: fadeIn 0.2s ease-out;
}

.tab-panel.active {
  display: grid;
  gap: 10px;
}

#all {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#branding,
#marketing,
#development {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

#marketing {
}

#development {
}

.tab-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f9fafb;
}

.tab-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93c5fd;
  margin-bottom: 10px;
}

.tab-text {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 14px;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.75);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .tabs-header {
    flex-direction: column;
    border-radius: 18px;
  }
  .tab-btn {
    border-radius: 12px;
  }
}


/* Desktop */
@media (max-width: 1280px) {
  .slide-a {
    font-size: clamp(85px, 9.9vw, 110px);
  }

  .slide-b {
    font-size: clamp(140px, 16vw, 188px);
  }
}

/* Small Laptop */
@media screen and (max-width: 1024px) {
  .slide-a {
    font-size: clamp(75px, 9.9vw, 102px);
  }

  .slide-b {
    font-size: clamp(122px, 16vw, 167px);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .slide-a {
    font-size: clamp(60px, 9.9vw, 75px);
  }

  .slide-b {
    font-size: clamp(75px, 15.8vw, 123px);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .slide-a {
    display: none;
  }

  .slide-b {
    font-size: clamp(75px, 15.8vw, 101px);
  }

  .footer-container-top-arrow {
    display: none !important;
  }
}

@media screen and (max-width: 360px) {
  .slide-b {
    font-size: clamp(70px, 15.8vw, 101px);
  }
}

