@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
    --fontNunito: "Nunito Sans", sans-serif;
    --fontUbuntu: "Ubuntu", sans-serif;
}
body {
  font-family: "Ubuntu", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.banner {
  background: url("<?php echo IMAGE_PATH?>header-banner-png.webp");
  color: #fff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}
.topheader.scrolled{
  background-color: #44489d;
}
.navbar,.topheader{
  transition: 0.35s ease-in;
}
.topheader.scrolled .navbar{
  padding: 12px 0;
}
nav#banner {
  background-color: transparent !important
}

.banner-hero1 {
  background: url("../../assets/images/Hero-sectionBg.png");
  color: #fff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  overflow: hidden;
  margin-top: -102px;
  padding: 365px 0 0;
}
.topLadyStanding{
  position: absolute;
  right: 0;
  bottom: 0;
}
.text-content1{
  transform: translateY(-134px);
}

.btn.btn_primary_new {
  border-radius: 8px;
  background-color: #61C6C4;
  border: 1px solid #61C6C4;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 11px 30px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 1;
}

.btn.btn_primary_new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.btn.btn_primary_new:hover {
  background-color: #52b3b1;
}

.btn.btn_primary_new:hover::before {
  left: 100%;
}

.btn-nav {
  background-color: #61C6C4;
  border-color: #61C6C4;
  color: #ffffff;
}

.btn-nav:hover {
  color: #ffffff;
  box-shadow: 2px 2px 15px #c5c4c4;
}

.navbar .navbar-nav .nav-item.bb-none:hover {
  border-bottom: none;
}

/* Define the keyframes animation */
@keyframes blink {
  0% {
    opacity: 1;
    /* Fully visible */
  }

  50% {
    opacity: 0;
    /* Fully transparent */
  }

  100% {
    opacity: 1;
    /* Fully visible */
  }
}

/* Apply the animation to the button */
.blinking-button {
  animation: blink 3s infinite;
  /* 1-second duration, infinite loop */
}

.blinking-button:hover {
  animation: none;
}

.y-gap {
  padding-top: 45px;
  padding-bottom: 45px;
}

.aboutSecNew {
  background-image: url("../../assets/images/aboutnewbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.newHeading {
  font-size: 40px;
  font-weight: 700;
  font-size: 40px;
  color: #021738;
  font-family: "Ubuntu", sans-serif;
  max-width: 493px;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.newHeading.w-auto {
  max-width: 100% !important;
}

.newHeading span {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #61C6C4;
}

.text-container p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: #6B6F7F;
  margin-bottom: .5rem;
  max-width: 450px;
}

p.w-auto {
  max-width: 100% !important;
}

.how_it_works {
  background-color: #F5F8FC;
}

p.newParaContent,
.anchor-text-decoration {
  font-size: 18px;
  color: #94959B;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

.anchor-text-decoration {
  text-decoration: underline;
}

.howWorksCards {
  max-width: 500px;
  gap: 30px;
  margin-top: 55px;
}

.howWorksCards:hover .howWorksCards-icon {
  transform: scale(1.1) rotate(45deg);

}

.howWorksCards-icon {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: #61C6C41A;
  transform: scale(1) rotate(0);
  transition: 0.35s ease-in;
}

.howWorksCards:hover .howWorksCards-icon img {
  transform: rotate(-45deg) scale(1.1);
}

.howWorksCards-icon img {
  transform: rotate(0) scale(1);
}

.collapsible-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines before truncation */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  transition: all 0.3s ease;
  color: #94959B;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
}

.collapsible-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.show-toggle {
  display: inline-block;
  margin-left: 0.25rem;
  color: #4285F4;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
}

.show-toggle:hover {
  text-decoration: none;
  font-weight: 500;
}

.howWorksCards h5 {
  font-size: 24px;
  font-weight: 700;
  color: #222222;
  font-family: 'Ubuntu', sans-serif;
}

.newClients {
  background-image: url("../../assets/images/aboutnewbg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-box {
  width: 286px;
  height: 120px;
  border: 1px solid #00000026;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  /* spacing between logos */
  background: #fff;
  flex-shrink: 0;
}

.logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.logo-box .bg-dark {
  background-color: #343a40 !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* moves by half track */
}

.newServiceSec {
  background-image: url("../../assets/images/newservicebanner.webp");
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.newServiceCardsParent {
  margin-top: 30px;
  color: #6B6F7F;
}

.newServiceCardsParent:hover {
  text-decoration: none;
}

.newServiceCards {
  height: 100%;
  /* stretch card to full column height */
  display: flex;
  /* optional: helps align content inside */
  flex-direction: column;
  border-radius: 16px;
  background-color: #FFFFFF;
  padding: 20px 28px;
  text-align: center;
  position: relative;
  transition: 0.35s ease-in-out;
}

.newServiceCards::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 0;
  opacity: 0;
  background-color: #61C6C4;
  transition: 0.35s opacity;
  border-radius: 0 0 16px 16px;
}

.newServiceCardsParent:hover .newServiceCards::before {
  height: 4px;
  opacity: 1;
}

.newServiceCards:hover .cardIcon {
  background-color: #61C6C4;
}

.newServiceCards .cardIcon {
  background-color: #D0D3D933;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: 0.35s ease-in-out;
}

.newServiceCardsParent:hover .content .headingNew {
  color: #61C6C4;
}

.newServiceCards .content .headingNew {
  color: #021738;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  max-width: 300px;
  margin: 26px auto 16px;
}

.newServiceCards .content .desc {
  font-size: 16px;
  color: #6B6F7F;
  font-family: 'Nunito Sans', sans-serif;
  margin-bottom: 0;
}

.newServiceCards:hover .cardIcon img {
  filter: brightness(500);
}



.arc-img:after {
  content: "";
  background: url("<?php echo IMAGE_PATH?>arc_line.png") no-repeat;
  width: 310px;
  height: 12px;
  display: block;
  text-align: center;
  margin: auto;
}

.business-consultant .h2.sec-heading {
  color: #fff;
}

nav#banner {
  background-color: #44489d;
}

.custom-container1 {
  width: 80%;
  margin: auto;
}

.banner-hero1 h1 {
  text-transform: uppercase;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #fff;
  max-width: 542px;
}

.banner-hero1 h1 span {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 64px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  color: #fff;
}

.banner-hero1 p {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  opacity: .6;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 30px;
  color: #fff;
  max-width: 441px;
}

.banner-hero1 .img-container img {
  position: absolute;
  bottom: 0px;
  left: 50%;
}

.banner-hero1 .counter {
  margin-top: 5rem;
}

button.question-btn.w-100.d-flex.justify-content-between {
  text-align: left;
}

.banner-hero1 .img-container1 {
  position: relative;
  width: 100%;
  height: 100%
    /* left: 50%; */
}

.banner-hero1 .img-container1 img {
  /* position: relative; */
  bottom: 0px;
  width: 780px !important;
  height: 120vh;
  margin-left: -245px
    /* left: 50%; */
}

.services-section {
  position: relative;
  background-color: #45499E;
  overflow: hidden;
  padding: 20px 0;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, #353879 38.22%, rgba(41, 41, 41, 0.04) 94.59%);
  z-index: 2;
}

.services-scroll {
  display: flex;
  gap: 45px;
  white-space: nowrap;
  animation: scroll-left 10s linear infinite;
  padding-left: 140px;
  /* space so text doesn't overlap overlay */
}

.service-item {
  font-size: 74px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  font-family: "Urbanist", sans-serif;
  gap: 45px;
}

.separator {
  margin-left: 25px;
  margin-right: 25px;
  font-size: 12px;
  color: white;
  /* white circular icon */
}

.separator img {
  width: 91px;
}

/* smooth scroll animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reviewSection {
  margin-top: 40px;
  margin-bottom: 40px;
}

.reviewBg {
  background-color: #F0F4FA;
  border-radius: 16px;
  padding: 35px;
}

.btn-blue {
  border-radius: 8px;
  background-color: #4285F4;
  border: 1px solid #4285F4;
  color: #fff;
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
  padding: 15px 30px;
  transition: 0.35s ease;
}

.btn-blue:hover {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.8px;
}

.reviewSlider {
  padding-bottom: 45px;
}

.reviewSliderItem {
  background-color: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
}

.reviewSliderCarousel img.w-auto {
  width: auto;
  max-width: 100px;
}

.reviewSliderItem p {
  color: #6B6F7F;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 20px;
}

.reviewFooter .profile {
  gap: 13px;
}

.reviewFooter .profile img.p-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.reviewFooter .profile h5 {
  color: #021738;
  font-weight: bold;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  margin-bottom: 0;
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-next,
.reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev {
  width: 48px;
  height: 48px;
  background-color: #61C6C4;
  border-radius: 50%;
  background: #61C6C4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s ease-in;
}

.reviewSliderCarousel.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev {
  left: -28px;
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-next {
  right: -28px;
}

.reviewSliderCarousel.owl-carousel .owl-nav button svg path {
  fill: white;
  transition: 0.35s ease-in;
}

.reviewSliderCarousel.owl-carousel .owl-nav button:hover {
  background: #E2F5F4;
}

.reviewSliderCarousel.owl-carousel .owl-nav button:hover svg path {
  fill: #021738;
}

.faqs-new {
  background-color: #F0F4FA;
}

#customAccordion .card {
  border: 0;
  border-radius: 16px;
  background-color: transparent;
  margin-bottom: 20px;
}

#customAccordion .card-header {
  padding: 0;
  border-bottom: 0;
  background-color: transparent;
}

#customAccordion .card-header button {
  padding: 24px 50px 24px 24px;
  border-radius: 16px;
}

#customAccordion button.btn-link {
  position: relative;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
}

#customAccordion button.btn-link span {
  max-width: 453px;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
  display: inline-block;
}

#customAccordion button.btn-link:hover {
  text-decoration: none;
  color: #61C6C4;
}

/* Icon base style */
#customAccordion .btn-link::before {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}

#customAccordion .card-header .btn-link[aria-expanded="false"]::before {
  background-image: url('../../assets/images/plusaccordion.svg');
  /* or plus.svg */
}

#customAccordion .card-header .btn-link[aria-expanded="false"] {
  background-color: #F6F9FD;
  color: #021738;
}

/* When expanded → aria-expanded="true" → show MINUS */
#customAccordion .card-header .btn-link[aria-expanded="true"]::before {
  background-image: url('../../assets/images/minusaccordion.svg');
  /* or minus.svg */
}

#customAccordion .card-header .btn-link[aria-expanded="true"] {
  background-color: #ffffff;
  color: #61C6C4;
  padding: 24px 50px 6px 24px;
  border-radius: 16px 16px 0 0;
}

#customAccordion .card .collapse {
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
}

#customAccordion .card .collapse .card-body {
  padding: 0 100px 24px 24px;
  color: #6B6F7F;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Nunito Sans', sans-serif;
}

.new-blog-section {
  background-image: url("../../assets/images/aboutnewbg.png");
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: calc(45px - 25px);
}

.blogs_row {
  display: flex;
  flex-wrap: wrap;
  /* still keeps responsive behavior */
}

.blogs_row>a {
  display: flex;
  /* make <a> stretch */
  flex-direction: column;
  color: #021738;
  margin-top: 40px;
}

.blogs_row>a:hover {
  text-decoration: none;
}

.blogBody {
  flex: 1;
  /* make all cards equal height */
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 24px 60px 0px #051F2E0F;
}

.blogs_row>a:hover .blogBody .blogImage img {
  transform: scale(1.21);
}

.blogBody .blogImage {
  overflow: hidden;
  max-height: 381px;
}

.blogBody .blogImage img {
  height: 100%;
  transition: 2s linear;
  transform: scale(1);
  border-radius: 8px;
}

.blogBody h3 {
  color: #021738;
  font-weight: 500;
  font-size: 24px;
  font-family: 'Ubuntu', sans-serif;
  margin: 18px 0 16px;
  max-width: 440px;
}

.blogBody p {
  color: #6B6F7F;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
  max-width: 440px;
}

.blogs_more_btn {
  color: #61C6C4;
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-bottom: 1px solid #61C6C4;
  display: inline-block;
  width: fit-content;
  padding-bottom: 2px;
}

.blogs_row>a:hover .blogs_more_btn img {
  transform: translateX(7px);
}

.blogs_more_btn img {
  transform: translateX(0);
  transition: 0.35s ease-in;
}

.stats-section {
  background: linear-gradient(134.66deg, #3E4284 6.35%, #45499E 95.93%);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin: 45px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.stat-box h5 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Ubuntu', sans-serif;
}

.stat-box p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.new-heading {
  color: #222222;
  font-weight: 700;
  font-size: 48px;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 25px;
}

.department_card {
  border: 1px solid #00000026;
  border-radius: 8px;
  text-align: center;
  background-color: #ffffff;
  max-width: 23%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  margin-bottom: 25px;
}

.department_card img {
  width: 90% !important;
}

/* Consultation Form - IMPROVED RESPONSIVENESS */
.new-hero-banner-section {
  /* background: linear-gradient(90deg, rgba(66, 70, 146, 0) 0%, #16161D 100%); */

  background: linear-gradient(90deg, rgba(66, 70, 146, 0) 0%, #16161D 100%),
    url('../../assets/images/gettouchbg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 0 0;
  min-height: 700px;
  overflow: hidden;
}

.new-hero-banner-section .row {
  position: relative;
  z-index: 2;
  min-height: 640px;
  align-items: stretch;
}

.consultation-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consultation-form {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 472px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.consultation-form h3 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.33;
  letter-spacing: 0.02em;
  color: #222222;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  height: 62px;
  background: #F6F6F6;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 100%;
  color: #222;
  opacity: 1;
  box-sizing: border-box;
}

.consultation-form textarea {
  min-height: 120px;
  resize: vertical;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #94959B;
}

.professional-image-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding: 0;
}

.professional-avatar {
  width: 100%;
  max-width: 666px;
  aspect-ratio: 666 / 840;
  background: url('../../assets/images/newmanwithtablet.png') center/cover no-repeat;
  border-radius: 24px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.consultation-form button {
  width: 100%;
  max-width: 408px;
  height: 53px;
  background: #61C6C4;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto;
  transition: 0.3s ease;
}

.consultation-form button:hover {
  background: #4ab0ad;
}

.custom_margin-bottom {
  margin-bottom: 32px;
}


@media only screen and (max-width:991px) {
  .custom-container1 {
    width: 80%;
    margin: 30px;
  }

  .text-content1 {
    padding: 200px 0 45px 0px;
  }

  .banner-hero1 h1 {
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #fff;
    max-width: 592px;
  }

  .banner-hero1 h1 span {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    color: #fff;
  }

  .banner-hero1 p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 500px;
  }

  .banner-hero1 .img-container img {
    position: absolute;
    bottom: 0px;
    left: 50%;
  }

  .banner-hero1 .counter {
    margin-top: 5rem;
  }

  button.question-btn.w-100.d-flex.justify-content-between {
    text-align: left;
  }

  .banner-hero1 .img-container1 {
    position: relative;
    width: 100%;
    height: 100%
      /* left: 50%; */
  }

  .banner-hero1 .img-container1 img {
    /* position: relative; */
    bottom: 0px;
    width: 780px !important;
    height: 120vh;
    margin-left: -390px
      /* left: 50%; */
  }
}

/* How It Works Section */
.new-how-work .new-sec-card {
  background: #FAFAFC;
  border-radius: 40px;
  padding: 60px 50px;
}

.new-heading-content {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  /* 2% */
  color: #222;
}

.new-text-content,
.new-text-content span {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.01em;
  /* 1% */
  color: #444;
}

.new-sec-heading {
  font-size: 2.5rem !important;
  color: #38343D;
}

.new-card-work {
  border: 1px solid #dcd8d8;
  box-shadow: 1px 1px 17px 5px #dcd8d8;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  min-height: 290px;
  position: relative;
  padding-bottom: 3rem;
}

.new-card-work img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.new-card-work .card-heading {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  /* 2% */
  color: #222;
}

.new-paragraph {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  /* 2% */
  color: #333;
}

.new-morecontent span {
  display: none;
}

.new-morelink {
  display: block;
}

.new-btn-read {
  background-color: #61C6C4;
  border: 1px solid #61C6C4;
  border-radius: 2px;
  color: #fff;
  width: auto !important;
  height: 38px !important;
  font-size: 16px !important;
  letter-spacing: .5px;
  font-family: "Cardo-Regular";
  position: absolute;
  bottom: 15px;
}

.new-btn-read:hover {
  color: #fff;
  box-shadow: 2px 2px 15px #c5c4c4;
}

/* Responsive */
@media (max-width: 767px) {

  .sec-gap,
  .new-how-work .sec-card,
  .service-sec,
  .page-footer.footer,
  .get-in-touch {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .new-how-work .new-sec-card {
    padding-left: 30px;
    padding-right: 30px;
  }

  .new-card-work img {
    margin-bottom: 10px;
  }

  .new-work-card {
    margin-bottom: 30px;
  }

  .new-work-card p {
    margin-top: .5rem;
  }

  .new-departments .grid-container {
    display: inline-grid;
    grid-template-columns: 50% 50%;
  }
  .custom-container1{
    width: 100% !important;
    margin: 0 !important;
  }
  .navbar-brand{
    margin-left: 16px;
  }

}

@media (max-width: 480px) {
  .new-sec-card {
    padding: 30px 20px;
  }

  .new-sec-heading {
    font-size: 1.6rem;
  }

  .new-card-work {
    flex-direction: row;
    min-height: auto;
  }

  .new-card-work .new-card-heading {
    font-size: 1rem;
  }

  .new-card-work .card-text p {
    font-size: 13px;
  }

  .new-heading-content {
    font-size: 18px;
    line-height: 28px;
  }

  .new-text-content,
  .new-text-content span {
    font-size: 13px;
    line-height: 22px;
  }
}

/* ourclients */
.new-sec-gap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.new-client_logo {
  /* background-color: #22252E; */
}

.new-client_logo .sec-heading {
  /* color: #fff; */
  color: #222222;

}

.new-client_logo .slider_profile.client-logo {
  /* background-color: #fff; */
  height: 170px;
  padding: 1.3rem;
  overflow: hidden;
}

.new-client_logo .slider_profile.client-logo img {
  max-height: 150px;
}

/* Pricing Section */

.new-pricing-plan-sec .new-card {
  border: 1px solid #DADADA;
  padding: 60px 35px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}


/* Highlighted Middle Card (2nd Card) */
.new-card-highlight {
  background: #45499E !important;
  /* New background */
  color: #fff;
  /* transform: scale(1.05); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.new-card-highlight .new-plan-title {
  color: #fff;

}

.new-card-highlight .new-price-plan {
  color: #fff;

}

/* Titles */
.new-plan-title {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  color: #021738;
}

/* Prices */
.new-plan-price {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 0.25px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  color: #021738;
  /* default color for price */
}

.new-plan-price span {
  color: #61C6C4;
  font-size: 2rem;
  font-weight: 700;
}

.new-plan-price .new-strict {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  /* SemiBold */
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-transform: capitalize;
  color: #B0B3BF;
  /* grey tone */
  margin-left: 6px;
  /* small spacing from price */
}

.new-card-highlight .new-plan-price span {
  color: #fff;
  /* White text inside highlighted card */
}

.new-card-highlight ul li {
  color: #fff;
  /* White text inside highlighted card */
}

/* Features */
.new-plan-feature {
  padding-top: 2.5rem;
  margin-bottom: 2rem;
}

/* Feature List with Image Check */
.new-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.new-feature-list li {
  position: relative;
  padding-left: 35px;
  /* space for check icon */
  margin-bottom: 16px;

  /* Updated font styles */
  color: #021738;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  line-height: 150%;
  /* 24px if base font is 16px */
  letter-spacing: 0px;
}


/* Green Check Image */
.new-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("<?php echo IMAGE_PATH?>check-box12.png") no-repeat center center;
  background-size: contain;
}

/* White Check Image for highlighted card */
.new-card-highlight .new-feature-list li::before {
  background: url("<?php echo IMAGE_PATH?>check-box12.png") no-repeat center center;
  background-size: contain;
}

.new-card-highlight .new-feature-list li {
  /* color: #fff; */
}

/* Buttons */
.new-btn-black {
  background: while;
  border: none;
  padding: 15px 25px;
  border-radius: 6px;
  letter-spacing: .5px;
  color: #fff;
  display: inline-block;
  width: 208px;
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
  transition: background 0.3s ease;
  color: #61C6C4;
  border: 1.5px solid #61C6C4;
  /* updated border */
  border-radius: 8px;

}

.new-btn-black:hover {
  background: #61C6C4;
  color: #fff;
}

/* Highlighted Button (2nd Card) */
.new-btn-highlight {
  background: #61C6C4;
  /* Special button color */
  border: none;
  padding: 15px 25px;
  border-radius: 6px;
  letter-spacing: .5px;
  color: #fff;
  display: inline-block;
  width: 208px;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.new-btn-highlight:hover {
  background: #0F2420;
  color: #fff;
}

/* Our Gallery - IMPROVED GRID LAYOUT */
.gallerySection {
  background-image: url("../../assets/images/aboutnewbg.png");
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.new-gallery-card {
  padding: 0 30px;
  border-radius: 15px;
}
.new-gallery-card .row {
    row-gap: 32px;
    column-gap: 0;
    margin-left: -16px;
    margin-right: -16px;
}

h2 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
  color: #333;
  font-size: clamp(28px, 5vw, 40px);
}

h2 .new-title-highlight {
  color: #06b6d4;
}

.new-gallery-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.new-gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.new-gallery-img-wrapper {
  padding:0 16px;
}

/* Why Choose Us */
.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.section-title h2 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.2;
  color: #222222;
  text-transform: capitalize;
}

.section-title h2 .highlight {
  color: #61C6C4;
  font-weight: 700;
}

.section-title h2 .bold {
  font-weight: 700;
  color: #222222;
}

.section-subtitle {
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 150%;
  color: #6B6F7F;
  margin-bottom: 50px;
}

.card {
  border: none;
  border-bottom: 1px solid #E2E8F0;
  background-color: transparent;
  margin-bottom: 0;
}

.card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}

.btn-link {
  background-color: transparent;
  border: none;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.33;
  color: #021738;
  text-transform: capitalize;
  padding: 20px 40px 20px 0;
  width: 100%;
  text-align: left;
  position: relative;
}

.btn-link.collapsed {
  color: #021738;
}

.btn-link:not(.collapsed) {
  color: #61C6C4;
}

.btn-link:focus {
  box-shadow: none;
  outline: none;
}

.btn-link::after {
  display: none;
}

.btn-link.collapsed::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='4' x2='12' y2='20' stroke='%23021738' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='4' y1='12' x2='20' y2='12' stroke='%23021738' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.btn-link:not(.collapsed)::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%2361C6C4' stroke-width='1.5'/%3E%3Cline x1='7' y1='12' x2='17' y2='12' stroke='%2361C6C4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.card-body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 150%;
  color: #6B6F7F;
  padding: 0 0 20px 0;
}

/* Video container - IMPROVED RESPONSIVENESS */
.video-container {
  position: relative;
  width: 100%;
  max-width: 622px;
  aspect-ratio: 622 / 486;
  background: rgba(34, 34, 34, 0.9);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.5);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.video-container.playing::before {
  opacity: 0;
}

.play-button {
  position: relative;
  top: 10%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}

#videoPlayer {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 15px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
  opacity: 1;
}

.control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.control-btn:hover {
  transform: scale(1.1);
}

.progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-filled {
  height: 100%;
  background: #61C6C4;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 5px;
}

.time-display {
  color: white;
  font-size: 12px;
  font-family: 'Ubuntu', sans-serif;
  white-space: nowrap;
}

/* Business Setup in Dubai - IMPROVED RESPONSIVENESS */
.new-business-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3f5a7a 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  padding: 60px 0 0 0;
  overflow: hidden;
}

.new-business-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../assets/images/businessbg.png') center/cover no-repeat;
  z-index: 1;
}

.new-business-hero-section::after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.7) 50%, rgba(63, 90, 122, 0.8) 100%);
  z-index: 2;
}

.new-business-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
}

.new-business-hero-content .row {
  min-height: calc(100vh - 60px);
  align-items: stretch;
}

.new-business-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}

.new-business-hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 65px);
  line-height: 1.23;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 30px;
}

.new-business-hero-text {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 135%;
  color: #ffffff;
  margin-bottom: 20px;
}

.new-business-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 133px;
  height: 48px;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  background: #61C6C4;
  color: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 30px;
  align-self: flex-start;
  opacity: 1;
  box-sizing: border-box;
}

.new-business-hero-cta:hover {
  background: #4db0ae;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(97, 198, 196, 0.3);
  color: #fff;
  text-decoration: none;
}

.new-business-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding: 0;
}

.new-business-hero-image img {
  width: 100%;
  max-width: 633px;
  /* height: 929px; */
  /* height: auto; */
  opacity: 1;
  /* object-fit:contain; */
  object-position: bottom;
}

/* Consultation Form - IMPROVED RESPONSIVENESS */
.new-hero-banner-section {
  background: linear-gradient(135deg,
      rgba(52, 152, 219, 0.7) 0%,
      rgba(44, 62, 80, 0.8) 50%,
      rgba(52, 73, 94, 0.7) 100%),
    url('../../assets/images/newgetconsultantbanner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 0 0;
  min-height: 700px;
  overflow: hidden;
}

.new-hero-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.new-hero-banner-section .row {
  position: relative;
  z-index: 2;
  min-height: 640px;
  align-items: stretch;
}

.consultation-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consultation-form {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 472px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.consultation-form h3 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.33;
  letter-spacing: 0.02em;
  color: #222222;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  height: 62px;
  background: #F6F6F6;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 100%;
  color: #222;
  opacity: 1;
  box-sizing: border-box;
}

.consultation-form textarea {
  min-height: 120px;
  resize: vertical;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #94959B;
}

.professional-image-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding: 0;
}

.professional-avatar {
  width: 100%;
  max-width: 666px;
  aspect-ratio: 666 / 840;
  background: url('../../assets/images/newmanwithtablet.png') center/cover no-repeat;
  border-radius: 24px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.consultation-form button {
  width: 100%;
  max-width: 408px;
  height: 53px;
  background: #61C6C4;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto;
  transition: 0.3s ease;
}

.consultation-form button:hover {
  background: #4ab0ad;
}
/* =========================
   Service We Provide (new_page.php)
   Hover background & text color
========================= */
.service-card:hover {
  background: #021738;
}

.services-section .service-card {
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  border-radius: 12px;
}

.services-section .service-card .service-title {
  color: #021738;
  transition: color 0.3s ease;
}

.services-section .service-card:hover {
  background-color: #61C6C4;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services-section .service-card:hover .service-title,
.services-section .service-card:hover p,
.services-section .service-card:hover span,
.services-section .service-card:hover a {
  color: #ffffff;
}

/* Ensure text turns white on hover, override any conflicting styles */
.services-section .service-card:hover,
.services-section .service-card:hover * {
  color: #ffffff !important;
}
/* Custom Banner Styles */
.new-banner {
  background: linear-gradient(to right, #2f3175, #4b4fab);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  /* push text to the right */
  align-items: flex-end;
  /* push text to the bottom */
  height: 149.35px;
}

.new-banner h2 {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  /* semi-bold */
  font-size: 74.68px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
}
/* Department */
.new-departments {
  background-color: #FAFAFC;
}

.new-departments .card {
  background: #fff;
  border: none;
  padding: 2rem;
  border-radius: 40px;
}

.new-departments .grid-container {
  display: inline-grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.new-departments .grid-item {
  padding: 15px;
  font-size: 30px;
  text-align: center;
  margin: auto;
  display: flex;
}

.new-departments .grid-item img {
  max-width: 250px;
  width: 100%;
}
.pricingBg{
    background-image: url("../../assets/images/aboutnewbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing_grid_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.sm_pricing_card {
  max-width: 336px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 16px 40px 0px #1A40890F;
  padding: 24px;
  transition: transform 0.3s ease;
  border: 1px solid;
  border-image-source: linear-gradient(150.39deg, rgba(229, 237, 248, 0.47) 15.02%, #EDF2F8 99.59%);


}

.sm_pricing_card:hover {
  transform: translateY(-6px);
}

.sm_pricing_card.blue {
  background: #45499E; /* Bootstrap blue */
  color: #fff;
  box-shadow: 0px 32px 80px 0px #1A40891F;
  border: 2px solid #61C6C4;
} 
.sm_pricing_card.blue hr{
  border-top: 1px solid #E6E6E6;
}

.sm_pricing_card h3 {
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
  color: #021738;
  text-transform: uppercase;
  min-height: 43px;
}
.new-price-amount-custom{
  font-size: 31px;
  font-weight: 700;
  color: #61C6C4;
  font-family: "Ubuntu", sans-serif;
}
.new-price-period-custom{
  font-size: 18px;
  color: #B0B3BF;

}

.sm_pricing_card .price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.sm_pricing_card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 42px;
}
.sm_pricing_card ul li{
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #021738;
  font-family: var(--fontNunito);
}

.sm_pricing_card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  background: url('../../assets/images/check-box.svg') no-repeat center center;
  background-size: contain;
}
.choose_plan_btn{
  border: 1.5px solid #61C6C4;
  border-radius: 8px;
  color: #61C6C4;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  width: 100%;
  height: 48px;
  line-height: 2;
  margin-top: 10px;
}
.sm_pricing_card.blue .choose_plan_btn{
  background-color: #61C6C4;
  border-color: #61C6C4;
  color: #fff;
}
/* ============ */
.top-header {
  display: none
}

@media (min-width: 768px) and (max-width: 991px) {

  /* Keep Business Setup section side by side */
  .new-business-hero-section .row {
    display: flex;
    align-items: center;
  }

  .new-business-hero-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .new-business-hero-section .order-1 {
    order: 1;
  }

  .new-business-hero-section .order-2 {
    order: 2;
  }

  .new-business-hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .new-business-hero-text {
    font-size: 16px;
  }

  .new-business-hero-image {
    margin-top: 0;
    top: 160px;
  }

  .new-business-hero-image img {
    max-width: 100%;
  }

  /* Keep Consultation Form section side by side */
  .new-business-hero-section .row,
  .new-hero-banner-section .row {
    display: flex;
    flex-wrap: nowrap;
  }

  .new-business-hero-section .col-lg-6,
  .new-hero-banner-section .col-lg-5,
  .new-hero-banner-section .col-lg-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .new-business-hero-title {
    font-size: 36px;
  }

  .new-business-hero-text {
    font-size: 16px;
  }

  .new-business-hero-image img,
  .professional-avatar {
    max-width: 100%;
  }

  .consultation-form {
    max-width: 100%;
    padding: 24px 20px;
  }
}
@media (min-width: 768px) {
  .reviewSliderItem p{
    min-height: 168px;
  }
}
@media (min-width: 1024px) {
  .reviewSliderItem p{
    min-height: 192px;
  }
}
@media (min-width: 1025px) {
  .custom-container1{
    width: 95%;
  }
}

@media (min-width: 1281px) {
     .custom-container1 {
        width: 80%;
    }
}

@media (min-width: 1280px) {
  .reviewSliderItem p{
    min-height: 168px;
  }
  .department_card {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1365px) {
  .reviewSliderItem p{
    min-height: 168px;
  }
}
@media (min-width: 1440px) {
  .reviewSliderItem p{
    min-height: 168px;
  }
}
@media (min-width: 1625px) {
    .department_card {
        -ms-flex: 0 0 23%;
        flex: 0 0 23%;
        max-width: 23%;
    }
}
@media (min-width: 1798px) {

  .newHeading,
  .text-container p {
    max-width: 600px;
  }
  .reviewSliderItem p{
    min-height: 120px;
  }
}

@media (min-width: 1920px) {
  .blogBody .blogImage {
    height: 381px;
    object-fit: cover;
  }
  .banner-hero1 h1{
    max-width: 592px;
  }
}

/* Responsive */
@media (max-width: 1552px) {
   .topLadyStanding{
    width: 700px;
    right: -90px;
   }
}
@media (max-width: 1440px) {
   .topLadyStanding{
    width: 700px;
    right: -90px;
   }
   .banner-hero1{
    padding: 330px 0 0;
   }

}
@media (max-width: 1439px) {
   .topLadyStanding{
    width: 600px;
    right: -90px;
   }

}
@media (max-width: 1365px) {
   .topLadyStanding{
    width: 660px;
   }
   .topLadyStanding{
    right: -76px;
   }
   .banner-hero1 h1{
    font-size: 50px;
    max-width: 500px;
   }
   .banner-hero1 {
    padding: 270px 0 0;
    }
}
@media (max-width: 1364px) {
    .topLadyStanding {
        width: 600px;
    }
}
@media (max-width: 1280px) {
  .banner-hero1{
    padding: 230px 0 0;
  }
  .topLadyStanding{
    right: -11px;
    width: 600px;
  }
  .banner-hero1 h1{
    font-size: 50px;
    max-width: 482px;
  }
 .text-content1 {
    transform: translateY(-70px);
 }
}
@media (max-width: 1200px) {
  .new-banner h2 {
    font-size: 54px;
  }
}
@media only screen and (max-width:1199px) {
  .custom-container1 {
    width: 80%;
    margin: 30px 30px 0;

  }

  .text-content1 {
    padding: 100px 0 45px 0px;
  }

  .banner-hero1 h1 {
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #fff;
    max-width: 592px;
  }

  .banner-hero1 h1 span {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 64px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    color: #fff;
  }

  .banner-hero1 p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 500px;
  }

  .banner-hero1 .img-container img {
    position: absolute;
    bottom: 0px;
    left: 50%;
  }

  .banner-hero1 .counter {
    margin-top: 5rem;
  }

  button.question-btn.w-100.d-flex.justify-content-between {
    text-align: left;
  }

  .banner-hero1 .img-container1 {
    position: relative;
    width: 100%;
    height: 100%;
    top: -50px
      /* left: 50%; */
  }
.banner-hero1{
    background-size: 100% 100%;
    padding: 20px 0 0;
  }
.text-content1 {
        transform: translateY(8px);
    }
  .topLadyStanding{
    width: 530px;
    right: -166px;
  }
  .banner-hero1 .img-container1 img {
    /* position: relative; */
    bottom: 0px;
    width: 780px !important;
    height: 120vh;
    margin-left: -390px
      /* left: 50%; */
  }
}
@media (max-width: 1124px) {
   .banner-hero1 h1{
    font-size: 50px;
   }
}
@media (max-width: 1024px) {
  .new-departments .grid-container {
    display: inline-grid;
    grid-template-columns: 25% 25% 25% 25%;
  }
  .banner-hero1{
    padding: 105px 0 0;
  }
  .topLadyStanding{
    width: 500px;
  }
  .text-content1 {
    padding: 32px 0 45px 0px;
    transform: translateY(-55px);
  }
  .pricing_grid_box{
    gap: 10px;
    padding: 5px;
  }
  .banner-hero1 h1{
    font-size: 45px;
    line-height: 1.2;
  }
  
}
@media (max-width: 992px) {
  .new-pricing-plan-sec .new-card {
    padding: 40px 25px;
  }

  .new-plan-price {
    font-size: 2rem;
  }

  .new-feature-list li {
    font-size: 16px;
    line-height: 32px;
  }

  .new-content-wrapper {
    flex-direction: column;
  }

  .new-sidebar {
    width: 100%;
    padding: 20px 0;
  }

  .new-sidebar-section {
    width: 100%;
    /* max-width: 600px; */
  }

  .new-featured-card {
    transform: scale(1);
    margin-bottom: 30px;
  }

  .new-featured-card:hover {
    transform: translateY(-5px);
  }

  .new-hero-banner-section {
    background-attachment: scroll;
  }

  .row.h-100 {
    flex-direction: column;
    text-align: center;
  }

  .professional-image {
    order: -1;
    /* margin-bottom: 2rem; */
  }

  .consultation-form {
    width: 100%;
    max-width: 500px;
    padding: 28px;
    border-radius: 20px;
  }
  .new-business-hero-image {
    margin-top: 20px;
  }
  .topLadyStanding{
    bottom: 0;
    width: 360px;
    right: -100px;
  }
  .newHeading{
    font-size: 30px;
  }
  .banner-hero1 h1{
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .custom-container1 {
    width: 80%;
    margin: 30px;
    margin-bottom: -40px;
  }

  .banner-hero1 h1 span {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    color: #fff;
  }

  .banner-hero1 p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 500px;
  }

  .banner-hero1 .img-container img {
    position: absolute;
    bottom: 0px;
    left: 50%;
  }

  .banner-hero1 .counter {
    margin-top: 5rem;
  }

  button.question-btn.w-100.d-flex.justify-content-between {
    text-align: left;
  }

  .banner-hero1 .img-container1 {
    position: relative;
    width: 100%;
    height: 100%;
    top: -100px;
    /* left: 50%; */
  }

  .banner-hero1 .img-container1 img {
    /* position: relative; */
    bottom: 0px;
    width: 780px !important;
    height: 120vh;
    margin-left: -390px
      /* left: 50%; */
  }
}
@media (max-width: 882px) {
  .new-departments .grid-container {
    display: inline-grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
}
@media (max-width: 768px) {
  .new-banner h2 {
    font-size: 38px;
  }

  .new-main-content {
    padding: 20px;
  }

  .new-sidebar {
    padding: 20px;
  }

  .new-main-heading,
  .new-company-title {
    text-align: center;
  }

  .new-hero-image {
    max-width: 100%;
    height: auto;
  }

  .new-contact-form .form-control {
    width: 100%;
    font-size: 16px;
    height: 56px;
  }

  .new-contact-form .form-control::placeholder {
    font-size: 16px;
  }

  .new-btn-submit {
    width: 100%;
    height: 50px;
  }

  .new-sidebar-divider::before {
    width: 40%;
  }

  .new-pricing-card-section {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .consultation-form {
    width: 95%;
    padding: 24px 20px;
    border-radius: 18px;
    gap: 24px;
  }

  .professional-avatar {
    max-width: 320px;
  }

  .new-gallery-img {
    height: 240px;
  }

  .why-choose-section {
    padding: 40px 0;
  }

  .video-controls {
    padding: 15px 10px 10px;
    gap: 8px;
  }

  .control-btn svg {
    width: 20px;
    height: 20px;
  }

  .time-display {
    font-size: 11px;
  }
  .new-plan-title {
    font-size: 1.5rem;
    height: auto;
  }

  .new-plan-price {
    font-size: 1.8rem;
  }

  .new-btn-black {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {

  .new-business-hero-section,
  .new-hero-banner-section {
    min-height: auto;
    padding: 40px 0 0 0;
  }

  .new-business-hero-content .row,
  .new-hero-banner-section .row {
    min-height: auto;
    flex-direction: column;
  }

  .new-business-text-wrapper,
  .consultation-form-wrapper {
    padding: 30px 15px;
  }

  .new-business-hero-image,
  .professional-image-wrapper {
    margin-top: 0 !important;
    min-height: 400px;
  }
.professional-image-wrapper{
  margin-top: 0;
}
  .new-business-hero-image img {
    max-width: 100%;
    max-height: unset;
    height: auto;
  }

  .professional-avatar {
    max-width: 400px;
    aspect-ratio: 1 / 1.2;
  }

  .consultation-form {
    max-width: 100%;
    padding: 24px 20px;
    gap: 20px;
  }
  .banner-hero1{
    background-size: cover;
    padding: 102px 0 0;
  }
  .topLadyStanding{
    position: unset;
  }
  .text-content1{
    padding:0 0 20px 0;
    transform: translateY(0);
  }
  .newHeading,.new-heading{
    font-size: 32px;
  }
  .y-gap{
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .reviewSlider{
    padding-bottom: 16px;
  }
  .stats-section{
    margin-bottom: 16px;
  }
  .howWorksCards{
    margin-top: 25px;
  }
  .howWorksCards h5{
    font-size: 18px;
  }
  .howWorksCards-icon{
    width: 60px;
    height: 60px;
  }
  .pricing_grid_box{
    padding: 0;
  }
  .sm_pricing_card h3{
    min-height: auto;
  }
  .new-price-amount-custom{
    font-size: 25px;
  }
  .w-sm-100{
    width: 100%;
  }
  .reviewBg{
    padding: 20px;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button{
    opacity: 0.3;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button:focus{
    opacity: 1 !important;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev{
    left: -8px;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button.owl-next{
    right: -8px;
  }
  #customAccordion .card .collapse .card-body{
    padding: 24px;
  }
  #customAccordion .btn-link::before{
    right: 10px;
  }
  .topLadyStanding{
    width: 100%;
  }
  .banner-hero1{
    margin-top: -102px;
  }
  .banner-hero1 h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .pricing_grid_box{
    gap: 20px;
  }
  .item.row{
    gap: 4px;
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .department_card{
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
    margin-right: 0;
    margin-bottom: 4px;
    }
  .blogBody{
    padding: 16px;
    }
  .blogs_row>a{
    margin-top: 20px;
  }
   .new-hero-banner-section, .new-business-hero-section{
    padding-top: 0 !important;
    padding-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .new-banner h2 {
    font-size: 28px;
  }

  .new-main-content {
    padding: 15px;
  }

  .new-hero-image {
    height: auto;
  }

  .new-pricing-card-section {
    padding: 20px 15px;
  }

  .new-feature-item {
    padding: 15px 15px 15px 35px;
  }

  .new-feature-item::before {
    width: 16px;
    height: 16px;
    left: 6px;
  }

  .new-sidebar-divider::before {
    width: 50%;
  }

  .new-business-hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .new-business-hero-text {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .new-business-hero-cta {
    margin-top: 20px;
  }

  .consultation-form {
    padding: 20px 16px;
    border-radius: 12px;
    gap: 16px;
  }

  .consultation-form input,
  .consultation-form textarea {
    height: 56px;
    font-size: 16px;
  }

  .consultation-form textarea {
    min-height: 100px;
  }

  .professional-avatar {
    max-width: 320px;
  }

  .new-gallery-img {
    height: 200px;
  }

  .new-gallery-card {
    padding: 20px 15px;
  }
   .new-plan-price {
    font-size: 1.6rem;
  }

  .new-feature-list li {
    font-size: 14px;
  }
}

/* Mobile Medium - 400px to 480px */
@media (max-width: 480px) {
  .new-main-content {
    padding: 12px;
  }

  .new-contact-form {
    padding: 15px;
  }

  .new-pricing-card-section {
    padding: 15px 12px;
  }

  .new-feature-item {
    padding: 12px 12px 12px 32px;
  }

  .special-list {
    padding: 10px 10px 10px 32px;
  }

  .new-gallery-img {
    height: 180px;
  }

  .btn-link {
    padding: 15px 35px 15px 0;
  }

  .video-controls {
    padding: 12px 8px 8px;
    gap: 6px;
  }

  .control-btn svg {
    width: 18px;
    height: 18px;
  }

  .time-display {
    font-size: 10px;
  }
}

/* Mobile Small - 320px to 400px */
@media (max-width: 400px) {
  .new-main-content {
    padding: 10px;
  }

  .new-contact-form {
    padding: 12px;
  }

  .new-sidebar-section {
    padding: 20px 15px;
  }

  .new-business-text-wrapper,
  .consultation-form-wrapper {
    padding: 0;
  }

  .consultation-form {
    padding: 16px 12px;
    gap: 14px;
  }

  .professional-avatar {
    max-width: 280px;
  }

  .new-gallery-img {
    height: 160px;
  }

  .new-gallery-card {
    padding: 0 10px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }
}

/* Extra Small Mobile - Below 360px */
@media (max-width: 360px) {

  .new-main-content,
  .new-secondary-content {
    padding: 8px;
  }

  .new-sidebar-section {
    padding: 15px 10px;
  }

  .new-contact-form {
    padding: 10px;
  }

  .new-feature-item {
    padding: 10px 10px 10px 28px;
  }

  .new-feature-item::before {
    width: 14px;
    height: 14px;
    left: 4px;
  }

  .new-gallery-img {
    height: 140px;
  }

  .consultation-form {
    padding: 12px 8px;
    gap: 12px;
  }
}

/* Print Styles */
@media print {

  .new-sidebar,
  .new-contact-form,
  .consultation-form,
  .new-choose-btn,
  .new-featured-btn,
  .new-btn-submit {
    display: none;
  }

  .new-content-wrapper {
    display: block;
  }

  .new-main-content {
    padding: 0;
  }

  .new-pricing-card-section {
    page-break-inside: avoid;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .new-hero-image,
  .new-gallery-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Orientation Specific Adjustments */
@media (max-width: 992px) and (orientation: landscape) {

  .new-business-hero-section,
  .new-hero-banner-section {
    min-height: auto;
    padding: 30px 0 0 0;
  }

  .new-business-hero-image,
  .professional-image-wrapper {
    min-height: 300px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {

  .new-contact-form .form-control,
  .consultation-form input,
  .consultation-form textarea {
    -webkit-appearance: none;
    border-radius: 12px;
  }
}

/* Focus states for accessibility */
.new-service-link:focus,
.new-btn-submit:focus,
.new-choose-btn:focus,
.new-featured-btn:focus,
.consultation-form button:focus,
.new-contact-form .form-control:focus {
  outline: 2px solid #61C6C4;
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}