: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;
  color: #fff;
}

:root {
  --inter: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: var(--inter);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
}

.plr20 {
  padding: 0 20px;
}

.pd {
  padding: 150px 20px 0 20px;
}

.mb {
  margin-bottom: 75px;
}

.notiflix-notify {
  z-index: 1001 !important;
}

/* 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 0;
}

.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;
}

.liquid_glass_effect {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  filter: url(#glass-distortion);
  /* background: #00000021; */
  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); */
  padding: 6px 50px;
  /* width: 530px; */
}

.nav_menu_items {
  display: flex;
  list-style: none;
  gap: 0px;
  justify-content: space-between;
  width: 100%;
}

.nav_menu_item {
  position: relative; /* reference for submenu */
}

.nav_menu_item a,
.nav_menu_item p {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  /* color: rgb(183, 183, 183); */
  font-size: 20px;
  letter-spacing: 0px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s;
}

.nav_menu_item > a:hover,
.nav_menu_item > p:hover {
  /* color: #ffd700; */
  transform: scale(1.1);
}

/* Submenu */
.submenu,
.child-submenu {
  position: absolute; /* outside stacking context of nav_menu */
  /* display: none; */
  /* top: 50px; */
  /* left: 30px; adjust dynamically */
  /* background-color: rgba(255, 255, 255, 0.1); glass effect */
  /* backdrop-filter: blur(15px); */
  /* -webkit-backdrop-filter: blur(15px); */
  /* border-bottom-left-radius: 20px; */
  /* border-bottom-right-radius: 20px; */
  visibility: hidden;
  padding: 10px;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  background-color: #00000025;
  /* border-right: 1px solid rgba(255, 255, 255, 0.3); */
  /* border-left: 1px solid rgba(255, 255, 255, 0.3); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
  /* pointer-events: none; */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.submenu {
  top: 50px;
}

.submenu:hover {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu .liquid_glass_effect,
.submenu .liquidGlass-shine {
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  /* box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5); */
}

.submenu li {
  list-style: none;
}

.submenu li a {
  display: flex;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
}

.submenu li > a:hover,
.child-submenu li > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.nav_menu_item.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.nav_menu_item-child {
  position: relative;
}

.child-submenu > li > a {
  font-size: 14px;
}

.nav_menu_item-child .child-submenu {
  position: absolute;
  top: -10%;
  left: 107%;
  z-index: 1005;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: #00000021;
}

.child-submenu .liquid_glass_effect,
.child-submenu .liquidGlass-shine {
  border-radius: 10px;
}

.nav_menu_item-child.has-submenu-child:hover .child-submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.nav_menu_item-child.has-submenu-child .submenu_arrow {
  transform: rotate(-90deg);
}

.nav_menu_item-child:has(.child-submenu:hover) {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.mobile_hamburger_icon {
  display: none;
}

.mobile_menu_navigation_wrapper {
  display: none;
}

/* Show submenu on hover (you can handle hover with JS or CSS) */
/* .nav_menu_item.has-submenu:hover + .nav_menu .submenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
} */

/* Responsive */
@media (max-width: 768px) {
  .header_wrapper {
    padding: 5px 10px;
  }

  .navigation_wrapper {
    display: none;
  }

  .mobile_hamburger_icon {
    display: flex;
  }

  .mobile_menu_navigation_wrapper {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* HAMBURGER */
  .mobile_hamburger_icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mobile_hamburger_icon:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  .mobile_hamburger_icon .bar {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s ease;
  }

  /* CLOSE ICON */
  .mobile_hamburger_icon.close {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
  }

  .mobile_hamburger_icon.close .bar:first-child {
    transform: rotate(45deg) translate(3px, 2px);
  }
  .mobile_hamburger_icon.close .bar:last-child {
    transform: rotate(-45deg) translate(4px, -3px);
  }

  /* FULLSCREEN MENU */
  .mobile_menu_navigation_wrapper {
    position: fixed;
    inset: 0;
    background: #0f162500;
    transform: translateX(100%);
    backdrop-filter: blur(46px);
    transition: transform 0.4s ease;
    z-index: 1000;
  }

  .mobile_menu_navigation_wrapper.active {
    transform: translateX(0);
  }

  .mobile_menu_container {
    padding: 80px 20px;
    height: 100%;
    overflow-y: auto;
  }

  /* MENU WRAPPER */
  .mobile_menus {
    margin-top: 40px;
    font-family: "Poppins", sans-serif;
  }

  /* MENU LIST */
  .mobile_menu_items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* MAIN MENU ITEM (CARD STYLE) */
  .mobile_menu_item {
    background: rgb(255 255 255 / 10%);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, background 0.25s ease;
  }

  /* GRADIENT BAR */
  .mobile_menu_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background: linear-gradient(180deg, #38bdf8, #6366f1);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* SHOW ON HOVER OR ACTIVE */
  .mobile_menu_item:hover::before,
  .mobile_menu_item:has(a.active)::before {
    opacity: 1;
  }

  /* .mobile_menu_item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  } */

  /* LINKS */
  .mobile_menu_item > a,
  .submenu_toggle,
  .child_toggle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  /* SUBMENU */
  .mobile_submenu {
    /* margin-top: 12px; */
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
  }

  /* SUBMENU ITEMS */
  .mobile_submenu li a,
  .child_toggle {
    font-size: 17px;
    color: #cbd5f5;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
  }

  /* CHILD SUBMENU */
  .mobile_child_submenu {
    margin-top: 8px;
    padding-left: 14px;
    border-left: 2px dashed rgba(255, 255, 255, 0.12);
  }

  /* CHILD LINKS */
  .mobile_child_submenu a {
    font-size: 15px;
    color: #94a3b8;
    padding: 8px 0;
    display: block;
  }

  /* HOVER EFFECTS */
  .mobile_submenu a:hover,
  .mobile_child_submenu a:hover {
    color: #38bdf8;
  }

  /* ARROWS */
  .submenu_arrow,
  .child_toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  /* ROTATION WHEN ACTIVE (YOUR JS WILL TOGGLE .rotate) */
  .rotate {
    transform: rotate(180deg);
  }

  /* SUBMENU ANIMATION */
  .mobile_submenu,
  .mobile_child_submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .mobile_submenu.active,
  .mobile_child_submenu.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
  }

  /* ACTIVE LINK */
  .mobile_menu_item a.active,
  .mobile_submenu a.active,
  .mobile_child_submenu a.active {
    color: #38bdf8;
    font-weight: 600;
    position: relative;
  }

  /* DOT INDICATOR */
  .mobile_menu_item a.active::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
  }
}

/* Header End */

.floating_buttons_wrapper {
  position: fixed;
  bottom: 30px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}

.floating_call_button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #222222e2;
  border-radius: 50%;
  padding: 5px;
  transition: all 0.5s ease-in;
}

.whatsapp_float {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.email_float {
  width: 50px;
  height: 50px;
  background-color: #0072c6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.email_float svg {
  fill: #fff;
}

.call_button_floating_tooltip {
  position: absolute;
  width: max-content;
  top: -40px;
  left: 30%;
  transform: translateX(-50%) scale(0);
  background: #1b1b1b;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: var(--inter);
  font-size: 14px;
  /* transform: scale(0); */
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}

.call_button_floating_tooltip::after {
  content: "";
  position: absolute;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 14px solid #1b1b1b;
  left: 58%;
  transform: translateX(-50%);
}

.floating_call_button a {
  width: 100%;
  height: 100%;
  display: block;
}

.floating_call_button a svg {
  width: 40px;
  height: 40px;
}

.floating_call_button:hover .call_button_floating_tooltip {
  transform: translateX(-50%) scale(1);
  opacity: 0.7;
}

.contact_form_overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  height: 100vh;
  width: 100%;
  display: none;
}

.contact_form_overlay.active {
  display: block;
}

.contact_form_overlay_bg_close {
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 39%);
  backdrop-filter: blur(3px);
  opacity: 1;
  visibility: hidden;
}

.contact_form_overlay.active .contact_form_overlay_bg_close {
  visibility: visible;
  animation: fadeInBg 0.5s ease-in-out;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact_form_overlay_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  font-family: var(--inter);
  visibility: hidden;
}

.contact_form_overlay.active .contact_form_overlay_container {
  visibility: visible;
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.contact_form_overlay_close_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background-color: #222222e2;
}

.contact_form_overlay_close_icon:hover {
  background-color: #ff0000;
  color: #fff;
}

.contact_form_overlay_title {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 15px;
}

.overlay-contact-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_form_overlay_form .reach-us-inputs {
  gap: 5px;
}

.contact_form_overlay_form .overlay-contact-us-form textarea {
  all: unset;
  resize: vertical;
  height: 120px;
  border: 2px solid #fff;
}

.contact_form_overlay_form .reach-us-inputs input,
.contact_form_overlay_form .overlay-contact-us-form textarea {
  font-size: 14px;
  padding: 10px 15px;
}

.contact_form_overlay_form .reach-us-inputs input::placeholder,
.contact_form_overlay_form .overlay-contact-us-form textarea::placeholder {
  text-transform: uppercase;
  font-size: 14px;
}

.contact_form_overlay_form #services {
  font-size: 14px;
  padding: 13px 15px;
}

.contact_form_overlay_form #services option {
  font-size: 14px;
}

.contact_form_overlay_form .reach-us-btn {
  font-size: 17px;
  text-align: center;
  width: auto;
}

/* Home Hero Section Start */
.home_hero_section {
  padding: 225px 0 0 0;
  height: 100vh;
  overflow: hidden;
}

.home_hero_bg_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.home_hero_bg_video video {
  width: 100%;
  height: 99%;
  object-fit: fill;
  object-position: center;
}

.hero_bg_dark_overlay {
  position: absolute;
  width: 100%;
  height: 103%;
  inset: -10px 0px -115px;
  background-image: linear-gradient(
    0deg,
    #000000 1%,
    transparent 25%,
    transparent 72%,
    #000000
  );
}

.home_hero_section_container {
  display: flex;
  align-items: center;
}

.home_hero_section_top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* align-items: center; */
  width: 640px;
}

.common_button.no_border {
  border-radius: 0;
}

.home_hero_section_top h1 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(38px, 5vw, 42px);
  /* letter-spacing: -2.52px; */
  /* text-align: center; */
  line-height: 1.3;
}

.home_hero_section_paragraphs {
  font-size: 16px;
  font-family: var(--inter);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home_hero_section_paragraphs p {
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  line-height: 1.6;
}

.parallax {
  will-change: transform; /* hint for smoother animation */
  transform: translate3d(0, 0, 0);
}

/* Home Hero Section End */

/* Home Services Section */

.home_services_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: 80px 0px;
}

.home_services_section_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home_services_section_top {
  display: flex;
  flex-direction: row;
  gap: 25px;
  /* align-items: center;
  text-align: center; */
  justify-content: space-between;
}

.home_services_section_top h2 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
  font-size: 42px;
  /* letter-spacing: -0.4px; */
  line-height: 1.2;
  flex: 45%;
}

.home_services_section_top p {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  font-size: 20px;
  /* letter-spacing: 0px; */
  line-height: 1.6;
  max-width: 700px;
  flex: 50%;
}

.home_services_section_bottom {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.home_service_card {
  display: flex;
  flex-wrap: wrap;
}

.home_service_card {
  flex-direction: row-reverse;
}

.home_service_card_left {
  flex: 79%;
  max-height: 425px;
  overflow: hidden;
}

.home_service_card_left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_service_card_right {
  flex: 21%;
}

.home_service_card_right_wrapper {
  flex-shrink: 0;
  padding: 24px 0px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home_service_card .home_service_card_right .home_service_card_right_wrapper {
  padding: 24px 20px 24px 0px;
}

.home_service_card_right_wrapper h3 {
  display: flex;
  gap: 10px;
}

.home_service_card_right_wrapper h3 a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 24px;
  /* letter-spacing: 0px; */
  line-height: 1.2;
}

.service_title_img {
  width: 36px;
  height: 36px;
}

.home_service_card_right_wrapper h3 a i {
  transform: rotate(45deg);
  font-size: 20px;
}

.home_service_card_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home_service_card_tag p {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  text-transform: capitalize;
  font-size: 14px;
  /* letter-spacing: 0px; */
  line-height: 1.2;
  background-color: rgb(39, 39, 39);
  padding: 6px 12px;
  border-radius: 10px;
}

.home_service_card_right_wrapper > p {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  /* text-transform: capitalize; */
  font-size: 15px;
  /* letter-spacing: 0px; */
  line-height: 1.4;
  color: rgb(158, 158, 158);
}

.home_service_card_right_wrapper > a {
  text-decoration: none;
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 16px;
  /* letter-spacing: 0px; */
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0047ff;
}

.home_service_card_right_wrapper > a > i {
  transform: rotate(90deg);
  font-size: 14px;
  color: #0047ff;
  transition: transform 0.3s ease-in-out;
}

.home_service_card_right_wrapper:hover > a > i {
  transform: rotate(45deg);
}

/* Home Services Section End */

/* 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;
}
.pricing_section_top h2 {
  font-family: var(--inter);
  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;
}

.pricing_section_top p {
  font-family: var(--inter);
  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;
}
.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: 50px;
  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;
}

.pricing_card h3 {
  font-family: var(--inter);
  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: var(--inter);
  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: var(--inter);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
}

.pricing_amount p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

.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: var(--inter);
  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: 30px;
}

.pricing_features li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--inter);
  color: rgb(255, 255, 255);
  font-size: 16px;
  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 */

.inner_hero_section,
.inner_marketing_hero_section {
  padding: 150px 0 0 0;
  position: relative;
}

.inner_marketing_hero_section {
  height: 80dvh;
}

.inner_hero_container {
  display: flex;
  gap: 64px;
}

.inner_hero_section_video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.inner_hero_section_video_overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* transform: translateX(-50%); */
  /* opacity: 0.3; */
}

.inner_hero_section_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-image: linear-gradient(0deg, black 2%, transparent, transparent);
}

.inner_hero_section_bg_overlay.hero_bg_blur {
  backdrop-filter: blur(8px);
  background-image: linear-gradient(0deg, black 2%, rgba(0, 0, 0, 0.3));
}

.inner_hero_container_left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 40%;
}

.inner_hero_heading {
  word-break: break-word;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 44px;
  /* letter-spacing: 0px; */
  line-height: 1.2;
  color: #fff;
  font-family: var(--inter);
}

.inner_hero_heading.marketing_heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}

.inner_hero_heading.branding_heading {
  font-size: 36px;
}

.inner_hero_paragraph {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  /* letter-spacing: -0.08px; */
}

.inner_hero_container_right {
  display: flex;
  gap: 40px;
  flex: 65%;
  border-style: solid;
  border-color: rgb(80, 80, 80);
  border-width: 0.968px;
  border-radius: 9.681px;
  height: 378px;
  overflow: hidden;
}

.inner_hero_container_right.branding_hero_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner_hero_branding_container {
  display: flex;
  gap: 30px;
}

.common_carousel_container {
  display: flex;
  height: 378px;
  flex: 60%;
  border: 1px solid rgba(80, 80, 80, 0.466);
  border-radius: 9px;
  width: 58%;
}

.common_carousel_container.w-100 {
  width: 100%;
}

.common_carousel_container.w-50 {
  width: 48%;
  flex: 48%;
}

.common_carousel_container_left {
  flex: 65%;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  overflow: hidden;
}

.b-radius.common_carousel_container_left {
  border-radius: 9.8888px;
}

.common_carousel_container_left.fl-70 {
  flex: 70%;
}

.common_carousel_container_right {
  flex: 45%;
  background-color: rgb(12, 12, 12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
}

.common_carousel_container_right.fl-30 {
  flex: 30%;
}

.common_carousel_container_right_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.common_carousel_container_right_content h3 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  /* letter-spacing: 0px; */
  line-height: 1.4;
}

.common_carousel_container_right_content p {
  color: rgb(158, 158, 158);
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  /* letter-spacing: 0px; */
  line-height: 1.5;
}

.inner_hero_marketing_container {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 20px;
}

.inner_hero_marketing_container_right {
  display: flex;
  gap: 40px;
  flex: 65%;
}

.inner_hero_marketing_wrapper {
  width: clamp(318px, 50vw, 840px);
  height: clamp(190px, 35vw, 483px);
  position: relative;
}

.inner_hero_marketing_wrapper img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  aspect-ratio: 1/1;
}

.pl {
  max-width: 1350px;
  margin: 0 0 0 auto;
}

.inner_hero_marketing_overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 15px;
  width: calc(100% - 22.5%);
  margin: auto;
  height: calc(100% - 15%);
  background-color: #000;
}

.inner_hero_marketing_overlay_left {
  flex: 1.5;
  height: 100%;
  overflow: hidden;
}

.inner_hero_marketing_overlay_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 0% 0;
  transition: transform 0.3s ease;
  will-change: transform;
}

.inner_hero_marketing_overlay_left img:hover {
  transform: scale(1.8);
  transform-origin: 50% 0% 0;
}

.inner_hero_marketing_overlay_right {
  flex: 1;
  background-color: rgb(12, 12, 12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.inner_hero_marketing_overlay_right_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner_hero_marketing_overlay_right_content h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 27px;
  line-height: normal;
  color: #ffffff;
}

.inner_hero_marketing_overlay_right_content p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 12.8px;
  line-height: 1.6;
  color: #ffffff;
}

.inner_hero_container_right_carousel_one {
  display: flex;
  gap: 40px;
  height: 100%;
  width: 100%;
  transform: rotate(-10deg) translate(-140px, -80px);
}

.inner_hero_container_right_group {
  display: flex;
  flex-shrink: 0;
  width: 48%;
  height: 100%;
  padding-bottom: 40px;
  flex-direction: column;
  gap: 40px;
  animation: move 10s linear infinite;
}

.inner_hero_container_right_group img {
  /* flex: 0 0 auto; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition: transform 0.3s ease;
}

@keyframes move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

.inner_hero_container_right_group:nth-child(2) {
  animation-delay: -8s;
}

/* Gradient Button */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.rotating-border-btn {
  position: relative;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  --x: 50%;
  --y: 50%;
  width: max-content;
  text-decoration: none;
  font-family: var(--inter);
}

/* 🔹 RADIAL FILL (small circle by default) */
.rotating-border-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    140deg,
    rgb(255, 0, 0),
    rgb(245, 96, 32),
    rgb(113, 63, 171),
    rgb(34, 43, 255),
    rgb(0, 217, 246)
  );

  /* start as tiny circle */
  clip-path: circle(0% at var(--x) var(--y));
  transition: clip-path 0.5s ease-in-out;
  z-index: -1;
}

/* 🔹 ROTATING BORDER */
.rotating-border-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;

  background: conic-gradient(
    from var(--angle),
    rgb(255, 0, 0),
    rgb(245, 96, 32),
    rgb(113, 63, 171),
    rgb(34, 43, 255),
    rgb(0, 217, 246),
    rgb(255, 0, 0)
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: spin 3s linear infinite;
  z-index: -2;
}

/* 🔥 HOVER STATE */
.rotating-border-btn:hover::after {
  /* large enough to fill entire button */
  clip-path: circle(150% at var(--x) var(--y));
}

.rotating-border-btn:hover::before {
  opacity: 0;
  animation-play-state: paused;
  transition: opacity 0.2s ease;
}

/* Border rotation */
@keyframes spin {
  to {
    --angle: 360deg;
  }
}

/* Button Common */

.common_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: var(--inter);
  font-size: clamp(13.323px, 3vw, 18px);
  font-weight: 600;
  padding: 12px clamp(17px, 2vw, 24px);
  text-transform: capitalize;
  width: fit-content;
  height: fit-content;
  transition: border-radius 0.3s ease;
}

.common_button:hover {
  border-radius: 30px;
}

/* Common Tick Card */
.common_tick_card {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 45px;
}

.common_tick_card_item {
  display: flex;
  font-family: var(--inter);
  text-transform: capitalize;
  align-items: center;
  gap: 32px;
  flex: 1 1 49%;
  border-radius: 9px;
  border: 1px solid rgba(80, 80, 80, 0.466);
  padding: 26px 30px;
}

.common_tick_card_item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Header Common Container Start*/
.header_common_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header_common_container h2 {
  word-break: break-word;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.2;
  color: #ffffff;
  /* letter-spacing: 0px; */
  text-transform: capitalize;
}

.header_common_container p {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  line-height: -0.1px;
  font-style: normal;
  color: #ffffff;
}

/* Header Common Container End */

.inner_002_container {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.inner_002_bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}

.inner_002_bottom p {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  width: 70%;
}

/* Brand Logo Carousel */

.brands_logo_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.brands_logo_container h2 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(32px, 5vw, 42px);
  /* letter-spacing: -0.4px; */
  text-align: center;
  line-height: 1.3;
}

.brands_logo_wrapper {
  width: 100%;
  height: 100%;
}

.brand_logo_carousel {
  display: flex;
  width: 100%;
  position: relative;
  /* height: 100%; */
  overflow-x: auto;
  user-select: none;
  pointer-events: none;
}

.brand_logo_carousel::-webkit-scrollbar {
  display: none;
}

.brand_logo_carousel::-moz-scrollbar {
  display: none;
}

.brand_logo_carousel::-ms-scrollbar {
  display: none;
}

.brand_logo_carousel::-o-scrollbar {
  display: none;
}

.brand_logo_carousel::-scrollbar {
  display: none;
}

.brand_logo_carousel::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    90deg,
    black 1%,
    transparent 8%,
    transparent 90%,
    black
  );
}

.brand_logo_carousel_group {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  display: flex;
  gap: 20px;
  width: 100%;
}

.lr_animation {
  animation: move_brand 60s linear infinite;
}

.rl_animation {
  animation: move_brand_reverse 60s linear infinite;
}

.brand_logo_carousel_group_img {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: clamp(97px, 20vw, 200px);
  height: clamp(50px, 12vw, 120px);
  /* border: 1px solid rgba(80, 80, 80, 0.449); */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.brand_logo_carousel_group_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes move_brand {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}

@keyframes move_brand_reverse {
  from {
    translate: -100%;
  }
  to {
    translate: 0;
  }
}

.mobile_screen_brands_logo {
  display: none;
  gap: 30px;
  justify-content: center;
}

.mobile_screen_brands_logo_left,
.mobile_screen_brands_logo_right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile_screen_brands_logo_left .brand_logo_carousel_group_img,
.mobile_screen_brands_logo_right .brand_logo_carousel_group_img {
  flex-basis: 78px;
  height: 100px;
}

.mobile_screen_brands_logo_right {
}

/* Home Work Section */

.home_work_section {
  height: 100%;
}

.home_work_container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  height: 100%;
  gap: 30px;
  backdrop-filter: blur(25px);
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 54px 42px;
  border: 1px solid rgba(67, 67, 67, 0.5);
}

.home_work_container_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 20px;
  font-family: var(--inter);
}

.home_work_container_left_title {
  font-size: 92px;
  font-weight: 600;
  color: white;
}

.home_work_container_left_text {
  font-size: 24px;
  font-weight: 400;
  color: white;
  width: 100%;
  line-height: 1.5;
}

.home_work_container_left_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home_work_container_left_list li {
  width: max-content;
  transition: transform 0.3s ease;
}
.home_work_container_left_list li a {
  width: 100%;
  text-decoration: none;
  font-size: 18px;
  color: white;
  transition: color 0.3s ease;
}

.home_work_container_left_list li a i {
  margin-left: 5px;
  transform: rotate(45deg);
  font-size: 16px;
}

.home_work_container_left_list li:hover {
  color: #ff6600;
  transform: scale(1.1);
}

/* Slider styles */
.home_work_container_right {
  height: 100%;
}

.home_work_slider_container {
  height: clamp(250px, 50vw, 450px);
  max-height: 100%;
  position: relative;
  user-select: none;
}

.home_work_slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.home_work_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.home_work_slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.home_work_slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* border-radius: 16px; */
}

/* ARROWS */
.slider_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.slider_arrow.prev {
  left: 15px;
}
.slider_arrow.next {
  right: 15px;
}

/* PROGRESS BAR */
.slider_progress {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.slider_progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #007bff;
}

/* DOTS */
.home_work_slider_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.home_work_slider_dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.home_work_slider_dots span.active {
  background: #007bff;
  transform: scale(1.3);
}

@media screen and (max-width: 1024px) {
  .home_work_container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .home_work_container_left {
  }

  .home_work_container_left_title {
    font-size: 48px;
  }

  .home_work_container_left_text {
    font-size: 18px;
  }
}

/* Inner Page Section 4 */
.inner_page_section_4_container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.inner_page_section_4_left {
  flex: 40%;
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.inner_page_section_4_left h2 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.3;
  color: #ffffff;
  text-transform: capitalize;
  /* letter-spacing: 0px; */
}

.inner_page_section_4_left p {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 16px;
  /* letter-spacing: 0px; */
  line-height: 1.4;
}

.inner_page_section_4_button {
  all: unset;
  font-family: var(--inter);
  background-color: rgb(0, 71, 255);
  width: fit-content;
  border-radius: 5px;
  padding: 12px 24px;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 20px;
  /* letter-spacing: 0px; */
  line-height: 1.4;
  cursor: pointer;
}

.inner_page_section_4_right {
  flex: 60%;
  columns: 2 300px;
  height: 100%;
}

.inner_page_section_4_right_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  break-inside: avoid;
  margin-bottom: 20px;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_page_section_4_right_branding_content {
  min-height: 245px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 20px;
  justify-content: center;
}

.inner_page_section_4_right_content p,
.inner_page_section_4_right_branding_content p {
  font-family: var(--inter);
  color: rgb(158, 158, 158);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  /* letter-spacing: 0px; */
  line-height: 1.5;
}

.inner_page_section_4_right_content .touch_icon {
  width: 100px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 12px;
}

.bottom_img {
  width: 100%;
  height: 130px;
  /* aspect-ratio: 2/1; */
}

/* Inner Services Section */

.inner_services_container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  margin-top: 45px;
}

.inner_service_card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.075);
  padding: 54px;
}

.inner_service_card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  aspect-ratio: 1/1;
}

.inner_service_card h3 {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 8px;
}

.inner_service_card p {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* Work Page */

.work-lists {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work_hero_left.inner_hero_container_left {
  flex: 48%;
  justify-content: space-between;
}

.work_hero_heading.inner_hero_heading {
  font-size: 32px;
}

.work_hero_carousel.common_carousel_container {
  flex: 49%;
  width: 49%;
}

.work-lists a {
  text-decoration: none;
  font-family: var(--inter);
  display: flex;
  text-transform: capitalize;
  gap: 5px;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  width: max-content;
  font-variation-settings: normal;
  /* letter-spacing: 0px; */
  line-height: 0;
  transition: transform 0.2s ease-in;
}

.work-lists a i {
  transform: rotate(45deg);
  font-size: 16px;
}

.work-lists a:hover {
  transform: scale(1.05);
}

/* Work Section 002 */

.works_section_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.work_section_container_left {
  flex: 48%;
  height: 378px;
}

.work_section_container_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  height: 100%;
}

.work_section_work_container {
  border: 1px solid rgb(80, 80, 80);
  overflow: hidden;
  border-radius: 9px;
}

.work_section_work_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-h-100.work_section_container_left {
  height: 100%;
}

.grid.work_section_container_wrapper {
  grid-template-columns: repeat(auto-fill, minmax(217px, 1fr));
}

/* Common CTA Banner */

.common_cta_banner_container_wrapper {
  width: 100%;
  position: relative;
}

.common_cta_banner_container {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.common_cta_banner_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 57, 204);
  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: 300px;
  /* margin-right: 20px; */
  border-radius: 9px;
  overflow: hidden;
  height: 250px;
}

.hero_carousel_cta_item {
  height: 180px;
}

.common_cta_banner_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.common_cta_banner_content {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: clamp(30px, 3vw, 40px) clamp(15px, 3vw, 40px);
}

.common_cta_banner_content_left,
.common_cta_banner_content_right {
  flex: 50%;
}

.common_cta_banner_content_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.common_cta_banner_content_left h2 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.2;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1;
  /* letter-spacing: 0; */
}

.common_cta_banner_content_left p {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  /* letter-spacing: 0; */
  color: #ffffff;
}

.common_cta_banner_content_right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.common_cta_banner_tick_card_item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.common_cta_banner_tick_card_item img {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
  object-fit: contain;
}

.common_cta_banner_tick_card_item p {
  font-family: var(--inter);
  word-break: break-word;
  text-transform: capitalize;
  font-weight: 400;
  font-size: clamp(15px, 3vw, 17px);
  line-height: clamp(20px, 2vw, 26px);
  /* letter-spacing: 0px; */
  color: #ffffff;
}

/* Work Single Page */
/* Work Single Page */
.work-single-hero {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 150px 0px 0px;
}

.work_single_hero_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.work_single_hero_top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.work_single_hero_top h2 {
  text-transform: capitalize;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 42px;
}

.work_single_hero_top button {
  all: unset;
  /* width: max-content; */
  width: 180px;
  height: 45px;
  display: flex;
  border: 1px solid rgb(158, 158, 158);
}

.work_single_hero_top button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  font-family: var(--inter);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.work_single_hero_top button a:hover {
  background-color: rgba(80, 80, 80, 0.421);
}

.work_single_hero_top button a i {
  transform: rotate(45deg);
}

.work-single-hero header {
  /* transform: translateY(20px); */
  /* position: absolute; */
}

.work_single_hero_bottom {
  display: flex;
  justify-content: center;
  position: relative;
  height: 440px;
  width: 100%;
}

.work_single_hero_bottom .destop_v {
  width: 65%;
  height: 100%;
  align-self: center;
  /* display: none; */
}

.mobile_v {
  position: absolute;
  bottom: 10px;
  right: 15%;
  width: 180px;
}

.single-hero-overflow {
  position: absolute;
  background-image: linear-gradient(transparent 50%, #000);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.work-single-content-head {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}

.work-single-wrapper {
  display: flex;
  gap: 25px;
  color: #fff;
  font-family: "Inter", sans-serif;
  margin-top: 50px;
}

.work-single-tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 50%;
}

.work-single-tag-head {
  font-weight: 400;
  font-size: 24px;
}

.work-single-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.work-single-tags > p {
  padding: 12px;
  font-size: clamp(13px, 2vw, 15px);
  border: 1px solid rgb(80, 80, 80);
  /* background-color: #ffffff24; */
}

.work-single-contents {
  flex: 50%;
}

.work-single-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-single-contents-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 400px;
  position: relative;
  line-height: 1.75;
  font-size: 1.05rem;
  transition: max-height 0.3s ease;
}

.work-single-contents-wrapper:not(.expand)::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent 40%, #000);
}

.work-single-contents-wrapper.expand {
  max-height: 100%;
  margin-bottom: 20px;
}

.expand-button {
  all: unset;
  width: max-content;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  text-transform: capitalize;
  font-size: clamp(20px, 3vw, 24px);
  padding-bottom: 5px;
  position: relative;
}

.work-single-contents-wrapper + .expand-button i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.work-single-contents-wrapper.expand + .expand-button i {
  transform: rotate(-45deg);
}

.expand-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0047ff;
  transition: width 0.5s ease;
}

.expand-button:hover::after {
  width: 40%;
}

/* Client Feedback */

.work_single_client_review {
  position: sticky;
  top: 120px;
}

.work_single_client_review_top {
  font-family: var(--inter);
  font-weight: 400;
  word-break: break-word;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(32px, 3vw, 42px);
  /* letter-spacing: 0px; */
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 20px;
}

.client_common_review {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.client_common_review > p > i {
  font-size: 45px;
}

.client_review_text {
  font-family: var(--inter);
  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: var(--inter);
  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: var(--inter);
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 16px;
  /* letter-spacing: 0px; */
  line-height: 1.1;
}

/* Footer Section */

.footer-section {
  position: relative;
  padding: 80px 0 0 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 0 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Footer Top */
.footer-container-top {
  position: relative;
  overflow: hidden;
  height: 190px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
}

.slide-footer {
  height: 190px;
  display: flex;
  align-items: center;
  font-family: var(--inter);
  color: #fff;
}

.slide-a {
  font-size: 135px;
  font-weight: 700;
  font-family: var(--inter);
}

.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;
  gap: 40px;
  flex-direction: column;
  flex: 2;
}

.footer_links_container {
  display: flex;
  gap: 50px;
  flex: 2;
  flex-wrap: wrap;
}

.footer_links_card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-heading {
  font-size: 1.2rem;
  line-height: 110%;
  font-family: var(--inter);
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links-list a {
  text-decoration: none;
  font-family: var(--inter);
  text-transform: capitalize;
  font-size: 1rem;
}

.footer-bottom-left-info {
  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: var(--inter);
  font-weight: bold;
  text-transform: capitalize;
}

.footer-address-container-detail {
  font-family: var(--inter);
  text-transform: capitalize;
  font-size: 1rem;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--inter);
  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: var(--inter);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

/* 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;
  color: #000;
}

.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: 15px;
  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%;
  }

  .home_hero_bg_video video {
    object-fit: cover;
    object-position: right 370px;
  }

  .hero_bg_dark_overlay {
    background-image: linear-gradient(
      180deg,
      black 60%,
      transparent,
      black 96%
    );
  }
}

/* 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: 70px 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: var(--inter);
  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: var(--inter);
  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: var(--inter);
  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;
}

/* Testimonial Slider */

.testimonial_section {
  padding: 80px 0;
}

.testimonial_container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.testimonial_left {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  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: var(--inter);
  cursor: pointer;
}

.client-title.active {
  color: #fff;
}

.testimonial_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: clamp(400px, 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;
}

/* 404 Page Styling */
.dm-404-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial;
  color: #0f1724;
}

.dm-404-inner {
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

/* ---------- Left content ---------- */
.dm-404-content h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 0 0 8px;
  letter-spacing: -4px;
  color: #fff;
}

.dm-404-content .sub {
  font-size: clamp(16px, 2vw, 18px);
  color: #4b5563;
  margin-bottom: 28px;
}

.dm-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0ea5a4, #0284c7);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dm-404-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.22);
}

/* ---------- Right card ---------- */
.dm-404-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.75)
  );
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 36, 0.08);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dm-404-card h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #111827;
}

.dm-404-card p {
  color: #475569;
  font-size: 14px;
}

.dm-404-recent {
  margin-top: 10px;
}

.dm-404-recent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-404-recent a {
  color: #0b74b7;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.dm-404-recent a:hover {
  text-decoration: underline;
}

/* ---------- Animated Blobs ---------- */
.dm-blob {
  position: absolute;
  filter: blur(36px);
  opacity: 0.85;
  transform-origin: center;
  z-index: 1;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  top: -20%;
  left: -10%;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: linear-gradient(90deg, #fb7185, #f59e0b);
  right: -8%;
  top: 10%;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: linear-gradient(90deg, #34d399, #60a5fa);
  left: 40%;
  bottom: -18%;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .dm-404-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .radio-checkbox-group {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    max-width: 100%;
    width: 100%;
  }
}

/* Blog Page Design */
.modern-blog-wrap {
  padding: 150px 20px 0 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  color: #0f1724;
}

/* Layout */
.modern-blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

/* Hero / Featured post */
.mb-hero {
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.7),
    rgba(22, 22, 22, 0.7)
  );
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 36, 0.06);
  align-items: center;
  border: 1px solid #222;
}

.mb-hero .thumb {
  width: 46%;
  min-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  height: 300px;
  display: block;
  background: #e6eef6;
}

.mb-hero .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mb-hero .meta {
  width: 54%;
}

.mb-hero .meta .kicker {
  display: inline-block;
  background: #e0f2f1;
  color: #00695c;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.mb-hero h2 {
  margin: 6px 0 12px;
  font-size: clamp(16px, 2.6vw, 22px);
  line-height: 1.12;
}

.mb-hero .excerpt {
  color: #475569;
  font-size: 15px;
  margin-bottom: 16px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis;
}

/* Grid of posts */
.mb-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.mb-card {
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.7),
    rgba(22, 22, 22, 0.7)
  );
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(2, 6, 23, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.mb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.mb-card .thumbnail {
  height: 170px;
  width: 100%;
  overflow: hidden;
  background: #f0f4f8;
}

.mb-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mb-card:hover .thumbnail img {
  transform: scale(1.06);
}

.mb-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mb-card .card-body .cat {
  font-size: 12px;
  color: #0b74b7;
  font-weight: 700;
}

.mb-card .card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.mb-card .card-body .meta {
  font-size: 13px;
  color: #64748b;
}

.mb-card .card-body p.excerpt {
  color: #475569;
  font-size: 14px;
  margin: 8px 0 0;
  flex: 1;
}

/* Sidebar */
.mb-sidebar {
  position: sticky;
  top: 150px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--inter);
}

/* Widgets inside sidebar */
.mb-widget {
  background: #0e0e0e;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(2, 6, 23, 0.04);
  border: 1px solid #222;
}

.mb-widget h4 {
  margin: 0 0 8px;
  font-size: 16px;
}
.mb-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mb-widget a {
  color: #0b74b7;
  text-decoration: none;
  font-weight: 600;
}

/* Pagination */
.mb-pagination {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.mb-pagination a,
.mb-pagination span {
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  color: #0f1724;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.04);
}

/* responsive */
@media (max-width: 980px) {
  .modern-blog-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .mb-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .mb-hero .thumb,
  .mb-hero .meta {
    width: 100%;
  }
  .mb-grid {
    grid-template-columns: 1fr;
  }
  .mb-sidebar {
    order: 2;
  }
}

/* Blog Single Page Style */
.single-wrap {
  font-family: var(--inter), Arial;
  color: #0f1724;
  min-height: 60vh;
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #06b6d4, #7c3aed);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Container */
.single-inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgb(44 44 44 / 16%), rgb(67 67 67 / 29%));
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.06);
}

/* Featured image */
.single-hero {
  width: 100%;
  height: clamp(260px, 40vw, 420px);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title & meta */
.single-title {
  font-size: clamp(24px, 3.6vw, 36px);
  margin: 6px 0 8px;
  line-height: 1.08;
}

.single-meta {
  color: #64748b;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

/* Content */
.single-content {
  color: #0f1724;
  font-size: 18px;
  line-height: 1.77;
  margin-top: 10px;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ============================
   Single Post Content Styling
   ============================ */
.single-content {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, sans-serif;
  color: #e9e9e9;
  line-height: 1.75;
  font-size: 1.05rem;
  background: #222; /* matches your dark theme */
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Headings */
.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6,
.work-single-contents-wrapper h1,
.work-single-contents-wrapper h2,
.work-single-contents-wrapper h3,
.work-single-contents-wrapper h4,
.work-single-contents-wrapper h5,
.work-single-contents-wrapper h6 {
  color: #fff;
  line-height: 1.4;
  margin: 1.6em 0 0.7em;
  font-weight: 700;
}

.single-content h1,
.work-single-contents-wrapper h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.3em;
}
.single-content h2,
.work-single-contents-wrapper h2 {
  font-size: 1.9rem;
}
.single-content h3,
.work-single-contents-wrapper h3 {
  font-size: 1.6rem;
}
.single-content h4,
.work-single-contents-wrapper h4 {
  font-size: 1.35rem;
  color: #cfd7df;
}
.single-content h5,
.work-single-contents-wrapper h5 {
  font-size: 1.2rem;
  color: #ccc;
}
.single-content h6,
.work-single-contents-wrapper h6 {
  font-size: 1.05rem;
  color: #aaa;
}

/* Paragraphs */
.single-content p,
.work-single-contents-wrapper p {
  margin: 1.2em 0;
  color: #ddd;
}

/* Links */
.single-content a,
.work-single-contents-wrapper a {
  color: #4fb3ff;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.single-content a::after,
.work-single-contents-wrapper a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #4fb3ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.single-content a:hover,
.work-single-contents-wrapper a:hover {
  color: #9bd3ff;
}
.single-content a:hover::after,
.work-single-contents-wrapper a:hover::after {
  transform: scaleX(1);
}

/* Lists */
.single-content ul,
.single-content ol,
.work-single-contents-wrapper ul,
.work-single-contents-wrapper ol {
  margin: 1.3em 0 1.3em 2em;
  padding: 0;
}
.single-content ul li,
.single-content ol li,
.work-single-contents-wrapper ul li,
.work-single-contents-wrapper ol li {
  margin-bottom: 0.6em;
  line-height: 1.7;
}
.single-content ul li::marker,
.work-single-contents-wrapper ul li::marker {
  color: #4fb3ff;
}
.single-content ol li::marker,
.work-single-contents-wrapper ol li::marker {
  color: #9bd3ff;
}

/* Blockquotes */
.single-content blockquote,
.work-single-contents-wrapper blockquote {
  margin: 1.8em 0;
  padding: 1.2em 1.5em;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #4fb3ff;
  border-radius: 8px;
  color: #d7e7f7;
  font-style: italic;
  position: relative;
}
.single-content blockquote::before,
.work-single-contents-wrapper blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  left: 10px;
  top: -15px;
  color: rgba(255, 255, 255, 0.15);
  font-family: Georgia, serif;
}

/* Images */
.single-content img,
.work-single-contents-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 1.5em auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Image captions */
.single-content figure,
.work-single-contents-wrapper figure {
  margin: 2em 0;
  text-align: center;
}
.single-content figcaption,
.work-single-contents-wrapper figcaption {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 0.5em;
}

/* Code blocks */
.single-content pre,
.single-content code,
.work-single-contents-wrapper pre,
.work-single-contents-wrapper code {
  font-family: "Fira Code", monospace;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  color: #b8e994;
}
.single-content code,
.work-single-contents-wrapper code {
  padding: 2px 6px;
}
.single-content pre,
.work-single-contents-wrapper pre {
  padding: 15px;
  overflow-x: auto;
  margin: 1.5em 0;
}

/* Tables */
.single-content table,
.work-single-contents-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  color: #ddd;
  font-size: 0.95rem;
}
.single-content th,
.single-content td,
.work-single-contents-wrapper th,
.work-single-contents-wrapper td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  text-align: left;
}
.single-content th,
.work-single-contents-wrapper th {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Highlighted text */
.single-content mark,
.work-single-contents-wrapper mark {
  background: #4fb3ff;
  color: #111;
  padding: 0 4px;
  border-radius: 3px;
}

/* Horizontal rule */
.single-content hr,
.work-single-contents-wrapper hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2em 0;
}

.single-content {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .single-content {
    padding: 25px 20px;
    font-size: 1rem;
  }
  .single-content h1,
  .work-single-contents-wrapper h1 {
    font-size: 1.8rem;
  }
  .single-content h2,
  .work-single-contents-wrapper h2 {
    font-size: 1.6rem;
  }
  .single-content h3,
  .work-single-contents-wrapper h3 {
    font-size: 1.4rem;
  }
}

/* Post footer: tags, share, prev/next */
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Tags */
.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.post-tags a {
  display: inline-block;
  padding: 6px 10px;
  background: #eef2ff;
  color: #4338ca;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}

/* Prev/Next */
.post-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Author box */
.author-box {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.04);
  align-items: center;
}

.author-avatar {
  min-width: 64px;
  min-height: 64px;
  border-radius: 999px;
  overflow: hidden;
}

.author-avatar img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}

.author-meta h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.author-meta h4 a {
  color: #222;
  text-decoration: none;
}
.author-meta p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

/* Related posts */
.related {
  margin-top: 34px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-card {
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.7),
    rgba(22, 22, 22, 0.7)
  );
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 10px;
  align-items: center;
}

.related-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* Comments */
.comments-area {
  margin-top: 30px;
}

/* Comments wrapper */
.comments-wrapper {
  background: #222; /* requested background color */
  color: #e8e8e8;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  margin-top: 40px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

/* Title */
.comments-title {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 18px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Comment list items */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.comment-list li {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
  align-items: flex-start;
}

.comment-list .comment-body {
  flex: 1;
}

.comment-list img.avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.04);
}

/* Meta info */
.comment-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.comment-content {
  margin-top: 8px;
  color: #e6e6e6;
  line-height: 1.6;
}

/* Reply link */
.comment-reply-link {
  color: #9bd3ff;
  text-decoration: none;
  font-size: 0.85rem;
}

.comment-reply-link:hover {
  color: #7cc0ea;
}

/* Form */
.modern-comment-form {
  margin-top: 10px;
}

/* form rows */
.form-row,
.comment-notes,
.logged-in-as {
  margin-bottom: 14px;
}

/* Input wrapper */
.input-wrap {
  position: relative;
}

/* Inputs and textarea (floating label) */
.form-input {
  width: 100%;
  padding: 14px 14px 14px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.12s ease, background 0.2s;
  outline: none;
}

/* bigger textarea padding */
textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* floating label */
.floating-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.18s ease;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  padding: 0 6px;
  background: transparent;
}

/* when input has value or focus, move label up */
.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label,
.form-input:-webkit-autofill + .floating-label {
  top: -9px;
  font-size: 0.78rem;
  color: #9bd3ff;
  background: #222;
}

/* Focus styles */
.form-input:focus {
  border-color: #4fb3ff;
  box-shadow: 0 4px 20px rgba(79, 179, 255, 0.07);
}

/* Submit button */
.form-submit {
  margin-top: 14px;
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #4fb3ff, #0b79c7);
  border: none;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

/* field error messages */
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #ffb3b3;
  min-height: 18px;
}

/* Responsive adjustments */
@media (max-width: 720px) {
  .comments-wrapper {
    padding: 22px;
  }
  .comment-list li {
    flex-direction: row;
    gap: 10px;
    padding: 12px;
  }
  .form-input {
    padding: 12px;
  }
}

/* Remove default label overlap in some browsers */
input.form-input:-webkit-autofill + .floating-label {
  top: -9px;
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 880px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .single-inner {
    padding: 18px;
  }
  .single-title {
    font-size: 22px;
  }
  .author-box {
    flex-direction: row;
    gap: 12px;
  }
}

/*  */

/* Responsive */

@media (max-width: 1024px) {
  .inner_hero_container,
  .inner_hero_marketing_container,
  .inner_hero_branding_container {
    flex-direction: column;
  }

  .common_carousel_container {
    height: auto;
    flex: 100%;
    width: 100%;
  }

  .work_hero_carousel.common_carousel_container {
    width: 100%;
    flex: 100%;
  }

  .work-lists {
    align-items: center;
    text-align: center;
  }

  .work_single_hero_bottom {
    height: 100%;
  }

  .work_single_hero_bottom .destop_v {
    width: 100%;
    height: auto;
  }

  .mobile_v {
    display: none;
  }

  .inner_hero_container_left {
    flex: 100%;
    align-items: center;
    text-align: center;
  }

  .inner_page_section_4_container {
    flex-direction: column;
  }

  .inner_page_section_4_left {
    flex: 100%;
    text-align: center;
    align-items: center;
  }

  .inner_002_bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .common_cta_banner_content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* .home_hero_section {
    height: 100%;
  } */

  .home_hero_section {
    padding: 160px 0 0 0;
  }

  .common_carousel_container {
    flex-direction: column;
  }

  .common_carousel_container_left {
    max-height: 378px;
  }

  .brands_logo_wrapper {
    display: none;
  }

  .mobile_screen_brands_logo {
    display: flex;
  }

  .inner_hero_container,
  .inner_hero_marketing_container {
    flex-direction: column;
  }

  .inner_hero_container_left {
    flex: 100%;
    align-items: center;
    text-align: center;
  }

  .inner_hero_container_right {
    width: 100%;
    max-height: 378px !important;
    flex: 100%;
  }

  .inner_hero_container_right_carousel_one {
    transform: rotate(-5deg) translate(0px, -88px);
  }

  .inner_hero_container_right_group {
    width: 60%;
    animation: move 20s linear infinite;
  }

  .common_cta_banner_content_left {
    align-items: center;
    text-align: center;
  }

  .work-single-wrapper {
    flex-direction: column-reverse;
    gap: 80px;
  }

  .home_service_card {
    flex-direction: column;
  }

  .home_service_card:nth-child(even) {
    flex-direction: column;
  }

  .client_common_infos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial_container {
    justify-content: center;
  }

  .work_single_client_review_top {
    font-size: clamp(28px, 5vw, 36px);
    text-align: center;
  }

  .client_review_text {
    text-align: center;
  }

  .footer-container-bottom-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright-section {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }

  .faq-container {
    padding: 20px 0px;
  }

  .testimonial_left {
    display: none;
  }

  .testimonial_right {
    width: clamp(340px, 65vw, 600px);
  }
}

@media (max-width: 480px) {
  .work_single_hero_bottom .destop_v {
    display: none;
  }

  .mobile_v {
    display: block;
    position: relative;
    bottom: 0;
    right: 0;
  }

  .inner_hero_section_bg_overlay {
    background-image: linear-gradient(0deg, black 2%, #0000008c);
  }

  .inner_marketing_hero_section {
    height: 100%;
  }
}

/* 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;
  }
}

/* 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", sans-serif;
  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 */

/* 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);
  }

  .home_services_section_top {
    text-align: center;
    flex-direction: column;
  }
}

/* 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);
  }
}

/* Service Template 2 */
.inner_template_title {
  font-size: clamp(28px, 5vw, 42px);
  max-width: 800px;
  font-weight: 600;
  text-transform: capitalize;
}

.inner_template_subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.5;
  max-width: 650px;
}

/* Inner Template Hero Section */

.inner_template_hero_section {
  height: min(550px, 100vh);
  /* background-color: #444; */
  background-image: var(--bg-url);
  background-size: cover;
  /* overflow: hidden; */
}

.inner_template_hero_container {
  height: 100%;
  /* background-color: #222; */
  position: relative;
}

.inner_template_hero_top {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* background-color: purple; */
}

.inner_template_hero_title {
  padding-top: 100px;
  font-size: clamp(42px, 8vw, 78px);
  color: white;
  text-align: center;
}

.inner_template_hero_subtitle {
  font-size: clamp(18px, 3vw, 20px);
  text-align: center;
  color: rgb(210, 210, 210);
  max-width: 450px;
  line-height: 1.4;
  margin-top: 10px;
}

.inner_template_hero_bottom {
  width: 100%;
  height: 200px;
  /* background-color: red; */
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.inner_template_hero_bottom img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

/* Inner Template Section 2 */
.inner_template_section_2 {
}

.inner_template_section_2_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.inner_template_section_2_left {
  flex: 1 1 400px; /* key fix */
  min-width: 300px;
  display: flex;
  align-items: center;
}

.inner_template_section_2_title {
  font-size: clamp(32px, 6vw, 48px);
}

.inner_template_section_2_right {
  flex: 1 1 400px; /* key fix */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inner_template_section_2_right > p {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.6;
  color: rgb(220, 220, 220);
}

/* Inner Template Section 3 */

.inner_template_section_3 {
}

.inner_template_section_3_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.inner_template_section_3_left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.inner_template_section_3_title {
}

.inner_template_section_3_subtitle {
}

.inner_template_section_3_right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.inner_template_section_3_right_img {
  width: 100%;
  height: 270px;
  border-radius: 8px;
  border: 1px solid #333;
  overflow: hidden;
}

.inner_template_section_3_right_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_template_section_3_right_lists {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.inner_template_section_3_list_items {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
}

.inner_template_section_3_list_items li {
  font-size: 15px;
  /* margin-bottom: 10px; */
  display: flex;
  align-items: center;
  gap: 15px;
}

.inner_template_section_3_right_lists > p {
  font-size: 15px;
  line-height: 1.5;
}

/* Inner Template Section 4 */

.inner_template_section_4 {
}

.inner_template_section_4_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.inner_template_section_4_top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.inner_template_section_4_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.inner_template_section_4_card {
  /* background-color: #333; */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.inner_template_section_4_card_top {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner_template_section_4_card_tag {
  font-size: 90px;
  font-weight: 600;
  color: #555;
}

.inner_template_section_4_card_title {
  font-size: 16px;
  font-weight: 500;
}

.inner_template_section_4_card_subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #e4dad7;
}

/* Inner Template Section 5 */
.inner_template_section_5 {
}

.inner_template_section_5_container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.inner_template_section_5_left {
  flex: 1 1 400px; /* key fix */
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.inner_template_section_5_right {
  flex: 1 1 400px; /* key fix */
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

/* FAQ Section */

.faqs_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq {
  /* border-bottom: 1px solid #eee; */
  /* padding: 15px 0; */
}

.faq:last-child {
  border-bottom: none;
}

.faq-question.inner_template_faq {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  text-transform: capitalize;
  /* background-color: #101010; */
  font-family: var(--inter);
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 20px;
}

.faq_question_title.inner_template_faq {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(16px, 2vw, 18px);
}

.faq_question_title.inner_template_faq i {
  color: #22c55e !important;
}

.faq-question.inner_template_faq:hover {
  color: #22c55e !important;
}

.faq-question.inner_template_faq .icon {
  font-size: 28px;
  color: #fff;
  transform-origin: center center;
  transition: transform 0.3s;
}

.faq.inner_template_faq.active .faq-question .icon {
  transform: rotate(130deg);
}

.faq-answer.inner_template_faq {
  height: 0;
  overflow: hidden;
  color: #fff;
  line-height: 1.6;
  font-family: var(--inter);
  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.inner_template_faq.active .faq-answer {
  opacity: 1;
  padding: 0px 0 0 55px;
  color: #9e9e9e;
  font-size: 16px;
  height: 115px;
}

/* Inner Template Section 6 */

.inner_template_section_6_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inner_template_section_6_top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

/* Inner Template Section 6 */

.inner_template_section_6_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
}

.inner_template_section_6_card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #8888886e;
  background-color: #000000;
}

.inner_template_section_6_card > i {
  font-size: 20px;
}

.inner_template_section_6_card > p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  /* align-self: baseline; */
}

.inner_template_section_6_bottom_p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #9e9e9e;
  text-align: center;
}

/* Inner Template Section 7 */

.inner_template_section_7_container {
  padding: 20px;
}

.inner_template_section_7_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.inner_template_section_7_card {
  position: relative;
  background-color: #000000;
  border-radius: 20px;
  border: 1px solid #8888886e;
}

.inner_template_section_7_card_inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 25px;
}

.inner_template_section_7_card_inner_top {
  display: flex;
  flex-direction: column;
  gap: 10;
}

.inner_template_section_7_card_inner_mid {
  padding-left: 20px;
}

.inner_template_section_7_card_inner_mid_lists {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner_template_section_7_card_inner_mid_lists > li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inner_template_section_7_card_2_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
}

.inner_template_section_7_card_2_top > p {
  font-size: 15px;
  line-height: 1.3;
}

.inner_template_section_7_card_2_bottom {
  width: 90%;
  float: right;
  height: 210px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 20px;
}

.inner_template_section_7_card_2_bottom > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Innre Template Section 8 */

.inner_template_section_8_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inner_template_section_8_bottom {
  padding: 20px;
}

.inner_template_section_8_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.inner_template_section_6_card.section_8_temp {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}


/* WorkPage design */
.work_page_heading {
    padding-top: 100px;
    font-size: 6.25rem;
}


.work_hero_section_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
    gap: 20px;
}

.work_hero_section_left {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    padding-left: 20px;
}

.work_hero_section_heading {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
}

.work_hero_section_lists {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.work_hero_section_lists li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.work_hero_section_lists li a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.work_hero_section_lists li a i {
    font-size: 15px;
    transform: rotate(45deg);
}

.work_hero_section_lists li:hover a {
    transform: scale(1.1);
}

.work_hero_section_bottom {
    /* background: red; */
    height: 378px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    /* height: 100%; */
}

.work_hero_section_bottom_card {
    border: 1px solid rgb(80, 80, 80);
    overflow: hidden;
    border-radius: 9px;
}

.work_hero_section_bottom_card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* work_section 2 */
.work_section_2_container {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 30px;
}

.work_section_2_container_left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.work_section_2_left_top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work_section_2_left_top img {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    object-fit: cover;
    background-color: #dedede22;
    border: 1px solid #454545;
    padding: 5px;
}

.work_section_2_left_top>h2 {
    font-size: 24px;
    font-weight: 400;
}

.work_section_2_left_top>h2 a {
    text-decoration: none;
    color: #fff;
}

.work_section_2_left_mid_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(158, 158, 158);
}

.work_section_2_left_lists {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.work_section_2_left_list {
    background-color: #dedede22;
    border: 1px solid #454545;
    padding: 5px 10px;
    width: max-content;
    border-radius: 5px;
    font-size: 14px;
}

.work_section_2_container_right {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
    gap: 10px;
    /* height: 500px; */
}

.work_section_2_card {
    border: 1px solid #454545;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background: var(--work_section_2_card_bg), var(--work_section_2_card_bg_color);
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.work_section_2_card_logo {
    width: 100%;
    height: 100px;
    padding: 15px;
}

.work_section_2_card_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.work_section_2_card_banner {
    position: relative;
    bottom: 0;
    /* background-color: yellow; */
    overflow: hidden;
    height: 100%;
}

.work_section_2_card_banner img {
    width: 100%;
    object-fit: cover;
    object-position: 0px 32px;
    height: 75%;
}


@media screen and (max-width: 768px) {
    .work_section_2_container {
    grid-template-columns: 1fr;
}
}


.work_section_3_container_right {
    background-color: #21212170;
    border-radius: 20px;
    border: 1px solid #454545;
    /* height: 350px; */
    width: 100%;
    overflow: hidden;
}

.work_section_3_container_right_top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
}

.work_section_3_container_right_info_container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.work_section_3_container_right_info_logo {
    width: 70px;
    height: 70px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 50px;
}

.work_section_3_container_right_info_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work_section_3_container_right_info_text_container {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.work_section_3_container_right_info_text_heading {
    font-size: 20px;
    font-weight: 600;
}

.work_section_3_container_right_info_text_heading a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.work_section_3_container_right_info_text_heading:hover>a {
    color: skyblue;
}

.work_section_3_container_right_info_text_tag {
    font-size: 14px;
}

.work_section_3_container_right_info_meta {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 0 8px 0 8px;
}

.work_section_3_container_right_info_meta_tag {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    text-align: center;
}


/* Work Section 3 right slider */

.work_section_3_container_right_bottom {
    max-width: 100%;
    height: 100%;
    /* overflow: hidden; */

}

.work_section_3_slider_container {
  width: 100%;
  overflow: hidden;
  /* background-color: red; */
}

.work_section_3_slider {
  width: 100%;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

  touch-action: pan-y;
}

.work_section_3_slider:active {
    cursor: grabbing;
    color: red;
}

.work_section_3_slider_track {
  display: flex;
  width: max-content;
  will-change: transform;
}


.work_section_3_slider_img_wrapper {
  flex-shrink: 0;
  width: clamp(120px, 18vw, 220px);
}

.work_section_3_slider_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}


/* Work Section 4 */
.work_section_4_container_right {
    width: 100%;
    overflow: hidden;
    height: 340px;
    border-radius: 20px;
}

.work_section_4_container_right_wrapper {
    transform: rotate(-7deg) translate(-5%, -13%);
    width: 115%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.g10 {
    gap: 10px;
}