@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,300italic,regular,italic,700,700italic,900,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* :root {
  --bg_color: rgb(12 12 12);
  --light_bg_color: rgb(18 18 18);
  --light_font: rgb(135, 135, 135);
  --dark_font: rgb(24, 24, 27);
  --border_color: rgb(43, 43, 43);
  --highlight_color: rgb(74 222 128);
  --primary_font: "Work Sans", sans-serif;
} */

:root {
  --bg_color: rgb(255, 255, 255);
  --light_bg_color: rgb(250, 250, 250);
  --light_font: rgb(65, 65, 65);
  --dark_font: rgb(0, 0, 0);
  --border_color: rgb(43, 43, 43);
  --highlight_color: rgb(199 37 95 / 95%);
  --green-highlight: rgb(74 222 128);
  --primary_font: 'Poppins', sans-serif;
  ---secondary_font: 'Merriweather', sans-serif;
  --border_radius: 5px;
  --light_box_shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

body {
  background-color: var(--bg_color);
  font-family: var(--primary_font);
}

html {
  scroll-behavior: smooth;
}

/* common styling */
ul li {
  list-style: none;
}

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

.max_width {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding: 1rem;
}

.m-5 {
  margin-block: 5rem;
}

h2.heading {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.638px;
  color: var(--dark_font);
  text-align: center;
  font-family: var(---secondary_font);
}

p.section_title {
  font-size: 20px;
  font-weight: 500;
  color: var(--light_font);
  margin-block: 1.5rem;
  text-align: center;
}

.lg_screen {
  display: flex;
}

.sm_screen {
  display: none;
}

.left {
  text-align: left !important;
  color: var(--dark_font) !important;
}

/* common styling */

/* swiper */
.autoplay_client_section {
  width: 100%;
  padding: 20px 0;
  border-radius: var(--border_radius);
  text-align: center;
}

.autoplay_client_section_title {
  font-size: 1.125rem;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--light_font);
}

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

.mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper .swiper-slide img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* navbar */
nav {
  background-color: #02010100;
  position: relative;
  height: 100px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu li a {
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  line-height: 14.8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background-color: var(--highlight_color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo .logo_img {
  max-width: 75%;
  height: 100%;
  cursor: pointer;
}

.hamburger {
  display: none;
}

.menu_container {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
}

.hamburger_menu {
  display: none;
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
}

.icon_1,
.icon_2,
.icon_3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 32px;
  height: 3px;
  background-color: black;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.icon_1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}

.icon_3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}

.icon_1.a {
  transform: rotate(40deg);
}
.icon_3.b {
  transform: rotate(-40deg);
}
.icon_2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

.line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger_menu.active .line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}

.hamburger_menu.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger_menu.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -4px);
}

/* home page */
.home_page {
  min-height: 80vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.home_page .hero_img {
  position: absolute;
}

.hero_img img {
  width: 1100px;
  height: 700px;
  z-index: -1;
  opacity: 0.3;
}

.home_page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('images/Media.png');
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.home_page_title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.638px;
  color: var(--dark_font);
  text-align: center;
  font-family: var(---secondary_font);
}

.home_content p {
  margin-block: 0.8rem;
}

/* impact section */

.impact {
  min-height: 80vh;
  display: grid;
  place-items: center;
  width: 100%;
}

.impact_content {
  text-align: center;
}

.impact_content .impact_content_desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--light_font);
  margin-block: 1rem;
}

.impact_card .heading {
  font-family: var(--primary_font);
}

.impact_content .impact_content_desc {
  font-weight: 300;
}

.impact_card_section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 2rem;
  background: var(--light_bg_color);
  z-index: 1;
}

.impact_card_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, #e0e0e0 1px, transparent 0);
  /* background: url("images/earth-1.png") no-repeat center/cover; */
  background-size: 15px 15px;
  z-index: -1;
}

.impact_cards {
  display: flex;
  flex-wrap: wrap;
}

.impact_card {
  flex-basis: 20%;
}

/* 
.impact_cards .impact_card {
  text-align: left;
} */

.impact_card .card_title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark_font);
}

.impact_card h2.heading {
  display: inline;
}

.impact_card .card_desc {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--dark_font);
}

/* team section */

.team {
  min-height: 55vh;
  width: 100%;
  margin-bottom: 3rem;
}

.team_content .team_desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-block: 1rem;
  color: var(--light_font);
  text-align: center;
}

.team_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.team_card {
  background-color: var(--bg_color);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 1rem;
  border-radius: var(--border_radius);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.team_card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.team_card_img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: center;
  border-radius: 2px;
  display: block;
  margin: auto;
  filter: grayscale(100%);
}

.team_card:hover .team_card_img {
  filter: grayscale(0%);
}

.team_card .team_card_name {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.team_card .team_card_position {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--light_font);
}

.team_card .team_card_social {
  display: flex;
  gap: 1rem;
}

.team_card_social > a {
  cursor: pointer;
}

/* why us section */

.why_us_section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-top: 4rem;
  min-height: 60vh;
}

.why_us_tabs {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
}

.why_us_tab {
  width: 100%;
  height: 50px;
  border-radius: 5px;
}

.why_us_tab.active {
  background-color: var(--dark_font);
  position: relative;
}

.why_us_tab h3 {
  line-height: 50px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  color: var(--dark_font);
}

.why_us_tab.active h3 {
  color: var(--light_bg_color);
}

.why_us_tabs .why_us_tab.active::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--dark_font);
}

.why_us_contents {
  background-color: var(--bg_color);
  border-radius: var(--border_radius);
  border: 1px solid var(--dark_font);
}

.why_us_content {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
}

.why_us_content img {
  width: 100%;
  display: block;
  height: 350px;
  object-fit: inherit;
  border-radius: var(--border_radius);
  filter: grayscale(100%);
}

.why_us_content .content_header {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.why_us_content .tab_content {
  padding: 1rem 0;
  text-align: start;
}

.why_us_content .tab_content .tab_heading {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--light_font);
}

.why_us_content .tab_content h4 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.why_us_content .tab_content p {
  color: var(--light_font);
}

/* portfolio section */

.portfolio {
  min-height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio_section {
  margin-block: 2rem;
}

.portfolio_section .portfolio_tabs {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}

.portfolio_tabs .portfolio_tab.active {
  background-color: var(--dark_font);
}

.portfolio_tabs .portfolio_tab {
  text-align: center;
  padding: 20px;
  border-radius: var(--border_radius);
  width: 25%;
  border: 1px solid var(--dark_font);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* word-break: break-all; */
}

.portfolio_tabs .portfolio_tab h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  color: var(--dark_font);
}

.portfolio_tab.active h3 {
  color: var(--light_bg_color);
}

.portfolio_section .portfolio_contents .portfolio_content {
  min-height: 35vh;
  padding: 2rem;
  border-radius: var(--border_radius);
  text-align: start;
  border: 1px solid var(--dark_font);
}

.content_header {
  position: relative;
  display: inline-block;
}

.content_heading {
  font-size: 1.5rem;
  margin: 0;
  position: relative;
  z-index: 2;
  color: var(--dark_font);
}

.behind_text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-5%, -50%);
  font-size: 4rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.portfolio_content p {
  color: var(--light_font);
  margin-top: 2rem;
  line-height: 1.5;
}

.row {
  display: grid;
  grid-template-columns: 2fr 0.5fr;
  gap: 1rem;
}

.content_desc_image {
  width: 100px;
  object-fit: contain;
  margin: auto;
}

/* testimonial */

.testimonial {
  background-color: var(--light_bg_color);
}

.testimonial_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-content: center;
  margin-block: 2rem;
}

.testimonial_card {
  /* border: 1px solid var(--border_color); */
  text-align: center;
  background-color: var(--bg_color);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 1rem;
  border-radius: var(--border_radius);
  transition: all 0.3s ease-in-out;
  box-shadow: var(--light_box_shadow);
}

.testimonial_card .client_headling {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.testimonial_card .client_desc {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin-block: 0.5rem;
  color: var(--light_font);
  text-align: start;
}

.testimonial_card .client_name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.testimonial_card .client_info {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--light_font);
}

.client_info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 0.5rem;
}

.client_info p:first-child {
  margin-right: 0.5rem;
}

/* portfolio-page-section */
.portfolio_page,
.pricing_page {
  min-height: 55vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem 0.8rem 2rem;
  background: var(--light_bg_color);
  z-index: 1;
  flex-direction: column;
}

.portfolio_page::before,
.pricing_page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/Group-142-1-1-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.021);
  mix-blend-mode: multiply;
  z-index: -1;
}

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

.portfolio_page_content p,
.pricing_page_content p {
  margin-block: 0.8rem;
}

.portfolio_section .portfolio_contents .portfolioPage_content {
  min-height: 35vh;
  padding: 2rem;
  border-radius: var(--border_radius);
  text-align: start;
  border: 1px solid var(--dark_font);
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolioPage_content_block {
  display: flex;
}

.portfolioPage_content p {
  color: var(--light_font);
  margin-top: 2rem;
  line-height: 1.5;
}

.portfolioPage_tabs {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.pricing_tabs_section {
  width: 100%;
  height: 40px;
}

.pricing_tabs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding-inline: 1rem;
  margin: 0;
  height: 100%;
}

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

.portfolioPage_tabs li a,
.pricing_tabs li a {
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  line-height: 14.8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  color: var(--light_font);
}

.portfolioPage_tabs li.active a,
.pricing_tabs li.active a {
  position: relative;
}

.portfolioPage_tabs li.active a::before,
.pricing_tabs li.active a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background-color: var(--highlight_color);
}

.portfolioPage_tabs li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background-color: var(--highlight_color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.portfolioPage_tabs li a:hover::after,
.pricing_tabs li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pricing_tab {
  white-space: nowrap;
}

.pricing_tabs .pricing_btn {
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
}

.pricing_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.portfolioPage_content_desc {
  padding: 1rem;
  flex: 2;
}

.portfolioPage_content_desc_image {
  border-radius: 5px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  padding: 5px;
  width: 100%;
  height: 100%;
  flex: 1;
}

.portfolioPage_content_desc_image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

/* contact_us_section */
.contact_us_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact_us_section p {
  color: var(--light_font);
  line-height: 1.7;
}

.contact_us_section .left_side h2,
.contact_us_section .right_side h2 {
  text-align: start;
}

.contact_us_section .left_side {
  padding: 2rem;
}

.left_side p a,
.contact-info-content .support_tech a {
  position: relative;
  z-index: 1;
  padding: 0 0.2rem;
}

.contact_us_section .left_side p a::after,
.contact-info-content .support_tech a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0%;
  width: 100%;
  height: 2px;
  background-color: var(--highlight_color);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}

.contact_us_section .left_side p a:hover::after,
.contact-info-content .support_tech a:hover::after {
  height: 100%;
}

.contact_us_section .right_side {
  background-color: var(--light_bg_color);
  padding: 2rem;
}

.right_side .social_icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.right_side .social_icons a i {
  font-size: 1.5rem;
}

/* client section */

.client_testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 5rem;
}

.myTestimonialSwiper.swiper {
  width: 100%;
  padding: 2rem 0;
  margin-top: 2rem;
}

.myTestimonialSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 350px !important;
  height: 350px !important;
  background-color: #fff;
  opacity: 0.6;
}

.myTestimonialSwiper .swiper-slide-active {
  opacity: 1;
}

.client_testimonial_card {
  background: var(--light_bg_color);
  border: 1px solid var(--border_color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--border_radius);
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.client_testimonial_card .client_headling {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.client_testimonial_card .client_desc {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-block: 0.5rem;
  color: var(--light_font);
  text-align: start;
}

.client_testimonial_card .client_name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-block: 0.5rem;
  color: var(--dark_font);
}

.client_testimonial_card .client_info {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--light_font);
}

.client_info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 0.5rem;
}

.client_info p:first-child {
  margin-right: 0.5rem;
}

.myTestimonialSwiper .swiper-3d .swiper-slide-shadow-left,
.myTestimonialSwiper .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

/* book A Demo */

.book_a_demo {
  min-height: 60vh;
  width: 100%;
}

.book_demo_section {
  display: flex;
  padding: 1.5rem;
  background-color: var(--light_bg_color);
}

.book_demo_section_map {
  margin-right: 10px;
}

.book_demo_section_map video {
  width: 100%;
  height: 100%;
}

.book_demo_section_form {
  border: 1px solid var(--light_bg_color);
  border-radius: 7px;
  width: 100%;
}

.book_demo_section_form iframe {
  display: block;
  width: 100%;
  height: 60vh;
}

/* privacy policy */

.privacy_policy {
  min-height: 35vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--light_bg_color);
  z-index: 1;
}

.privacy_policy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/Group-142-1-1-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.021);
  mix-blend-mode: multiply;
  z-index: -1;
}

.privacy_policy_block {
  margin: 2rem;
}

ol li {
  font-weight: 500;
}

ol p {
  margin-bottom: 0.8rem;
}

.in-app-content {
  padding: 2rem;
}

/* pricing section */
.pricing_header {
  display: flex;
  justify-content: end;
}

.pricing-swiper.swiper {
  width: 100%;
  height: 100%;
}

.pricing-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.pricing_card .toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: #f3f3f3;
  border-radius: 30px;
  padding: 5px;
  width: 140px;
  height: 35px;
  cursor: pointer;
}

.pricing_card .toggle-label {
  flex: 1;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--light_font);
  z-index: 2;
  transition: color 0.3s;
  padding: 8px 0;
}

.pricing_card input[type='radio'] {
  display: none;
}

.pricing_card .toggle-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 65px;
  height: 25px;
  background: var(--dark_font);
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.pricing_card #quarterly:checked ~ .toggle-bg {
  left: 5px;
}

.pricing_card #yearly:checked ~ .toggle-bg {
  left: calc(100% - 70px);
}

.pricing_card #quarterly:checked + label {
  color: var(--bg_color);
}

.pricing_card #yearly:checked + label {
  color: var(--bg_color);
}

.pricing-swiper.swiper {
  width: 100%;
  padding: 2rem 0;
  margin-top: 2rem;
}

.pricing-swiper.swiper.manufacturing-swiper {
  padding: 0;
}

.pricing_cards {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.pricing-swiper .swiper-slide {
  /* width: 330px; */
  /* max-width: 330px; */
  /* width: calc(1140px / 3 - 1rem); */
  height: 600px;
  padding: 0.5rem;
}

.pricing_card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg_color);
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  position: relative;
  transition: box-shadow 0.1s ease-in;
  cursor: pointer;
}

.pricing_card.iot-pricing-card {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.iot-card-table {
  width: 100%;
  padding: 2rem 0;
  margin-top: 2rem;
}

.iot-table {
  width: 90%;
  margin: auto;
}

.iot-table > table {
  width: 100%;
  margin: auto;
}

.iot-table > table > thead > tr > th,
.iot-table > table > tbody > tr > td {
  padding: 10px;
  border: 1px solid lightgray;
}

.iot-table > table > thead > tr > th {
  font-size: 0.8rem;
}

.iot-table > table > tbody > tr > td {
  font-size: 0.8rem;
  font-weight: 500;
}

.pricing_card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pricing_cards::-webkit-scrollbar {
  height: 8px;
}

.pricing_cards::-webkit-scrollbar-thumb {
  background: rgba(99, 99, 99, 0.5);
  border-radius: 10px;
}

.pricing_card_content {
  flex-grow: 1;
  text-align: center;
  margin-top: 1.5rem;
}

.iot-card-table .pricing_card_content {
  margin: 1.5rem 0rem;
}

.pricing_card_title:not(.lite .pricing_card_title) {
  font-weight: 600;
  text-transform: uppercase;
}

.lite .pricing_card_title {
  font-weight: 600;
  color: #7ce097;
}

.essential .pricing_card_title {
  color: #74a0c7;
}

.growth .pricing_card_title {
  color: #a880bf;
}

.pro .pricing_card_title {
  color: #de89a6;
}

.enterprise .pricing_card_title {
  color: #fab951;
}

.elite .pricing_card_title {
  color: #45945d;
}

.iot-card-table .pricing_card_title {
  color: #74a0c7;
}

.pricing_card .price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price h2.amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.8rem;
  position: relative;
}

.discounted_price {
  position: relative;
}

.rupee {
  position: absolute;
  top: 2px;
  left: -15px;
  font-size: 1rem;
}
/* 
.actual_price {
  transform: translateX(-50%);
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: line-through;
  color: var(--dark_font);
} */

.curved_arrow {
  position: absolute;
  top: -30px;
  left: -42px;
  width: 40px;
  height: 50px;
  background: url('./images/curve-arrow.png') no-repeat center;
  transform: scaleX(-1);
  background-size: contain;
}
.price small.pack {
  color: var(--light_font);
  font-size: 0.7rem;
}

.pricing_card .price_card_tag {
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 2;
}

.pricing_card ul.pricing_card_desc li {
  font-weight: 450;
  font-size: 12px;
  line-height: 2;
  color: var(--light_font);
  margin-bottom: 0.5rem !important;
}

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

.pricing_card ul.pricing_card_desc li i {
  color: var(--green-highlight);
}

.pricing_card ul.pricing_card_desc li .desc_content {
  margin-left: 0.5rem;
}

.pricing_card .price_btn {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  width: 90%;
  padding: 10px;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: var(--primary_font);
  cursor: pointer;
}

.price_btn.lite_btn {
  background-color: #7ce097;
}

.price_btn.ess_btn {
  background-color: #74a0c7;
}

.price_btn.growth_btn {
  background-color: #a880bf;
}

.price_btn.pro_btn {
  background-color: #de89a6;
}

.price_btn.enterprise_btn {
  background-color: #fab951;
}

.price_btn.elite_btn {
  background-color: #45945d;
}

.growth .ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.growth .ribbon::before,
.growth .ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #a880bf;
}

.growth .ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #a880bf;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 500 18px/1 var(--primary_font);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.growth .ribbon-top-left {
  top: -10px;
  left: -10px;
}

.growth .ribbon-top-left::before,
.growth .ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.growth .ribbon-top-left::before {
  top: 0;
  right: 0;
}

.growth .ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.growth .ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

.show-hide-table {
  width: 100%;
}

.show-hide-table .btn {
  width: 100%;
  height: 50px;
  font-family: var(--primary_font);
  background-color: #fff;
  outline: 0;
  border: 0;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  cursor: pointer;
}

.show-hide-table .btn i {
  transition: transform 0.3s ease-in-out;
  margin-left: 0.5rem;
}

.pricing-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-50%);
  right: 0px;
  border: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark_font);
  cursor: pointer;
}

.pricing-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-50%);
  left: 0px;
  border: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark_font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 1.5rem !important;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing_table.show {
  max-height: 100%;
  overflow-y: auto;
  opacity: 1;
}

.pricing_table {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.pricing_table_wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  max-height: 100vh;
}

.pricing_table_wrapper::-webkit-scrollbar {
  height: 8px;
}

.pricing_table_wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.pricing_table_wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.pricing_table_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.pricing_table h2 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-block: 1rem;
}

.pricing_table table {
  width: 100%;
  min-width: 800px;
  position: relative;
  border-collapse: collapse;
}

.pricing_table_wrapper table {
  position: relative;
}

.pricing_table_wrapper table thead {
  position: sticky;
  top: 0;
  overflow: hidden;
  background-color: #deddec;
  z-index: 10;
}

.pricing_table table thead th {
  position: sticky;
  top: 0;
  text-align: center;
  background-color: #deddec;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing_table table tbody {
  max-height: 800px;
  overflow-y: auto;
}

.pricing_table table .add_ons {
  text-align: center;
  background-color: #8080801f;
}

.pricing_table table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

.pricing_table table th {
  text-align: left;
  padding: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing_table table td i.tick {
  color: var(--green-highlight);
}

.pricing_table table td i.cross {
  --grey: #808080;
  color: var(--grey);
}

.pricing_table table td {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--light_font);
}

/* footer */

footer {
  background-color: var(--light_bg_color);
  padding: 1rem;
  color: var(--bg_color);
  text-align: center;
}

.footer_content .logo .logo_img {
  max-width: 20%;
  height: auto;
  object-fit: contain;
}

.footer_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}

.footer_menu li a i {
  font-size: 1.2rem;
}

.footer_content .copyright {
  color: var(--light_font);
}

/* responsive design */
@media screen and (max-width: 1100px) {
  .impact_card {
    flex-basis: 30%;
  }
}

@media screen and (min-width: 1000px) {
  portfolio_section .portfolio_contents .portfolio_content {
    height: 35vh;
  }
}

@media screen and (max-width: 870px) {
  .logo_img {
    width: 60%;
  }

  .menu {
    position: fixed;
    top: 0%;
    right: 0%;
    background-color: var(--light_bg_color);
    width: 0%;
    height: 100vh;
    z-index: 1000;
    flex-direction: column;
    transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
    transition-delay: 100ms;
    opacity: 0;
  }

  .menu.show {
    width: 100%;
    opacity: 1;
  }

  .menu li:first-child {
    margin-top: 100px;
  }

  .hamburger_menu {
    display: flex;
  }

  .home_page_title {
    font-size: 2.5rem;
  }

  .lg_screen {
    display: none;
  }

  .sm_screen {
    display: block;
  }

  .why_us_content {
    display: block !important;
  }

  .portfolio_page {
    min-height: 30vh;
  }

  .portfolioPage_content {
    display: block !important;
    min-height: 35vh;
    padding: 1rem !important;
    border-radius: var(--border_radius);
    text-align: start;
    border: 1px solid var(--dark_font);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .why_us_content .tab_content h4 {
    font-size: 1.2rem;
  }

  .why_us_content .tab_content p {
    font-size: 1rem;
  }

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

  .footer_content .logo .logo_img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
  }

  .team_card {
    align-items: center;
    justify-content: center;
  }

  .portfolioPage_content_block {
    flex-direction: column;
  }

  .book_demo_section {
    flex-direction: column;
    margin-top: 1rem;
  }

  .pricing_table .section_title {
    font-size: 1.2rem;
  }

  .pricing_table table th {
    padding: 0.3rem;
    font-size: 0.8rem;
    font-weight: 550;
  }

  .pricing_table table td {
    padding: 0.3rem;
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  p.section_title {
    font-size: 1rem;
    margin-bottom: -3px;
  }

  h2.heading {
    font-size: 1.7rem;
    margin-bottom: -5px;
  }

  .home_page_title {
    font-size: 2rem;
    line-height: 50px;
  }

  .impact_card {
    flex-basis: 50%;
  }

  .portfolio_section {
    grid-template-columns: 1fr;
  }

  .portfolio_section .portfolio_tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.5rem;
  }

  .portfolio_tabs .portfolio_tab.active {
    background-color: var(--dark_font);
    position: relative;
    border-radius: var(--border_radius);
  }

  .portfolio_tabs .portfolio_tab {
    width: 100%;
    height: auto;
  }

  .portfolio_tab h3 {
    font-size: 0.9rem !important;
  }

  .pricing_tabs {
    justify-content: flex-start;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .row .content_desc_image {
    display: none;
  }

  .contact_us_section {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 500px) {
  .impact_card {
    flex-basis: 100%;
  }
  .portfolio_tab h3 {
    font-size: 0.8rem !important;
  }

  .portfolio_contents .portfolio_content {
    padding: 1rem !important;
  }

  .portfolio_contents .portfolioPage_content {
    padding: 1rem !important;
  }

  .myTestimonialSwiper .swiper-slide {
    width: 200px !important;
    height: 450px !important;
  }

  .myTestimonialSwiper .swiper-slide p {
    font-size: 10px !important;
    line-height: 1.5;
  }

  .myTestimonialSwiper .swiper-slide h4 {
    font-size: 14px !important;
  }
}

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

.rolling-text {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  animation: rollIn 1.5s ease-out forwards;
}
.manufacturing-subtabs {
  display: flex;
  justify-content: center;
  margin: 15px auto 30px;
}

.subtabs-container {
  position: relative;
  display: inline-flex;
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 3px;
  width: 100%;
  max-width: 600px; /* Increased max-width to accommodate longer text */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.subtabs-container input[type='radio'] {
  display: none;
}

.subtab-label {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 10px 5px; /* Added horizontal padding */
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 28px;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap; /* Prevent text wrapping */
}

.subtabs-bg {
  position: absolute;
  height: calc(100% - 6px);
  top: 3px;
  background-color: white;
  border-radius: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

/* Position the background for each radio selection */
#yarn-tab:checked ~ .subtabs-bg {
  transform: translateX(0);
}

#ck-tab:checked ~ .subtabs-bg {
  transform: translateX(100%);
}

#wk-tab:checked ~ .subtabs-bg {
  transform: translateX(200%);
}

#weaving-tab:checked ~ .subtabs-bg {
  transform: translateX(300%);
}

/* Make selected label text darker */
#yarn-tab:checked ~ label[for='yarn-tab'],
#ck-tab:checked ~ label[for='ck-tab'],
#wk-tab:checked ~ label[for='wk-tab'],
#weaving-tab:checked ~ label[for='weaving-tab'] {
  color: #333;
  font-weight: 600;
}

.subtab-label {
  color: #777;
}

/* Responsive styles */
@media (max-width: 480px) {
  .subtabs-container {
    min-width: 280px;
  }

  .subtab-label {
    padding: 8px 0;
    font-size: 12px;
  }
}
