@font-face {
  font-family: "Degular";
  src: url("../fonts/Degular (14)/Degular-Black.otf"),
    url("../fonts/degular (14)/Degular-BlackItalic.otf"),
    url("../fonts/degular (14)/Degular-Bold.otf"),
    url("../fonts/degular (14)/Degular-BoldItalic.otf"),
    url("../fonts/degular (14)/Degular-Light.otf"),
    url("../fonts/degular (14)/Degular-Medium.otf"),
    url("../fonts/degular (14)/Degular-Regular.otf"),
    url("../fonts/degular (14)/Degular-Semibold.otf");
}

/* @font-face {
  font-family: "Degular";
  src: url("fonts/Degular (14)/Degular-Black.otf"),
    url("fonts/degular (14)/Degular-BlackItalic.otf"),
    url("fonts/degular (14)/Degular-Bold.otf"),
    url("fonts/degular (14)/Degular-BoldItalic.otf"),
    url("fonts/degular (14)/Degular-Light.otf"),
    url("fonts/degular (14)/Degular-Medium.otf"),
    url("fonts/degular (14)/Degular-Regular.otf"),
    url("fonts/degular (14)/Degular-Semibold.otf"); */
/* } */

:root {
  --primary-color: #00cc66;
  --secondary-color: #002b24;
  --font-heading: "Degular", sans-serif;
  --font-para: "inter";
  --theme-darkgreen: #072021;
  --white: #ffffff;
  --theme-lightgreen: #81e541;
  --theme-grey: #939393;
  --therapy-green: #0B3E40;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  background-color: transparent;
  border: 0px;
}

p {
  font-family: var(--font-para);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}
.main {
  max-width: 1440px;
  margin: 0 auto;
}
/* header */

.header {
  position: fixed;
  width: 100%;
  background-color: var(--theme-darkgreen);
  top: 0;
  padding: 15px 0;
  z-index: 1000;
}

.head-hero {
  padding: 51px 0;
  background-color: var(--theme-darkgreen);
}
.container {
  width: 1141px;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 184px;
}

.logo > img {
  width: 100%;
}

.hamburger {
  display: none;
}

.nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}

.nav > ul .close {
  display: none;
}

.nav > ul li > a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-para);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 10px;
}

.nav > ul li.active > a {
  color: var(--theme-lightgreen) !important;
  /* border-bottom: 3px solid var(--theme-lightgreen); */
  border-radius: 2px;
}

.nav > ul li.active {
  position: relative;
}

.nav > ul li.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background-color: var(--theme-lightgreen);
  left: 0;
}

.dropdown .dropdown-menu li.active::after {
  bottom: 0px;
}

.dropdown-menu li.active:hover a {
  color: var(--white);
}

.btn-primary {
  padding: 15px 41px;
  background-color: var(--theme-lightgreen);
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.48px;
  color: var(--theme-darkgreen);
  transition: transform 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(0.9);
}

/* Dropdown menus */

.dropdown {
  position: relative;
}
.dropdown-menu {
  width: 260px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--theme-darkgreen);
  border: 1px solid var(--white);
  min-width: 180px;
  flex-direction: column;
  z-index: 1000;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding-bottom: 15px;
}

/* Show on hover */
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  transform: translateY(10px);
}
.dropdown:hover > .dropdown-menu.right {
  transform: translateY(0px);
}

/* Inner dropdowns (second level) */
.dropdown-menu .dropdown-menu.right {
  top: 0;
  left: 100%;
}

.dropdown-menu li {
  padding: 15px;
}
/* Inner dropdown arrow hover */
.dropdown-menu li:hover {
  background: var(--theme-lightgreen);
  color: var(--white);
}

/* hero */
.hero {
  width: 1135px;
  margin: 120px auto 0 auto;
}
.hero-inner {
  text-align: center;
  width: 765px;
  margin: 0 auto;
  color: var(--white);
}

.hero-inner h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 68px;
  line-height: 60px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 15px;
}

.hero-inner p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}

.hero-inner .hireUs {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hireUs .btn-primary {
  padding: 15px 119px;
}

.hireUs .clients {
  width: 164px;
  margin: 0 15px 0 29px;
}

.hireUs .counter h3 {
  color: var(--theme-lightgreen);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 45px;
  line-height: 0.9;
}

.hireUs .counter p {
  color: var(--white);
  font-family: var(--font-para);
  font-size: 13px;
  font-weight: 700;
  line-height: 0.8;
}

.client-slider {
  margin-top: 107px;
}

.client-slider figure a {
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-slider figure a img {
  width: auto;
}

/* EXPERTISE */
.expertise {
  padding: 60px 0;
}
.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header h2 {
  font-weight: 800;
  font-size: 45px;
  line-height: 43px;
  letter-spacing: 1px;
}
.section-header p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  letter-spacing: 0%;
  width: 520px;
  color: #363636;
}
/* .expertise-wrapper {
  display: flex;
  box-shadow: 0px 0px 31px 0px #c0c0c040;
  border-radius: 21px;
}
.expertise-left {
  width: 60%;
  padding: 54px 56px 0 54px;
}
.expertise-left ul {
  column-count: 2; 
  column-gap: 45px; 
}

.expertise-left li {
  break-inside: avoid; 
  min-height: 110px;
  margin-bottom: 30px;
  width: 77%;
}

.expertise-left li > span {
  color: var(--theme-grey);
  font-family: var(--font-para);
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0px;
}

.expertise-left li > h4 {
  font-family: var(--font-para);
  font-weight: 900;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0px;
  margin: 20px 0 0px 0;
  color: #000;
}
.expertise-left li.active > h4 {
  border-bottom: 5px solid var(--theme-lightgreen);
}

.expertise-left li.active span {
  color: var(--theme-lightgreen);
  padding-bottom: 10px;
}
.expertise-left li.active h4 {
  color: var(--theme-lightgreen);
}
.expertise-right {
  width: 510px;
  background: var(--theme-darkgreen);
  color: white;
  padding: 60px 55px 55px 55px;
  border-radius: 0 21px 21px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
} */

.digital-marketing {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  background: #f5f7fa; /* light bg outside */
}

.main-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* Left Section */
.main-container .left {
  padding: 40px;
}

.main-container .left h2 {
  font-size: 45px;
  font-weight: 800;
  line-height: 43px;
  margin-bottom: 20px;
  color: var(--theme-darkgreen);
}

.main-container .left p {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.8px;
  color: #363636;
}

/* Right Section with Scroll */

.main-container .right-m {
  background-color: var(--theme-darkgreen);
  padding: 30px 10px 40px 0;
  border-radius: 0 20px 20px 0;
}

.main-container .right {
  flex: 1;
  max-height: 400px; /* fixed height */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px; /* space for scrollbar */
}

/* Custom Scrollbar */
.main-container .right::-webkit-scrollbar {
  width: 6px;
}
.main-container .right::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 10px;
}
.main-container .right::-webkit-scrollbar-thumb {
  background: var(--theme-lightgreen);
  border-radius: 10px;
  border: 1px solid var(--theme-darkgreen);
}

.main-container .right {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--thumb) var(--white);

  /* Legacy MS behavior fallback */
  -ms-overflow-style: auto;
}

/* Service Box */
.service-box {
  background: var(--theme-darkgreen);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #fff;
  padding: 25px;
}

.service-box .icon-name-link {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.service-box .icon-name-link img {
  width: 63px;
}

.service-box .icon-name-link a {
  text-decoration: none;
}

.service-box .icon-name-link a i {
  color: var(--theme-lightgreen);
  font-size: 40px;
  transform: rotate(45deg);
}

.service-box h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 10px;
  color: var(--white);
  width: 65%;
}

.service-box p {
  font-size: 16px;
  line-height: 22.8px;
  color: var(--white);
}

/*  */
.service-content {
  display: none;
}
.service-content figure img {
  padding-bottom: 40px;
}
.service-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  color: var(--theme-lightgreen);
  padding-bottom: 15px;
}
.service-content p {
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 22.8px;
  letter-spacing: 0%;
}
.service-content.active {
  display: block;
}

.info {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}

.info div > span {
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0px;
}

.info .next-info {
  text-align: end;
}
.nav-arrows {
  width: 100%;
}
.arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.arrows button {
  background-color: transparent;
  border: 0;
}

.arrows button > i {
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Discover */

.discover {
  background-color: var(--theme-darkgreen);
  padding: 62px 0 82px 0;
  text-align: center;
  color: white;
}

.slider-main {
  position: relative;
}

.dis-inner > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  width: 732px;
  margin: 0 auto;
}

.dis-inner > h2 {
  font-size: 38px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 15px;
}

.dis-slider {
  background-color: var(--white);
  border: 3px solid #ffffff;
  border-radius: 20px;
  padding: 0px 54px 15px 18px;
  display: flex !important;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  column-gap: 50px;
  margin-top: 43px;
}

.dis-left {
  border-radius: 20px;
  width: 100%;
}

.dis-left > figure > img {
  margin: -4px;
}

.dis-right {
  padding: 30px 0 42px;
  position: relative;
  min-height: 470px;
}

.dis-right > a {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 17.18px;
  line-height: 26.84px;
  letter-spacing: 0%;
  text-decoration: none;
  color: #4e4e4e;
}

.cmxlogo {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 20px;
  padding-top: 18px;
}

.cmxlogo h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40.79px;
  line-height: 38.65px;
  letter-spacing: 1.07px;
  color: var(--theme-darkgreen);
}

.dis-right h4 {
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 21.47px;
  line-height: 26.84px;
  letter-spacing: 0%;
  padding-top: 10px;
  color: #000;
}

.dis-right > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.8px;
  letter-spacing: 0%;
  color: #000;
  padding-top: 15px;
}

.dis-right .btn-primary {
  position: absolute;
  bottom: 0;
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 17.18px;
  line-height: 18.25px;
  letter-spacing: 0.52px;
  text-transform: capitalize;
}

/*  */

/* Remove default Slick arrow styles */
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 6 Free"; /* Font Awesome font */
  font-weight: 900; /* Required for solid icons */
  font-size: 12px;
  color: var(--theme-lightgreen); /* Change arrow color */
  opacity: 1; /* Make sure it's visible */
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: var(--white);
}

/* Left arrow (chevron-left) */
.slick-prev:before {
  content: "\f060"; /* Font Awesome code for left chevron */
}

/* Right arrow (chevron-right) */
.slick-next:before {
  content: "\f061"; /* Font Awesome code for right chevron */
}

.slider-main > .slick-prev {
  left: 85%;
  z-index: 1;
}

.slick-prev,
.slick-next {
  border: 1px solid var(--theme-lightgreen);
  border-radius: 100%;
  box-shadow: 0px 0px 16px 0px #b7a0a040;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px;
  top: 84%;
}
.slick-prev:hover,
.slick-next:hover {
  background-color: var(--theme-lightgreen);
}

.slick-next {
  right: 7%;
  z-index: 1;
}

.dis-inner .btn-primary {
  margin-top: 50px;
}

/* serve */

.serve {
  padding: 50px 0 65px 0;
  text-align: center;
}

.serve-head {
  text-align: center;
}

.serve-head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 45px;
  line-height: 36px;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 14px;
  color: var(--theme-darkgreen);
}

.serve-head > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  letter-spacing: 0%;
  text-align: center;
  width: 818px;
  margin: 0 auto;
}

.services-slider {
  position: relative;
  margin-top: 34px;
}

.service {
  padding: 20px 12px 42px 20px;
  border: 1px solid #072021;
  border-radius: 20px;
  width: 270px;
  text-align: left;
  margin: 0 10px;
  min-height: 325px;
}

.service > figure {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-darkgreen);
  border-radius: 100%;
  width: 79px;
  height: 79px;
  margin-bottom: 11px;
}

.service h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--theme-lightgreen);
}

.service > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 14px;
  line-height: 19.8px;
  letter-spacing: 0%;
  color: #363636;
}

.services-slider > .slick-prev {
  left: -42px;
}

.services-slider > .slick-next {
  right: -42px;
}

.services-slider > .slick-next,
.services-slider > .slick-prev {
  top: 50%;
}

/* Clients Say */

.clientsay {
  background-color: var(--theme-darkgreen);
  padding: 61px 0 120px 0;
}

.say-inner > .serve-head > h3 {
  color: var(--white);
  font-size: 34px;
}

.say-inner > .serve-head > h2 {
  color: var(--white);
  font-size: 34px;
}

.say-slider {
  padding-top: 35px;
}

.client-comm {
  width: 559px;
  border-radius: 20px;
  background-color: var(--white);
  border: 2px solid var(--theme-lightgreen);
  box-shadow: 0px 0px 24px 0px #7a6b6b40;
  padding: 20px 32px 28px 44px;
}

.client-comm > figure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
}

figure .clientpic {
  width: 81px;
}

figure .linkedin {
  width: 48px;
}

.client-comm {
  margin: 0px 10px;
}

.client-comm > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 25.8px;
  letter-spacing: 0%;
  color: black;
}

.client-comm > .name-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  color: var(--theme-darkgreen);
}

.name-rating > .name > h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22.03px;
  line-height: 18.03px;
  letter-spacing: 0.57px;
  text-transform: capitalize;
}

.name-rating .name > p {
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 12.11px;
  line-height: 11.54px;
  letter-spacing: -0.63px;
  text-transform: capitalize;
  padding-top: 7px;
  color: var(--theme-darkgreen);
}

.name-rating .rating h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40.03px;
  line-height: 18.03px;
  letter-spacing: 0.57px;
  text-transform: capitalize;
  padding-bottom: 7px;
}
.name-rating .rating > h4 > i {
  font-size: 18px;
  color: #fdbf00;
}

.name-rating .rating > p {
  font-family: var(--font-para);
  font-weight: 700;
  font-style: Bold;
  font-size: 12.11px;
  line-height: 11.54px;
  letter-spacing: -0.63px;
  text-transform: capitalize;
}

.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0;
}
.slick-dots li.slick-active {
  padding: 0;
  background: var(--theme-lightgreen);
  top: -1px;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  color: transparent;

}
.slick-dots li.slick-active button::before {
  color: transparent;

}

.slick-dots li button {
  padding: 2px;
}

.slick-dots li button::before {
  font-family: slick;
  font-size: 11px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: white;
}

.slick-dots li.slick-active {
  margin: 0 5px 0 10px;
}

.slick-dots {
  bottom: -55px;
}

/* Why Choose */

.whychoose {
  padding: 52px 0 54px 0;
}

.choose-inner > .serve-head > p {
  width: 946px;
  color: #000;
}

.single-img-sec {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 72px;
}

.checkbox-sec {
  display: flex;
  justify-content: start;
  align-items: start;
  column-gap: 22px;
  padding-bottom: 10px;
}

.checkbox-sec figure > img {
  width: 28px;
  margin-top: 8px;
}

.check-des h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: var(--theme-darkgreen);
}

.check-des p {
  font-family: var(--font-para);
  font-weight: 400;
  color: var(--theme-darkgreen);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

/* Blog */

.blog {
  background-color: var(--theme-darkgreen);
  padding: 61px 0 73px 0;
}

.blog-inner > .serve-head > h3 {
  color: var(--white);
}

.blog-inner > .serve-head > h2 {
  color: var(--white);
}

.blog-inner > .serve-head > p {
  color: var(--white);
}

.blogs-sec {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 50px;
}

.blogs {
  width: 366px;
  text-decoration: none;
}

.blogs figure img {
  width: 100%;
}

.blogs figure img:hover {
  transform: scale(1.05) rotate(2deg);
  transition: 0.5s;
}

.blog-des h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--white);
  padding: 19px 0 7px 0;
}

.blog-des p {
  font-family: var(--font-para);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  min-height: 60px;
  color: var(--white);
}

.blog-des button {
  padding-top: 14px;
}

.blog-des button > a {
  font-family: var(--font-para);
  font-weight: 700;
  font-style: Bold;
  font-size: 17.18px;
  line-height: 18.25px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  color: var(--theme-lightgreen);
  text-decoration: none;
}

.blog-des button > .view-blog > i {
  font-size: 12px;
  padding-left: 7px;
  color: white;
}

.weserve {
  padding: 58px 0 128px 0;
}

.weserve-inner > .serve-head h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 45px;
  line-height: 36px;
  letter-spacing: 1px;
  color: var(--theme-darkgreen);
  padding-bottom: 60px;
}

.weserve-inner > .serve-head h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 45px;
  line-height: 36px;
  letter-spacing: 1px;
  color: var(--theme-darkgreen);
  padding-bottom: 60px;
}

.weserve-slider > figure {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 22.5px;
}

.weserve-slider .slick-slide {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  column-gap: 55px;
  min-height: 55px;
}

.weserve-slider .slick-slide a > img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.weserve-slider .slick-slide a > img:hover {
  filter: grayscale(0%);
}

.weserve-slider > .slick-dots li button::before {
  opacity: 0.25;
  color: #ffffff59;
  color: white;
}

.weserve-slider > .slick-dots li.slick-active button::before {
  opacity: 0.25;
  color: transparent;
}

/* FAQ */

.faq {
  background-color: var(--theme-darkgreen);
  padding: 72px 0 93px 0;
}

.faq-inner .serve-head h3 {
  color: var(--white);
}

.faq-inner .serve-head h2 {
  color: var(--white);
}


.faq-section {
  max-width: 946px;
  margin: auto;
  background: var(--theme-darkgreen);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--white);
  padding-right: 35px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s ease;
  color: var(--theme-lightgreen);
  font-family: var(--font-para);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: var(--white);
}

/* Grow */

.grow {
  background-image: url('../images/growbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 34px 0 58px 0;
}

.grow-inner > .serve-head > p {
  color: var(--theme-darkgreen);
  width: 700px;
}

.grow-inner > .serve-head > h3 {
  line-height: 63px;
}

.grow-inner > .serve-head > button {
  margin-top: 35px;
}

.grow-inner > .serve-head > button > a {
  background-color: var(--theme-darkgreen);
  color: var(--white);
  border-radius: 5px;
}

/* Footer */

.footer {
  background-image: url('../images/footerbg.png');
  background-size: 420px;
  background-position: top right;
  background-repeat: no-repeat;
  background-color: var(--theme-darkgreen);
  padding: 97px 0 67px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  column-gap: 50px;
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 38px;
}

.get-started-left {
  color: var(--white);
  width: 50%;
}

.get-started-left h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 96px;
  line-height: 85px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.get-started-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 96px;
  line-height: 85px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.get-started-left > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 33.8px;
  letter-spacing: 0%;
  padding-top: 20px;
}

.get-started-right {
  width: 40%;
}

.form-group {
  padding-bottom: 38px;
  display: flex;
}

.form-group input {
  background: none;
  border: none;
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24.8px;
  letter-spacing: 0%;
  color: var(--white);
  border-bottom: 1px solid #ffffff90;
  width: 50%;
}

.form-group textarea {
  background: transparent;
  border: none;
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24.8px;
  letter-spacing: 0%;
  color: var(--white);
  padding-bottom: 0px;
  border-bottom: 1px solid #ffffff90;
  width: 50%;
  height: 45px;
  border-radius: 0;
}
.form-group textarea:focus {
  outline: none;
}

.form-group input[type="name"] {
  margin-right: 25px;
  padding: 12px;
}

.form-group input[type="number"] {
  margin-right: 25px;
  height: 45px;
  padding: 12px;
}

.get-started-right > form #project {
  background: none;
  border: none;
  font-family: var(--font-para);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24.8px;
  letter-spacing: 0%;
  color: var(--white);
  padding-bottom: 25px;
  border-bottom: 1px solid #ffffff90;
  width: 100%;
}

.get-started-right > form > #submit {
  background-color: var(--theme-lightgreen);
  border: none;
  font-family: var(--font-para);
  font-weight: 700;
  font-style: Bold;
  font-size: 17.18px;
  line-height: 18.25px;
  letter-spacing: 0.52px;
  text-transform: capitalize;
  padding: 16px 40px;
  border-radius: 20px;
  cursor: pointer;
}
.get-started-right > form > #submit:hover {
  color: var(--white);
  transition: 0.2s;
}
input:focus {
  outline: none;
}

.footernav {
  padding: 45px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #ffffff33;
}

.footernav > nav {
  width: 33.33%;
}

.footernav > nav > ul > .bold {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  line-height: 33.8px;
  letter-spacing: 0%;
  color: var(--white);
}

.footernav > nav > .services > li {
  padding-top: 17px;
}

.footernav > nav > .services > li > a {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
  line-height: 24.8px;
  letter-spacing: 0%;
  text-decoration: none;
  color: var(--white);
}
.footernav > nav > .services > li > p {
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
  line-height: 24.8px;
  letter-spacing: 0%;
  text-decoration: none;
  color: var(--white);
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 33px 0 0px 0;
}

.copyright > ul {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 32px;
}

.copyright > .copytext {
  font-family: var(--font-para);
  font-weight: 600;
  font-size: 15.84px;
  line-height: 35.66px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--white);
  opacity: 0.7;
}

.copyright > .copytext > a {
  text-decoration: none;
  color: var(--theme-lightgreen);
}

.copyright > .privacy > a {
  text-decoration: none;
  font-family: var(--font-para);
  font-weight: 700;
  font-size: 15.84px;
  line-height: 35.66px;
  letter-spacing: 0.5%;
  text-transform: capitalize;
  color: var(--white);
  opacity: 0.7;
}

/* ABOUT US PAGE START */

.hero-inner.aboutpg {
  width: 100%;
  margin-top: 90px;
}

.about-btn {
  background-color: var(--theme-darkgreen);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-lightgreen);
  box-shadow: 0px 0px 10px 4px var(--theme-lightgreen);
  transition-duration: 0.9s;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-radius: 84px 84px 84px 84px;
  padding: 14px 65px;
  text-decoration: none;
}

.about-btn:hover {
  background-color: var(--theme-lightgreen);
  color: var(--theme-darkgreen);
}

.hero-inner.aboutpg > h1 {
  margin-top: 45px;
}

.hero-inner.aboutpg > p {
  margin-bottom: 40px;
}

.hero-inner.aboutpg > .btn-primary {
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block; /* Needed for transform on inline elements */
}

.hero-inner.aboutpg > .btn-primary:hover {
  transform: scale(0.9);
  background-color: var(--white);
}

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto; /* Allow scrolling for overlay if needed */
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 40px 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  max-height: 80vh; /* Limit height */
  overflow-y: auto; /* Scroll inside popup */
}

.popup-content > h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
}

.popup-content form input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-family: var(--font-para);
  font-weight: 400;
  margin-bottom: 20px;
  border: 1px solid var(--theme-lightgreen);
  outline: var(--theme-lightgreen);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 400;
}

.popup-close:hover {
  color: var(--theme-lightgreen);
}

/* Inputs */
.popup-content form input,
.popup-content form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-color: var(--theme-lightgreen);
}

.popup-content form textarea {
  height: 120px;
}

input[type="submit"] {
  background-color: var(--theme-lightgreen);
  color: var(--white);
  font-family: var(--font-para);
  font-weight: 500;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: var(--theme-darkgreen);
  cursor: pointer;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 5px; /* Track width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track background */
}

::-webkit-scrollbar-thumb {
  background: var(--theme-lightgreen); /* Thumb color */
  border-radius: 100%;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-lightgreen) #f1f1f1;
}

.single-img-sec.aboutpg {
  flex-direction: row-reverse;
}

.single-img-sec.aboutpg > .single-img-left > img {
  width: 550px;
}

.single-img-sec.aboutpg > .single-img-right > div > div > h3 {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #000000;
  margin-bottom: 30px;
}

.single-img-sec.aboutpg > .single-img-right > div > div > h2 {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #000000;
  margin-bottom: 30px;
}

.single-img-sec.aboutpg > .single-img-right > div > div > p {
  font-family: var(--font-para);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 24px;
}

/* What's Behind */
.whychoose.behind {
  padding: 0;
}
.single-img-sec.behind {
  column-gap: 100px;
}
.single-img-sec.behind .single-img-left,
.single-img-sec.behind .single-img-right {
  width: 50%;
  height: 531px;
}

.single-img-sec.behind {
  background-color: var(--theme-darkgreen);
  padding: 0;
}

.single-img-sec.behind .single-img-left > img {
  width: 100%;
  height: 100%;
}

.single-img-sec.behind > .single-img-right {
  background-color: var(--theme-darkgreen);
  color: var(--white);
  padding: 30px 30px 30px 0;
}

.single-img-sec.behind > .single-img-right h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 36px;
  color: #ffffff;
  padding-bottom: 20px;
}

.single-img-sec.behind > .single-img-right h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 36px;
  color: #ffffff;
  padding-bottom: 20px;
}

.single-img-sec.behind > .single-img-right h4 {
  font-family: var(--font-para);
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #f4f4f4;
  margin-bottom: 25px;
}

.single-img-sec.behind > .single-img-right p {
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #f7f7f7;
  margin-bottom: 25px;
}

.single-img-sec.behind > .single-img-right p > span {
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--theme-lightgreen);
}

/* Our Values */

.values {
  padding: 70px 0 100px 0;
  background-color: var(--theme-darkgreen);
}

.values-inner > .serve-head > h2 {
  color: var(--white);
  position: relative;
}

.values-inner > .serve-head > p {
  color: var(--white);
}

.values-inner > .serve-head > h3 > .underline {
  background-color: var(--theme-lightgreen);
  width: 160px;
  height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5px auto;
}

.values-inner > .serve-head > p {
  width: 700px;
}

.values-slider {
  margin-top: 80px;
}

.values-slider .val-slide {
  width: 350px;
  text-align: left;
  margin: 0 40px;
}

.values-slider .val-slide > a {
  text-decoration: none;
}

.values-slider .val-slide h3 {
  color: var(--theme-lightgreen);
  font-family: var(--font-para);
  font-size: 25px;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: -0.5px;
  margin-top: 0px;
  text-align: left;
}

.values-slider .val-slide > p {
  color: #eaeaea;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.1px;
  word-spacing: 0px;
  margin-top: 10px;
}

.values-slider > .slick-prev::before,
.slick-next::before {
  color: var(--theme-lightgreen);
}

.values-slider > .slick-prev {
  left: -60px;
  top: 50%;
}

.values-slider > .slick-next {
  right: -60px;
  z-index: 1;
  top: 50%;
}

.values-inner > p {
  width: 670px;
  text-align: center;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.1px;
  color: #ffffff;
  margin: 60px auto 0;
}

/* Our Team */

.ourteam {
  padding: 90px 0 60px 0;
}

.team-inner > .serve-head > p {
  color: var(--theme-darkgreen);
  text-align: center;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.team-slider {
  margin-top: 60px;
}

.team-slider .member {
  margin: 0 20px;
}

.member > figure > .pic {
  width: 211px;
  height: 211px;
  border-radius: 100%;
  border: 4px solid var(--theme-lightgreen);
  margin: 0 auto;
  display: block;
}

.member > .name-linked {
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 20px;
  column-gap: 10px;
}

.name-linked > .name-desin {
  text-align: center;
}
.name-linked > .name-desin > h4 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-para);
}

.name-linked > .name-desin > P {
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  color: #000;
}

.team-slider > .slick-list {
  margin: 0 -20px;
}

.say-slider.aboutpg .client-comm {
  background-color: var(--theme-darkgreen);
  color: var(--white);
}

.say-slider.aboutpg .client-comm > p {
  color: var(--white);
}

.say-slider.aboutpg .client-comm > .name-rating {
  color: var(--white);
}

.say-slider.aboutpg .client-comm > .name-rating .name > p {
  color: var(--white);
}

.weserve-slider.aboutpg .slick-slide {
  min-height: 56px;
}

.weserve-slider.aboutpg .slick-slide {
  width: 188px;
  margin: 0 35px;
}

.serve-head.aboutpg > p {
  color: white;
}

.faq.aboutpg {
  background-color: #f1f1f1;
}

.faq-inner.aboutpg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 60px;
}

.faq-inner.aboutpg p {
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  width: auto;
  text-align: left;
}

.faq-inner.aboutpg > .serve-head {
  width: 45%;
}

.faq-inner.aboutpg > .serve-head > h3 {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 800;
  line-height: 85px;
  letter-spacing: -0.6px;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
}

.faq-inner.aboutpg > .serve-head > h2 {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 800;
  line-height: 85px;
  letter-spacing: -0.6px;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
}

.faq-inner.aboutpg > .faq-section {
  width: 55%;
  background-color: transparent;
  box-shadow: none;
}

.faq-inner.aboutpg > .faq-section .faq-item {
  border-color: #000;
}

.faq-inner.aboutpg > .faq-section .faq-question {
  color: #000;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.8px;
  word-spacing: 0px;
}

.faq-inner.aboutpg > .faq-section .faq-answer {
  color: #000;
  font-family: var(--font-para);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.faq-inner.aboutpg > .faq-section .faq-answer > a {
  color: #000;
  text-decoration: none;
}

/* ABOUT US PAGE END */

/* Digital branding page start */

.hero-inner.dgbranding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  gap: 30px;
}

.hero-inner.dgbranding h1 {
  font-family: var(--font-heading);
  font-size: 71px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.6px;
  color: #ffffff;
  text-align: left;
  width: 60%;
}

.hero-inner.dgbranding > .des-btn {
  width: 52%;
}

.hero-inner.dgbranding > .des-btn p {
  text-align: left;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding-bottom: 10px;
}

.single-img-sec.dgbranding {
  flex-direction: row-reverse;
  padding-bottom: 50px;
}

.single-img-sec.dgbranding > .single-img-left {
  width: 40%;
}

.single-img-sec.dgbranding > .single-img-left > img {
  width: 100%;
}

.single-img-sec.dgbranding > .single-img-right {
  width: 52%;
}

.check-des.dgbranding p:first-of-type {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}

.check-des.dgbranding p:last-of-type {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 15px;
}

.check-des.dgbranding h3 {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.6px;
  padding: 15px 0;
  line-height: 35px;
}

.check-des.dgbranding h2 {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.6px;
  padding: 15px 0;
  line-height: 35px;
}

.checkbox-sec > i {
  color: var(--theme-lightgreen);
  font-size: 17px;
  font-weight: bolder;
}

.checkbox-sec.dgbranding {
  column-gap: 8px;
}

.checkbox-sec.dgbranding > .check-des p {
  font-size: 17px;
  font-weight: 700;
}

.develop-brand {
  background-color: var(--theme-darkgreen);
  padding-bottom: 50px;
}

.single-img-right.dv-brand h3 {
  color: white;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  padding-bottom: 25px;
}

.single-img-right.dv-brand h2 {
  color: white;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  padding-bottom: 25px;
}

.single-img-right.dv-brand p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding-bottom: 10px;
}

.brand-bgbranding {
  background-color: var(--theme-darkgreen);
  padding: 0px 0 50px 0;
}

.brand-bgbranding .values-slider {
  margin: 0;
}

.val-slide.dgbranding h3 {
  font-size: 40px;
  font-weight: 800;
  line-height: 36px;
}

.val-slide.dgbranding p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 10px;
  padding-bottom: 15px;
}

.val-slide.dgbranding a {
  font-family: var(--font-para);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: var(--white);
}

.val-slide.dgbranding a:hover {
  color: var(--theme-lightgreen);
}

.val-slide.dgbranding > a > i {
  margin-left: 8px;
}

.clientsay.dgbranding {
  background-color: var(--white);
  padding-bottom: 50px;
}

.say-inner.dgbranding {
  text-align: center;
}

.say-inner.dgbranding h3 {
  color: var(--theme-darkgreen);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  width: 740px;
  margin: 0 auto;
}

.say-inner.dgbranding h2 {
  color: var(--theme-darkgreen);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  width: 740px;
  margin: 0 auto;
}

.say-inner.dgbranding p {
  color: #000;
}

.btn-primary.dgbranding {
  margin: 70px 0 0 0;
}

.dgbrandign-ques {
  background-color: var(--theme-darkgreen);
}

.single-img-sec.dgques {
  align-items: start;
}

.single-img-sec.dgques .single-img-left {
  width: 42%;
}

.single-img-sec.dgques .single-img-left img {
  width: 100%;
}

.single-img-sec.dgques .single-img-right {
  width: 58%;
}

.single-img-sec.dgques .single-img-right > h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 45px;
  color: #ffffff;
}

.single-img-sec.dgques .single-img-right > h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 45px;
  color: #ffffff;
}

.faq-section.dgques .faq-item {
  border-color: var(--theme-lightgreen);
}

.faq-section.dgques h3 {
  padding-left: 25px;
  color: var(--theme-lightgreen);
}

.faq-section.dgques .faq-question::after {
  left: 0px;
}

.faq-answer {
  font-family: var(--font-para);
}

.faq.aboutpg.dgbranding {
  padding-bottom: 50px;
}

/* Digital branding page end */

/* Digital marketing page start */

.outsource {
  padding: 50px 0;
}

.source-inner > .serve-head {
  width: 830px;
  margin: 0 auto;
}

.dgmarketing-services {
  padding-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.dgmark-service {
  width: 30%;
  min-height: 335px;
  border: 2px solid var(--theme-lightgreen);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px
    rgba(159.37596982339096, 223.99627075195312, 129.86914813885952, 0.5);
  padding: 30px;
}

.img-mkname {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 20px;
}

.img-mkname > img {
  width: auto;
}

.img-mkname > h4 {
  font-size: 23px;
  font-weight: 400;
  line-height: 25px;
}

.dgmark-service > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #171717;
}

.outsource.tools {
  background-color: #e6e6e6;
}

.dgmarketing-services.tools > .dgmark-service {
  min-height: 235px;
}

.dgmarketing-services.tools > .dgmark-service > .img-mkname > img {
  width: 52px;
}

.dgmarketing-services.tools > .dgmark-service > .img-mkname {
  margin-bottom: 12px;
}

.bussiness {
  background-color: var(--theme-darkgreen);
  padding: 50px 0;
  color: var(--white);
}

.bussiness > .container .serve-head {
  width: 100%;
}

.bussiness > .container .serve-head > h3 {
  font-size: 38px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 1px;
  color: var(--white);
}

.bussiness > .container .serve-head > h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 1px;
  color: var(--white);
}



.bussiness > .container .serve-head > p {
  width: 100%;
}

.single-img-sec.bussiness {
  column-gap: 20px;
}

.single-img-sec.bussiness > .single-img-left {
  width: 50%;
}

.single-img-sec.bussiness > .single-img-left > img {
  width: 550px;
}

.single-img-sec.bussiness > .single-img-right {
  width: 50%;
  padding: 0;
}

.single-img-right.bussiness .checkbox-sec .check-des h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 7px;
}

.single-img-right.bussiness .checkbox-sec .check-des p {
  color: var(--white);
}

.single-img-right.bussiness .checkbox-sec {
  align-items: center;
  column-gap: 30px;
  padding-bottom: 25px;
}
.single-img-right.bussiness > .checkbox-sec figure > img {
  width: 54px;
}

/* Digital marketing page end */

/* Social Media Marketing page start */

.media-presence {
  padding: 60px 0;
}

.presence-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  column-gap: 155px;
}

.presence-inner > .left {
  width: 50%;
}

.presence-inner > .left h3 {
  font-size: 54px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 57px;
  color: var(--theme-darkgreen);
  padding-bottom: 20px;
}

.presence-inner > .left h2 {
  font-size: 54px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 57px;
  color: var(--theme-darkgreen);
  padding-bottom: 20px;
}

.btn-primary.comp {
  background-color: transparent;
  color: var(--theme-lightgreen);
  padding: 15px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.btn-primary.comp > i {
  font-size: 18px;
}

.presence-inner > .right {
  width: 50%;
}

.presence-inner > .right > p {
  text-align: left;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #000000;
}

.outsource.smmarkpg {
  background-color: var(--theme-darkgreen);
  color: var(--white) !important;
}

.outsource.smmarkpg h3 {
  color: var(--white) !important;
}

.outsource.smmarkpg h2 {
  color: var(--white) !important;
}

.outsource.smmarkpg p {
  color: var(--white) !important;
}

.outsource.smmarkpg .serve-head {
  width: 100%;
}

.outsource.smmarkpg .serve-head p {
  width: 83%;
}

.dgmark-service.smmarkpg {
  padding: 25px;
  width: 31.6%;
  min-height: 450px;
  position: relative;
}
.dgmark-service.smmarkpg > p {
  color: var(--white);
  padding-bottom: 15px;
}

.dgmark-service.smmarkpg .comp-btn {
  position: absolute;
  bottom: 25px;
}

.dgmark-service.smmarkpg .comp-btn > a {
  font-size: 12px;
  padding-bottom: 0;
}

.dgmark-service.smmarkpg .comp-btn > a i {
  font-size: 12px;
}

.check-des.smmarkpg h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 31px;
  padding-bottom: 10px;
}

.check-des.smmarkpg p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.solution {
  background-color: var(--theme-darkgreen);
  padding: 60px 0;
}

.solution-inner .serve-head h3 {
  color: var(--white);
}

.solution-inner .serve-head h2 {
  color: var(--white);
}

.solutions-main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 50px;
}

.solution-box {
  width: 265px;
}

.solution-box h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: var(--theme-lightgreen);
  padding: 15px 0;
}

.solution-box p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.2px;
  color: #ffffff;
}

.solution-box > a {
  font-size: 12px;
  color: var(--white);
}

.single-img-sec.behind.smmarkpg {
  background-color: var(--white);
  flex-direction: row-reverse;
}

.single-img-sec.behind.smmarkpg .single-img-right {
  background-color: var(--white);
  padding-left: 150px;
}

.single-img-sec.behind.smmarkpg .single-img-right h3 {
  font-size: 38px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 36px;
  color: var(--theme-darkgreen);
}

.single-img-sec.behind.smmarkpg .single-img-right p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
}

.single-img-sec.behind.smmarkpg .single-img-right a {
  font-weight: 500;
  font-family: var(--font-heading);
}

.whychoose.smmarkpg {
  background-color: var(--theme-darkgreen);
  padding: 40px 0;
}

.single-img-sec.smmarkpg {
  padding: 0;
}

.single-img-sec.smmarkpg .single-img-left {
  width: 55%;
}

.single-img-sec.smmarkpg .single-img-left img {
  max-width: 100%;
  margin-bottom: -5px;
}

.single-img-sec.smmarkpg .single-img-right {
  padding-right: 20px;
}

.single-img-sec.smmarkpg .single-img-right > h3 {
  font-size: 38px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 36px;
  color: var(--white);
}

.single-img-sec.smmarkpg .single-img-right > h2 {
  font-size: 38px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 36px;
  color: var(--white);
}

.single-img-sec.smmarkpg .single-img-right p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
  padding-bottom: 25px;
  width: 80%;
}

.single-img-sec.smmarkpg .single-img-right .checkbox-sec.smmarkpg p {
  padding-bottom: 0;
  width: 100%;
}

.checkbox-sec.smmarkpg figure i {
  color: var(--theme-lightgreen);
  margin-top: 7px;
}

.checkbox-sec.smmarkpg h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: var(--theme-lightgreen);
  letter-spacing: 1.2px;
}

.dgbrandign-ques.smmarkpg {
  background-color: var(--white);
  padding: 60px 0;
}

.single-img-sec.dgques.smmarkpg {
  flex-direction: row-reverse;
  align-items: center;
}

.single-img-sec.dgques.smmarkpg .single-img-right > h3 {
  color: var(--theme-darkgreen);
  font-size: 43px;
  font-weight: 900;
  line-height: 42px;
}

.single-img-sec.dgques.smmarkpg .single-img-right > h2 {
  color: var(--theme-darkgreen);
  font-size: 43px;
  font-weight: 900;
  line-height: 42px;
}

.single-img-sec.dgques.smmarkpg .single-img-right .faq-section.dgques {
  background-color: var(--white);
  box-shadow: none;
}

.faq-section.dgques.smmarkpg .faq-item {
  border-color: var(--theme-darkgreen);
}

.faq-section.dgques.smmarkpg h3 {
  font-weight: 400;
  font-size: 17px;
  color: var(--theme-darkgreen);
  padding-left: 0px;
}

.faq-section.dgques.smmarkpg .faq-question::after {
  color: var(--theme-darkgreen);
  right: 10px;
  left: auto;
}

.faq-section.dgques.smmarkpg .faq-answer {
  color: var(--theme-darkgreen);
}

/* Social Media Marketing page end */

/* UI/UX Design page page start */

.check-line {
  display: flex;
  justify-content: start;
  align-items: baseline;
  column-gap: 10px;
}

.check-line > svg {
  width: 16px;
  fill: var(--theme-lightgreen);
}

.check-line > p {
  padding-bottom: 5px !important;
}

.develop-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}

.dev-main {
  width: 32%;
  border: 2px solid #e7e7e7;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  min-height: 180px;
}

.dev-main:hover {
  border: 5px solid var(--theme-lightgreen);
}

.dev-main h4 {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--theme-lightgreen);
  padding-bottom: 5px;
}

.dev-main p {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.core-elements {
  padding: 60px 0;
}

.elements-inner {
  text-align: center;
}

.elements-inner .btn-primary {
  margin: 30px auto 0 auto;
}

.elements-inner > .serve-head h3 {
  width: 84%;
  padding-bottom: 20px;
  margin: 0 auto;
}

.elements-inner > .serve-head p {
  color: var(--theme-darkgreen);
}

.elements {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  row-gap: 35px;
}

.ele-name {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ele-name figure img {
  width: auto;
}

.elements > a {
  margin: 0 auto;
}

.corporate.uiux-result {
  background-color: var(--theme-darkgreen);
}

.check-des.uiux-result h3 {
  color: var(--white);
}

.check-des.uiux-result h2 {
  color: var(--white);
}

.check-des.uiux-result p:first-of-type {
  font-family: var(--font-para);
  padding-bottom: 20px;
  font-size: 16px;
}

.check-des.uiux-result p {
  color: var(--white);
  font-size: 16px;
}

.choose-experts {
  padding: 60px 0 0 0;
}

.choose-experts .serve-head h3 {
  padding-bottom: 20px;
}

.choose-experts .serve-head p {
  color: var(--theme-darkgreen);
}

.dgbrandign-ques.uiux-faq {
  margin-left: 199px;
}

.faq.dark {
  background-color: var(--theme-darkgreen);
  border-bottom: 1px solid var(--theme-lightgreen);
}

.faq.dark .serve-head h3 {
  color: var(--white);
}

.faq.dark .serve-head h2 {
  color: var(--white);
}

.faq.dark .serve-head p {
  color: var(--white);
}

.faq-section.dark .faq-question {
  color: var(--white) !important;
}

.faq-section.dark .faq-answer {
  color: var(--white) !important;
}

/* UI/UX Design  page end */

/* ppc Marketing page start */

.hero-inner.dgbranding > .des-btn p {
  padding-bottom: 30px;
}

.serve-inner.uiux .serve-head p {
  width: 615px;
}

.service.uiux {
  border: 0;
}

.service.uiux > figure {
  background-color: transparent;
  margin-bottom: 20px;
}

.service.uiux h4 {
  font-weight: 400;
  line-height: 22px;
  min-height: 52px;
  font-size: 20px;
}

.workflow {
  background-color: var(--theme-darkgreen);
  padding: 50px 0;
  color: var(--white);
}

.flow-inner > .serve-head h3 {
  color: var(--white);
}

.flow-inner > .serve-head h2 {
  color: var(--white);
}


.tabs {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 50px;
}

.tab-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--theme-lightgreen);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  color: var(--theme-lightgreen);
  transition: 0.3s;
  font-family: var(--font-heading);
  opacity: 0.3;
}

.tab-btn:hover {
  opacity: 0.5;
  background: rgba(129, 229, 65, 0.2);
  transform: scale(0.95);
}

.tab-btn.active {
  background: var(--theme-lightgreen);
  color: var(--theme-darkgreen);
  opacity: 1;
}

.tab-content {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--theme-lightgreen);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.tab-content.active {
  display: block;
  background: transparent;
  border-radius: 25px;
  width: 77%;
  margin: 0 auto;
  padding: 40px;
  margin-top: 45px;
  text-align: center;
}

.tab-content > h3 {
  font-weight: 400;
  font-size: 38px;
}

.single-img-sec.ppc > .single-img-left img {
  width: 80%;
}

/* ppc Marketing page end */

/* Conversion Rate Optimization Page Start */

.service.uiux.cro {
  border-style: solid;
  border-width: 3px 1px;
  border-color: var(--theme-lightgreen);
  min-height: 400px;
  border-radius: 0px;
}

.img-mkname.crotool > img {
  width: 60px;
}

.single-img-sec.smmarkpg.cro {
  flex-direction: row-reverse;
}

.checkbox-sec > figure > svg {
  width: 20px;
  fill: var(--theme-lightgreen);
  margin-top: 5px;
}

/* Conversion Rate Optimization Page end */

/* SEO Page Start */

.hero-inner.dgbranding.seo h1 {
  padding-right: 50px;
}

.single-img-sec.aboutpg.seo {
  flex-direction: initial;
  column-gap: 35px;
}

.rowtabs {
  display: flex;
  justify-content: start;
  align-items: center;
}

.rowtabs > .tabs {
  flex-direction: column;
  gap: 25px;
}

.rowtabs > .tab-content {
  text-align: left;
}

.rowtabs > .tab-content h3 {
  text-align: left;
}

.rowtabs > .tabs .tab-btn.active {
  background-color: transparent;
}

.rowtabs > .tabs .tab-btn.active svg path:first-of-type {
  fill: transparent;
}

.rowtabs > .tab-content p {
  padding-bottom: 20px;
}

.rowtabs > .tab-content p.grn {
  color: var(--theme-lightgreen);
}

.rowtabs > .tab-content span {
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 10px;
  font-family: var(--font-para);
  padding-bottom: 5px;
}

.rowtabs > .tab-content span:last-of-type {
  padding-bottom: 25px;
}

.rowtabs > .tab-content span svg {
  width: 18px;
  fill: var(--theme-lightgreen);
}

.seo-strategy {
  padding: 60px 0;
}

.seo-stra-inner > .hero-inner h1 {
  color: var(--theme-darkgreen);
}

.seo-stra-inner > .hero-inner .des-btn p {
  color: var(--theme-darkgreen);
  padding: 0;
}

.outsource.seo-serv {
  background-color: var(--theme-darkgreen);
}

.outsource.seo-serv div img {
  width: 52px;
}

.serve-head h4 {
  font-family: var(--font-para);
  font-size: 28px;
  color: var(--theme-lightgreen);
  margin-bottom: 30px;
}

.outsource.seo-serv .serve-head h3 {
  color: var(--white);
}

.outsource.seo-serv .serve-head h2 {
  color: var(--white);
}

.outsource.seo-serv .serve-head p {
  color: var(--white);
}

.dgmark-service.seo-serv {
  min-height: 290px;
  border-radius: 0px 40px;
}

.dgmark-service.seo-serv h4 {
  color: var(--white);
}

.dgmark-service.seo-serv p {
  color: var(--white);
}

.dgmark-service.seo-serv p > a {
  color: var(--theme-lightgreen);
  text-decoration: none;
}

.dgmark-service.seo-serv .img-mkname {
  column-gap: 15px;
}

.seo-result {
  padding: 60px 0;
}

.result-inner .serve-head p {
  color: var(--theme-darkgreen);
}

.project {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.pro-con {
  width: 48%;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.result-des {
  background-color: var(--theme-darkgreen);
  width: 100%;
  color: var(--white);
  padding: 20px 37px;
  margin-top: -10px;
  border-bottom: 25px;
  border-radius: 0 0 25px 25px;
}

.result-des h4 {
  font-size: 35px;
  font-family: var(--font-para);
  line-height: 42px;
  font-weight: 500;
}

.result-des .web {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 8px;
  margin-top: 15px;
}

.result-des .web a {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-para);
}

.result-des .web svg {
  width: 20px;
  fill: var(--theme-lightgreen);
}

.industry-columns {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.client-chat {
  text-align: center;
  width: fit-content;
}

.client-chat h5:first-of-type {
  color: var(--theme-lightgreen);
  font-size: 18px;
  letter-spacing: 1.5px;
  font-weight: 400;
  font-family: var(--font-heading);
}

.client-chat h5 {
  color: var(--white);
  padding-bottom: 5px;
  font-family: var(--font-para);
  font-size: 18px;
}

.source-inner > .serve-head p {
  color: var(--theme-darkgreen);
}

.dgmarketing-services.seo-tool > .dgmark-service {
  min-height: 315px;
}

.single-img-sec.seochosse h3 {
  color: var(--theme-darkgreen);
}

.single-img-sec.seochosse .single-img-right > h3 {
  color: var(--theme-darkgreen);
}

.single-img-sec.seochosse .single-img-right > h2 {
  color: var(--theme-darkgreen);
  padding-bottom: 20px;
}

.single-img-sec.seochosse .single-img-right p {
  color: var(--theme-darkgreen);
}

.single-img-sec.seo-buss {
  padding: 0;
  align-items: end;
}

.single-img-sec.seo-buss > .single-img-left {
  position: relative;
}

.single-img-sec.seo-buss > .single-img-left > img {
  z-index: 2;
  position: relative;
  margin-bottom: -4px;
}

.single-img-sec.bussiness.seo-buss > .single-img-left::before {
  content: "";
  position: absolute;
  top: calc(50% - 160px);
  left: calc(50% - 160px);
  width: 320px;
  height: 320px;
  background-color: var(--theme-lightgreen);
  pointer-events: none;
  border-radius: 100%;
  transform: none;
}

.single-img-right.bussiness.seo-buss > h3 {
  font-size: 38px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.single-img-right.bussiness.seo-buss > h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.call-us {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 20px;
  font-family: var(--font-heading);
  margin: 25px 0 35px 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.call-us span {
  color: var(--theme-lightgreen);
}

.call-us > svg {
  width: 20px;
  fill: var(--theme-lightgreen);
}

.call-us > a {
  color: var(--white);
  text-decoration: none;
}

/* SEO Page End */

/* Web Development Page Start */

.dgmarketing-services.web-dev > .dgmark-service {
  min-height: 300px;
}

.values-slider.web-dev .val-slide {
  border: 1px solid var(--theme-lightgreen);
  border-radius: 25px;
  padding: 20px;
  margin: 0 16px;
  min-height: 230px;
}

.values-slider.web-dev .val-slide h3 {
  font-weight: 500;
}

.single-img-right.web-dev .checkbox-sec {
  min-height: 120px;
}

/* Web Development Page End */

/* Case Studies page start */

.hero-inner.case-studies {
  flex-direction: column;
  align-items: start;
}

.hero-inner.case-studies > span {
  font-family: var(--font-para);
  color: var(--theme-lightgreen);
  font-size: 20px;
}

.hero-inner.case-studies > span > a {
  color: var(--theme-lightgreen);
  text-decoration: none;
}

.hero-inner.case-studies h1 {
  padding: 25px 0;
}

.hero-client {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}

.all-category {
  padding: 50px 0;
}

.dd-main {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}

.dd-cat {
  width: 40%;
}

.dd {
  font-family: var(--font-para);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  width: 100%;
  margin: 0px;
}

.dd-btn {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
}

.dd-btn i {
  margin-left: 15px;
  border: 1px solid #000;
  padding: 2px 2px 1px 2px;
  border-radius: 100%;
}

.dd.open .dd-btn i {
  border: 1px solid #fff;
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding-top: 5px;
  display: none;
  z-index: 999;
}

.dd-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: background 0.3s, color 0.3s;
}

.dd-menu a:hover {
  background: #81e541;
  color: #fff;
}

.dd.open .dd-btn {
  background: #81e541;
  color: #fff;
}

.dd-menu a:last-child {
  border-bottom: none;
}

.category-inner .project {
  flex-wrap: wrap;
  row-gap: 0px;
}

.category-inner .project .pro-con:nth-child(even) {
  margin-top: 120px;
}

.category-inner .project .pro-con:nth-child(odd) {
  margin-top: -20px;
}

.category-inner .project .pro-con .industry-columns {
  justify-content: space-between;
  gap: 12px;
}

/* Case Studies page end */

/* B2B page start */

.single-img-sec.b2b {
  flex-direction: row-reverse;
  align-items: center;
}

/* B2B page end */

/* Shopify Page Start */

.shopify-store {
  padding: 50px 0;
}

.dropshipping-main {
  padding-top: 20px;
}

.dropshipping {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--theme-lightgreen);
}

.store-img-name {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 50%;
  gap: 15px;
}

.store-img-name h3 {
  font-size: 32px;
  text-align: left;
  padding-right: 50px;
  color: var(--theme-darkgreen);
}

.dropshipping > p {
  width: 50%;
  text-align: left;
}

/* Shopify Page end */

/* Content Marketing Page start */

.img-mkname.contentpg > img {
  width: 65px;
}

.serve.dark {
  background-color: var(--theme-darkgreen);
  color: white !important;
}

.serve.dark h3 {
  color: white;
}

.serve.dark h2 {
  color: white;
}

.serve.dark h4 {
  font-size: 26px;
}

.serve.dark p {
  color: white;
}

.serve.dark .service.uiux.cro {
  min-height: 240px;
}

/* Content Marketing Page end */

/* White Label Marketing Agency Start */

.dgmarketing-services.white-label > .dgmark-service {
  min-height: 280px;
}

.tabs.white-label {
  gap: 25px;
  align-items: center;
}

.tabs.white-label .tab-btn {
  width: 85px;
  height: 85px;
  font-size: 30px;
  background-color: var(--theme-lightgreen);
  color: var(--theme-darkgreen);
  opacity: 1;
}

.tabs.white-label .tab-btn.active {
  background: transparent;
  color: var(--white);
}

.flow-inner.white-label .tab-content {
  width: 85%;
}

.flow-inner.white-label .tab-content h3 {
  width: 70%;
  margin: 0 auto;
  color: var(--theme-lightgreen);
}

.flow-inner.white-label .tab-content p {
  width: 70%;
  margin: 0 auto;
}

.single-img-sec.white-label {
  flex-direction: row-reverse;
}

/* White Label Marketing Agency End */

/* Ecommerce page Start */

.dgmark-service.ecommerce > .img-mkname > img {
  width: 50px;
}

.dgmark-service.ecommerce {
  min-height: 290px;
}

.single-img-right.dgbranding > p {
  color: var(--white);
  padding-top: 10px;
}

/* Ecommerce page end */

/* International Seo Service page start */

.checkbox-sec.international {
  align-items: start !important;
}

.checkbox-sec.international > svg {
  fill: var(--theme-lightgreen);
  width: 36px;
}

/* International Seo Service page end */

/* Wordpress Seo page start */

.dgmarketing-services.wptool .dgmark-service {
  min-height: 310px !important;
}

.dgmarketing-services.wptool > .dgmark-service .img-mkname > img {
  width: 45px;
}

.faq-section.wpfaq .faq-item.active > h3 {
  color: var(--theme-lightgreen);
}

.dgmarketing-services.servpg .dgmark-service {
  min-height: 240px;
}

/* Wordpress Seo page end */

/* Services page start */
.outsource.tools span {
  font-family: var(--font-para);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  display: block;
}

.dgmarketing-services.serve .dgmark-service {
  min-height: 265px;
  text-align: left;
}

.good-service {
  padding: 60px 0;
}

.good-or-not {
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 25px;
  margin-top: 10px;
}

.its-great {
  width: 555px;
  background-color: #eff2f8;
  border-radius: 25px;
  padding: 30px;
  color: #000;
  min-height: 555px;
}

.its-great.not {
  background-color: var(--theme-darkgreen);
  color: var(--white);
}

.its-great figure {
  width: 75px;
  height: 75px;
  background-color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.its-great figure img {
  width: 75px;
}

.its-great h4 {
  font-family: var(--font-para);
  font-size: 31px;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 40px;
}

.cir-check {
  display: flex;
  justify-content: start;
  align-items: start;
  column-gap: 15px;
  padding-bottom: 12px;
}

.cir-check > svg {
  width: 20px;
  fill: var(--theme-lightgreen);
  padding-top: 3px;
}

.cir-check > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.its-great.not figure img {
  width: 90px;
}

/* Services page end */

/* Contact Us page start */

.contact-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.contain {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}

.subtitle {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--theme-lightgreen);
}

.title {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -0.6px;
  color: var(--theme-darkgreen);
  line-height: 90px;
}

.desc {
  margin-bottom: 25px;
  line-height: 1.6;
  font-family: var(--font-para);
  font-size: 17px;
  font-weight: 600;
  color: #000000;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 18px;
  font-size: 16px;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 600;
}

.contact-info li strong {
  display: block;
}

.contact-info .icon {
  margin-right: 8px;
  color: var(--theme-lightgreen);
  font-weight: bold;
}

.contact-info .icon.location {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.contact-info .icon.location p {
  color: #000;
  display: flex;
}

.contact-info .icon > svg {
  width: 18px;
  fill: var(--theme-lightgreen);
}

.contact-info .icon.location p i {
  font-size: 18px;
  color: var(--theme-lightgreen);
  padding-right: 8px;
}

.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-para);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
}

.btn-send {
  background: var(--theme-lightgreen);
  border: none;
  color: var(--white);
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.5s;
  width: 222px;
}

.btn-send:hover {
  animation: zoomPulse 0.5s infinite alternate;
  background-color: var(--white);
  border: 3px solid var(--theme-lightgreen);
  color: #000;
}

@keyframes zoomPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Contact Us page end */

/* One Body */

.hero-inner > span {
  color: var(--theme-lightgreen);
  font-family: var(--font-para);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 25px;
}

.hero-inner.dgbranding.onbody {
  flex-direction: column;
  align-items: start;
  
}

.hero-inner.dgbranding.onbody h1 {
  width: 100%;
  text-transform: capitalize;
}

.overview{
    background-image: url(../images/growbg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.overview-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.over-left{
  width: 50%;
}

.over-left h3{
  font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.over-left h2{
  font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}


.over-left p{
      font-family: var(--font-para);
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

.over-right{
  width: 50%;
}

.over-right img{
  width: 100%;
}

.single-img-right.onbody h2{
      font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-img-right.onbody >p{
    font-size: 16px;
  font-family: var(--font-para);
  font-weight: 300;
  line-height: 20px;
}

.single-img-sec.onbody{
  padding: 0;
}
.checkbox-sec.onbody{
  margin-top: 20px;
  flex-direction: column;
  padding: 0;
}

.checkbox-sec .check-desc{
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
}

.checkbox-sec .check-desc > i{
  color: var(--theme-lightgreen);
  font-size: 18px;
  margin-top: 5px;
}

.checkbox-sec .check-desc p{
  font-size: 16px;
  font-family: var(--font-para);
  font-weight: 400;
  line-height: 20px;
}

.whychoose.dark{
  background-color: var(--theme-darkgreen) !important;
  color: var(--white) !important;
  padding: 0;
}

.single-img-sec.aboutpg.solution-provide.seo{
  flex-direction: row-reverse !important;
  padding: 50px 0;
}

.single-img-right.onbody > p strong a{
  color: #c36;
  text-decoration-color: var(--white);
}

.checkbox-sec.onbody.dark .check-desc p{
  color: var(--white) !important;
}

.checkbox-sec.onbody .check-desc p{
  margin-bottom: 10px !important;
}

/* Terms Of Use */

.hero.terms-of-use{
  padding: 65px 0;
}


.hero-inner.dgbranding.onbody.terms-of-use h1{
  text-align: center;
}

.terms-content{
  padding: 50px 0;
}

.head-content h2{
  font-size: 45px;
  font-weight: bold;
  font-family: var(--font-heading);
  color: #7A7A7A;
  margin-bottom: 15px;
  margin-top: 8px;
}

.head-content h4{
  font-size: 38px;
  font-weight: 500;
  font-family: var(--font-para) !important;
  color: #7A7A7A;
  margin-bottom: 15px;
  margin-top: 8px;
}

.head-content p{
  color: #7A7A7A;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Privacy Policy */

.privacy-policy{
  color: #7A7A7A;
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 40px;
}

.privacy-policy li{
  list-style: initial;
}

/* Physiotherapy  */

.healthcare{
  padding: 60px 0;
}

.healthcare-services{
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.healthcare-services >div{
  border-color: var(--therapy-green);
  box-shadow: none;
  padding: 20px;
}

.healthcare-services >div > div{
  flex-direction: column;
  align-items: start;
}

.healthcare-services >div > div > img{
  padding-bottom: 25px;
}

.healthcare-services >div > div > h4{
  color: var(--therapy-green);
}

.single-img-sec.smmarkpg.cro.seochosse.healthcare-pg .single-img-right{
  width: 45%;
}

.single-img-sec.smmarkpg.cro.seochosse.healthcare-pg .single-img-right> p{
  width: 100%;
  padding-top: 15px;
}

.single-img-right.healthcare-pg > div >figure img{
  margin: 0;
}

/* Physiotherapy */

.healthcare-services.physio  .dgmark-service{
  min-height: 420px;
  margin: 0px 20px;
  box-shadow: none;
    border-color: var(--therapy-green);
}

.healthcare-services.physio  .dgmark-service > div{
  flex-direction: column;
    align-items: start;
}

.healthcare-services.physio  .dgmark-service > div img{
  padding-bottom: 25px;
}

.healthcare-services.physio .slick-prev , .healthcare-services.physio .slick-next{
  top: 50%;
}

.healthcare-services.physio .slick-next{
  right: -25px;
}

.dis-right > span{
  font-family: var(--font-para);
  font-size: 16px;
  font-weight: 400;
  color: #000;
}


/*  */


.practice-faciliy{
  padding: 50px 0;
}

.facilities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: white;
  box-shadow: none;
  border-radius: 15px;
  padding: 20px;
}

aside {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
  width: 50%;
}

aside::-webkit-scrollbar {
  width: 6px;
}
aside::-webkit-scrollbar-thumb {
  background-color: #2ecc71;
  border-radius: 3px;
}
aside::-webkit-scrollbar-track {
  background: #f0f0f0;
}

article {
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-right: 25px;

}

article h3{
color: var(--theme-darkgreen);
  font-weight: 600;
  letter-spacing: 0.9px;
}

article.active {
  background: var(--theme-lightgreen);
  color: #000;
  font-weight: bold;
  padding: 30px;
}
article:hover {
  background: var(--theme-lightgreen);
}

.facilities-img {
  margin: 0;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facilities-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.tabs.white-label.physio .tab-btn.active{
  background-color: var(--theme-lightgreen);
  color: var(--theme-darkgreen);
  opacity: 1;
}

.tabs.white-label.physio .tab-btn{
  background: transparent ;
  color: var(--theme-lightgreen);
  opacity: 0.4;
}

.flow-inner.white-label.physio .tab-content h3{
  color: var(--white);
}

.healthcare-services.physio.google-ads .dgmark-service{
    min-height: 460px;
}


.slick-dots li {
  padding: 0 !important;
  background: black;
  top: -1px !important;
  border-radius: 0 !important;
    height: 12px;
      width: 12px;
      opacity: 0.50;
}

.slick-dots li:hover{
  opacity: 1;
}

.slick-dots li.slick-active {
  padding: 0;
  top: 0px;
  margin: 0;
      height: 12px;
      width: 12px;
      opacity: 1;
}

.slick-dots{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slick-dots li button::before{
  color: transparent;
}

.dark-heading  .service> h4{
    color: var(--theme-darkgreen);
}

.bussiness.seo-bussiness{
    padding-bottom: 0px;
}

.single-img-right.bussiness.seo-buss{
    padding-bottom: 15px;
}



