*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #112a0a;
  --secondary: #222222;
  --black: #5a5a5a;
  --bg: #f4f5fb;
  --border: #e2e2e2;
  --ternary: #5a5a5a;
  --color2: #f9d67b;
  --color3: #ace601;
  --linear: linear-gradient(90deg, #112a0a 0%, #163b0c 100%);
}

html {
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  /* overflow-x: hidden; */
  color: var(--secondary);
}

a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 62px;
  line-height: 1.2;
}

h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

h3 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}

h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ternary);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.text-underline {
  text-decoration: underline;
}
.light-white {
  color: var(--lightwhite);
}
.primary {
  color: var(--main-color);
}
.border {
  border: 1px solid var(--border);
}
.secondary {
  color: var(--secondary);
}
.ternary {
  color: var(--ternary);
}
.reg {
  font-weight: 400;
}

.med {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.color2 {
  color: var(--color2);
}
.color3 {
  color: var(--color3);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.fs-section {
  padding: 70px 0;
}
body.overflowY {
  overflow-y: hidden;
}

.btn-fill {
  position: relative;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  background: var(--color3);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 15px 26px;
  border-radius: 50px;
  border: 1px solid var(--color3);
  margin-left: 10px;
}

.btn-fill:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #fff;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.btn-fill:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-fill p {
  font-weight: 500;
  text-align: center;
  color: var(--main-color);
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.btn-fill svg {
  z-index: 20;
}

.btn-fill:hover p {
  color: var(--main-color);
  animation: scaleUp 0.5s ease-in-out;
}

/* <========== header section start ==========> */

/* <==========header section start===========> */
.header-wrapper {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  transition: all 0.35s ease;
}

.header.on-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
}

.brand {
  width: auto;
  max-width: 150px;
  height: 50px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.menu.is-active {
  right: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}

.menu-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  transition: all 0.3s linear;
  position: relative;
}
.menu-link p {
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary);
}
.dropdown-link p {
  font-size: 15px;
  color: var(--secondary);
}

.menu-link.active p {
  color: var(--secondary);
}
.menu-link:hover {
  color: var(--secondary);
}

.menu-item .menu-link > span {
  cursor: pointer;
}

.menu-item {
  position: relative;
}
header .dropdown {
  display: none;
}
header .menu-item.active > .dropdown {
  display: block;
}
header .dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .dropdown-link a {
  display: block;
  padding: 10px 20px;
  color: var(--secondary);
  text-decoration: none;
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: 1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  margin-left: auto;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--secondary);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.contact-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 30px 8px 8px;
  background-color: var(--bg1);
  box-shadow: -2px -3px 5px rgba(0, 168, 181, 0.6);
  border-radius: 50px;
  transition: all 0.5s linear;
  cursor: pointer;
}
.contact-num:hover {
  box-shadow: 2px 3px 5px rgba(0, 168, 181, 0.6);
}
.contact-num .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: var(--main-color);
}
.contact-num .icon-box svg {
  width: 26px;
  height: 26px;
}

/* <========== common things ==========> */
.common-icon-box.pink-icon-box {
  background-color: #fce7f6;
  color: #c11574;
}

.common-icon-box.green-icon-box {
  background-color: rgba(0, 188, 101, 0.1);
  color: rgba(0, 188, 101);
}

.common-icon-box.blue-icon-box {
  background-color: rgba(27, 117, 232, 0.1);
  color: rgba(27, 117, 232);
}

.common-icon-box.purple-icon-box {
  background-color: #ececff;
  color: #7a76ff;
}
.common-icon-box.orange-icon-box {
  background-color: #ffecec;
  color: #ff8585;
}

/* <========== home banner start ==========> */
.home-banner {
  position: relative;
  overflow: hidden;
  padding: 50px 44px 0;
}
.home-banner-inner {
  width: 100%;

  background: var(--linear);
  overflow: hidden;
  border-radius: 24px;
}
.home-banner-bgdesigns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-banner-bgdesign1 {
  width: 426px;
  height: 426px;
  position: absolute;
  left: -77px;
  top: -122px;
  border-radius: 100%;
  background: rgba(172, 230, 1, 0.05);
  filter: blur(30px);
}

.home-banner-bgdesign {
  position: absolute;
  border-radius: 30px;
  transform: rotate(-45deg);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.3)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.05;
}
.home-banner-bgdesign2 {
  width: 300px;
  height: 300px;
  left: -20px;
  bottom: -20px;
  border: 30px solid transparent; /* Set transparent border */
}
.home-banner-bgdesign3 {
  width: 200px;
  height: 200px;
  left: 330px;
  bottom: -100px;
  border: 20px solid transparent; /* Set transparent border */
}
.home-banner-bgdesign4 {
  width: 180px;
  height: 180px;
  left: 45%;
  top: -80px;
  transform: rotate(-45deg) translateX(-55%);
  border: 15px solid transparent; /* Set transparent border */
}
.home-banner-bgdesign5 {
  width: 300px;
  height: 300px;
  left: 63%;
  top: -170px;
  transform: rotate(-45deg) translateX(-37%);
  border: 30px solid transparent; /* Set transparent border */
}
.home-banner-bgdesign6 {
  width: 426px;
  height: 426px;
  position: absolute;
  right: -77px;
  top: 30%;
  transform: translateY(-70%);
  border-radius: 100%;
  background: rgba(172, 230, 1, 0.05);
  filter: blur(30px);
}
.home-banner-bgdesign7 {
  width: 148px;
  height: 148px;
  position: absolute;
  right: 30px;
  bottom: 0px;
  border-radius: 100%;
  overflow: hidden;
}
.home-banner-bgdesign7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stud-img-grp {
  display: flex;
  align-items: center;
  gap: 5px;
}
.stud-img-grp img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
}
.stud-img-grp img:not(:first-child) {
  margin-left: -15px;
}
.homebanner-slider1 .main-img-box {
  max-width: 100%;
  width: 75%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.homebanner-slider .widget-box {
  min-width: 220px;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.homebanner-slider .widget-box .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.homebanner-slider .widget-box .icon-box svg {
  width: 28px;
  height: 28px;
}
.homebanner-slider1 .widget-box .common-icon-box.pink-icon-box svg path {
  fill: #c11574;
}
.homebanner-slider1 .widget-box .common-icon-box.blue-icon-box svg path {
  fill: #1bb1e8;
}

.homebanner-slider .widget-box1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  animation: floatLeftRight 4s ease-in-out infinite;
}
.homebanner-slider .widget-box2 {
  position: absolute;
  top: 80px;
  right: 0px;
  animation: floatTopBottom 4.5s ease-in-out infinite;
}

.homebanner-swiper {
  padding: 100px 0;
}

.swiper-pagination {
  text-align: start;
}
.homebanner-slider2 .main-img-box {
  position: absolute;
  bottom: -110px;
  left: 65%;
  transform: translateX(-35%);
}
.homebanner-slider2 .main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homebanner-slider3 .main-img-box {
  padding: 10px;
  position: absolute;
  width: 907px;
  height: auto;
  right: -103px;
  bottom: -173px;
  background: #f9d67b;
  border-radius: 15px;
}
.homebanner-slider3 .main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homebanner-slider4 .main-img-box {
  width: auto;
  max-width: 80%;
  height: 500px;
  overflow: hidden;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.homebanner-slider4 .main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homebanner-slider4 .widget-box1 {
  left: -70px;
}

.homebanner-swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1320px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color3);
  opacity: 0.5;
  border-radius: 10px;
}
.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}

.swiper-slide h1 {
  opacity: 0;
}

.homebanner-swiper .swiper-slide h1,
.homebanner-swiper .swiper-slide .desc,
.homebanner-swiper .swiper-slide .bottom {
  opacity: 0; /* hidden by default */
}

.homebanner-swiper .swiper-slide-active h1.animate,
.homebanner-swiper .swiper-slide-active .desc.animate,
.homebanner-swiper .swiper-slide-active .bottom.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.homebanner-swiper .swiper-slide-active .desc.animate {
  animation-delay: 0.1s;
}

.homebanner-swiper .swiper-slide-active .bottom.animate {
  animation-delay: 0.3s;
}

/* partners top section start */

.swiper--top .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper--top .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.swiper--top .swiper-slide {
  text-align: center;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  color: #fff;
}
.swiper--top .img-box img {
  max-width: 200px;
  height: 70px;
  object-fit: contain;
  transition: all 0.3s linear;
}
/* .swiper--top .img-box:hover img {
  filter: grayscale(0%);
} */

.partners p {
  text-align: center;
  margin-bottom: 40px;
}

/* home features section start */
.heading {
  max-width: 540px;
  margin: 0 auto 50px;
  text-align: center;
}
.heading h2 {
  color: var(--main-color);
}

.home-features .feature-box {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 24px 30px;
  border-radius: 12px;
}
.home-features .feature-box p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-features .feature-box h4 {
  margin-bottom: 8px;
}

.home-features .common-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.home-features .feature-box .icon-box svg {
  width: 28px;
  height: 28px;
}
.home-features .feature-box .icon-box.pink-icon-box svg path {
  fill: #c11574;
}
.home-features .feature-box .icon-box.blue-icon-box svg path {
  fill: #1bb1e8;
}
.home-main-features {
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  padding: 40px;
  border-radius: 12px;
}
.features-widgets-wrapper {
  height: 210px;
  position: relative;
}
.features-widgets-box {
  width: 100%;
  height: fit-content;
  background-color: #5dc988;
  padding: 10px 40px;
  border-radius: 40px;
  text-align: end;
  transition: all 0.3s ease;
  z-index: 1;
}
.features-widgets-box p {
  font-weight: 600;
}
.features-widgets-box1 {
  position: absolute;
  left: -10px;
  top: 38%;
  transform: translateY(-68%) rotate(-12deg);
  background-color: #7a76ff;
  z-index: 2;
}
.features-widgets-box3 {
  position: absolute;
  left: 0;
  top: 62%;
  transform: translateY(-38%) rotate(12deg);
  background-color: #1b75e8;
  z-index: 0;
}

.features-specification-box {
  border: 0;
  padding: 10px;
  border-radius: 8px;
}
.features-specification-box .card-header {
  background-color: transparent;
  border: 0;
}
.features-specification-box .card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  border-bottom: 1px solid #eee;
}

.features-specification-box .card-row:last-child {
  border-bottom: 0;
}

.features-specification-box .card-row .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.features-specification-box .card-row .right {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: var(--color3);
  display: grid;
  place-items: center;
}
.features-specification-box .card-row .left svg {
  width: 18px;
  height: 18px;
}
.home-advantage {
  overflow: hidden;
}
.home-advantage::after {
  content: "";
  position: absolute;
  width: 426px;
  height: 426px;
  right: -172px;
  top: calc(50% - 426px / 2 + 0.1px);
  background: rgba(172, 230, 1, 0.1);
  filter: blur(30px);
  z-index: -1;
}
.home-advantage-inner {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  border-radius: 8px;
}
.home-advantage-inner .nav-pills {
  gap: 30px;
  padding: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.home-advantage-inner .nav-pills > * {
  flex-grow: 1;
}
.home-advantage-inner .nav-pills .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 15px;
}
.home-advantage-inner .nav-pills .nav-link.active {
  background-color: #fff;
}
.home-advantage-inner .nav-pills .nav-link h4 {
  color: var(--main-color);
}

.home-advantage-inner .common-icon-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.home-advantage-inner .common-icon-box svg {
  width: 28px;
  height: 28px;
}
.tab-content-inner {
  display: flex;
  align-items: center;
  gap: 20px 100px;
  padding: 40px;
}
.home-advantage-inner .tab-content-inner .left {
  width: 50%;
}
.home-advantage-inner .tab-content-inner .right {
  width: 50%;
  height: auto;
  overflow: hidden;
  max-width: 620px;
  border-radius: 8px;
}

.home-advantage-inner .tab-content-inner .right .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* <========== home-needs section start ==========> */
.home-needs {
  width: 100%;
  background: var(--linear);
  position: relative;
  padding-bottom: 100px;
}

.need-bgdesigns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.need-bgdesign {
  position: absolute;
  border-radius: 30px;
  transform: rotate(-45deg);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.3)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.05;
}
.need-bgdesign1 {
  width: 300px;
  height: 300px;
  left: 100px;
  bottom: -180px;
  border: 30px solid transparent;
}
.need-bgdesign2 {
  width: 180px;
  height: 180px;
  left: 10px;
  bottom: 100px;
  border: 3px solid transparent;
}
.need-bgdesign3 {
  width: 270px;
  height: 270px;
  right: 100px;
  top: -145px;
  border: 30px solid transparent;
}
.need-bgdesign4 {
  width: 270px;
  height: 270px;
  right: 100px;
  top: -145px;
  border: 30px solid transparent;
}
.need-bgdesign5 {
  width: 170px;
  height: 170px;
  left: 60%;
  top: -90px;
  border: 15px solid transparent;
}
.need-bgdesign6 {
  width: 148px;
  height: 148px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
}
.need-bgdesign6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-needs .needs-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 45px;
}
.home-needs .needs-box .icon-box {
  position: relative;
  padding: 4px 15px;
  width: fit-content;
  border-radius: 0;
  overflow: hidden;
}

.home-needs .needs-box .icon-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(172, 230, 1, 0.4);
  filter: blur(7.5px);
}

.home-needs .needs-box h4 {
  height: 60px;
  color: var(--main-color);
  margin-bottom: 8px;
}
.home-needs .needs-box .desc {
  margin-top: 24px;
}
.home-needs .needs-box .desc p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.needs-swiper .swiper-pagination {
  width: auto;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.needs-swiper .swiper-wrapper {
  margin-bottom: 40px;
}

.home-testimonials-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reviews-text-box {
  background-color: var(--bg);
  padding: 50px 30px 30px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s linear;
}
.reviews-text-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reviews-text-box .img-box {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  overflow: hidden;
}

.reviews-text-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonials .top {
  margin-bottom: 40px;
}

.reviews-text-box .icon-box {
  width: 45px;
  height: 45px;
  border-bottom-left-radius: 15px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.reviews-text-box .common-icon-box.green-icon-box svg path {
  fill: #00bc65;
}
.reviews-text-box .common-icon-box.purple-icon-box svg path {
  fill: #4500d0;
}
.reviews-text-box .common-icon-box.orange-icon-box svg path {
  fill: #f2a700;
}
.reviews-text-box .common-icon-box.blue-icon-box svg path {
  fill: #1b75e8;
}
.reviews-text-box {
  position: relative;
}
.reviews-text-box .icon-box svg {
  width: 28px;
  height: 28px;
}
.reviews-text-box .name {
  font-size: 16px;
  font-weight: 500;
}
.reviews-video-box {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
}
.reviews-video-box .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.reviews-video-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.reviews-video-box .desc-box {
  width: 100%;
  height: auto;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
  position: relative;
  padding: 24px;
}

/* cot section start */
.cot {
  padding-left: 44px;
  padding-right: 44px;
}
.cot-inner {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--linear);
  padding-top: 40px;
}
.cot-inner .container {
  z-index: 2;
  position: relative;
}
.cot .left {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.cot .right {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.cot .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.cot-bgdesigns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cot-bgdesign {
  position: absolute;
  border-radius: 30px;
  transform: rotate(-45deg);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.3)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.05;
}

.cot-bgdesign2 {
  width: 250px;
  height: 250px;
  left: 80px;
  bottom: -130px;
  border: 30px solid transparent;
}

.cot-bgdesign1 {
  width: 426px;
  height: 426px;
  position: absolute;
  left: -77px;
  top: -122px;
  border-radius: 100%;
  background: rgba(172, 230, 1, 0.05);
  filter: blur(30px);
}

.cot-bgdesign3 {
  width: 180px;
  height: 180px;
  left: 100px;
  top: 0px;
  border: 3px solid transparent;
}

.cot-bgdesign4 {
  width: 260px;
  height: 260px;
  right: -15px;
  top: -100px;
  border: 30px solid transparent;
  transform: rotate(-20deg);
}
.cot-bgdesign5,
.cot-bgdesign6,
.cot-bgdesign7,
.cot-bgdesign8,
.cot-bgdesign9 {
  width: 2px;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.05)
  );
  position: absolute;
  top: 80px;
  left: 10%;
  border-radius: 5px;
  background-size: 100% 200%; /* double size for movement */
  animation: gradientMove 2.5s forwards infinite;
}
.cot-bgdesign6 {
  top: unset;
  bottom: 25px;
  left: 13%;
}
.cot-bgdesign7 {
  top: unset;
  bottom: 60px;
  left: 40%;
  display: none;
}

.cot-bgdesign8 {
  top: unset;
  bottom: 60px;
  right: 10%;
  left: unset;
}
.cot-bgdesign9 {
  top: 30px;
  right: 5%;
  left: unset;
}
.cot-inner .container {
  z-index: 2;
}

/* footer section start */
.footer1 {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}
.footer1::before {
  content: "";
  position: absolute;
  width: 426px;
  height: 426px;
  right: -130px;
  top: -120.9px;

  background: rgba(249, 214, 123, 0.15);
  filter: blur(40px);
}
.footer1::after {
  content: "";
  position: absolute;
  width: 426px;
  height: 426px;
  left: -147px;
  bottom: -150px;

  background: rgba(172, 230, 1, 0.1);
  filter: blur(30px);
}
.footer1 .container {
  position: relative;
  z-index: 2;
}
.footer1 .main-logo {
  max-width: 150px;
  height: 50px;
  overflow: hidden;
}

.footer1 .main-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.footer1 .social-box {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color3);
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
.footer1 .social-box:hover {
  background: var(--color3);
}
.footer1 .social-box svg {
  width: 22px;
  height: 22px;
}
.footer1 .right {
  max-width: 420px;
  margin-left: auto;
}
.footer1 .right .form-group input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  color: var(--ternary);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.footer1 .right .form-group input:focus {
  outline: none;
  border-color: var(--secondary);
}
.footer1 .right .form-group input::placeholder {
  color: var(--ternary);
  opacity: 0.8;
}
.footer1 .right .form-group button {
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.3s linear;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}
.footer1 .right .form-group button svg {
  width: 22px;
  height: 22px;
}

.footer1 .divider {
  margin: 40px 0;
}

.footer1 .divider hr {
  border-color: var(--border);
  opacity: 1;
}

.footer1 .footer-widget .widget-title {
  margin-bottom: 15px;
}
.footer1 .footer-widget ul li {
  margin-bottom: 4px;
}
.footer1 .footer-widget ul li a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary);
  transition: all 0.3s linear;
  position: relative;
}
.footer1 .footer-widget ul li a:hover {
  color: var(--main-color);
}
.footer1 .footer-widget ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--main-color);
  transition: all 0.3s ease-in-out;
}
.footer1 .footer-widget ul li a:hover::after {
  width: 100%;
}
.footer-contact-row svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  object-fit: contain;
}
.footer-contact-row:not(:last-child) {
  margin-bottom: 12px;
}

.footer2 {
  background: var(--linear);
}

.footer2 p {
  color: rgba(255, 255, 255, 0.85);
}
.footer2 ul li a {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s linear;
  position: relative;
}
.footer2 ul li:hover a {
  color: #fff;
}

/* home-wrapper-inner */
/* .home-wrapper {
  overflow: hidden;
} */
.home-wrapper .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.bg-img[data-aos^="fade"][data-aos^="fade"].aos-animate svg path {
  stroke-dasharray: 3500; /* total path length (adjust) */
  stroke-dashoffset: 3500; /* hidden at start */
  animation: draw 3s linear forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0; /* fully drawn */
  }
}

.home-wrapper-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 100px;
  overflow: unset;
}
.home-wrapper-inner .left {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: -webkit-sticky; /* Safari support */
  position: sticky;
  top: calc(100% - 500px); /* distance from top of viewport */
  align-self: flex-start;
}
.home-wrapper-inner .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.home-wrapper-inner .right {
  width: 100%;
}
.home-wrapper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.home-wrapper-grid .home-wrapper-box {
  background-color: var(--bg);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-wrapper-grid .home-wrapper-box .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.home-wrapper-grid .home-wrapper-box .icon-box svg,
.home-wrapper-grid .home-wrapper-box .icon-box img,
.reviews-text-box .icon-box svg
 {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.home-wrapper-grid .common-icon-box.pink-icon-box svg path,
.about-choose-box .common-icon-box.pink-icon-box svg path,
.reviews-text-box .common-icon-box.pink-icon-box svg path
{
  fill: #ff6881;
}
.home-wrapper-grid .common-icon-box.blue-icon-box svg path,
.about-choose-box .common-icon-box.blue-icon-box svg path,
.reviews-text-box .common-icon-box.blue-icon-box svg path {
  fill: #1b75e8;
}
.home-wrapper-grid .common-icon-box.green-icon-box svg path,
.about-choose-box .common-icon-box.green-icon-box svg path,
.reviews-text-box .common-icon-box.green-icon-box svg path {
  fill: #00c48c;
}
.home-wrapper-grid .common-icon-box.purple-icon-box svg path,
.about-choose-box .common-icon-box.purple-icon-box svg path,
.reviews-text-box .common-icon-box.purple-icon-box svg path {
  fill: #4500d0;
}
.home-wrapper-grid .common-icon-box.orange-icon-box svg path,
.about-choose-box .common-icon-box.orange-icon-box svg path,
.reviews-text-box .common-icon-box.orange-icon-box svg path {
  fill: #f2a700;
}

.sample-main-box {
  width: 100%;
  height: 800px;
  background-color: #ccc;
  display: flex;
}

.inner-box1 {
  position: sticky;
  position: -webkit-sticky;
  background: #f83d23;
  width: 100px;
  height: 100px;
  top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px #000;
  color: #fff;
}

.inner-box2 {
  position: relative;
  background: #f83d23;
  width: 100px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px #000;
  color: #fff;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLeftRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-40px);
  }
}

@keyframes floatTopBottom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 100%;
  }
  0% {
    background-position: 0 0;
  }
}

/* <========== about us page start ==========> */
.inner-banner {
  padding: 50px 44px 0;
}
.inner-banner-child {
  width: 100%;
  height: 380px;
  background-color: var(--bg);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.inner-banner-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon/bg.svg);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  opacity: 0.06;
}
.inner-banner-child::before {
  content: "";
  position: absolute;
  width: 606px;
  height: 606px;
  left: -177px;
  top: -180px;
  background: rgba(172, 230, 1, 0.15);
  filter: blur(75px);
}
.inner-banner-child .container {
  position: relative;
  text-align: center;
  z-index: 2;
}
.inner-banner-child .breadcrumb-item.active {
  color: var(--secondary);
}
.inner-banner-child .container
{
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.inner-banner-child .breadcrumb-item.active h6 {
  min-width: 100px;
}
.inner-banner-child .breadcrumb-item a {
  color: var(--color3);
}
.why_acadey-inner-banner .breadcrumb-item.active h6,
.testimonials_acadey-inner-banner .breadcrumb-item.active h6
{
  min-width: 150px;
}
.contactus-inner-banner .breadcrumb-item.active h6 
{
  min-width: 120px;
}
.inner-banner-child .breadcrumb {
  margin-bottom: 0;
}

/* about us section start */
.aboutus {
  overflow: hidden;
}
.aboutus-child {
  display: flex;
  align-items: center;
  gap: 24px 100px;
}
.aboutus-child > * {
  flex: 1;
}
.about-inner-box {
  width: 100%;
  height: auto;
  padding: 30px;
  background-color: var(--bg);
  border-radius: 12px;
}
.about-inner-box .nav-pills .nav-link {
  padding: 8px 15px;
  border-radius: 50px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.about-inner-box .nav-pills .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
}

.about-inner-box .divider {
  width: 2px;
  min-width: 2px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(172, 230, 1, 1),
    rgba(172, 230, 1, 0.1)
  );
}

.aboutus .aboutus-right {
  width: 100%;
  height: 540px;
  position: relative;
}
.aboutus .aboutus-right .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 910px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 8px;
  padding: 10px;
}
.aboutus .aboutus-right .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aboutus-wrapper .bg-img {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
}
.aboutus-wrapper .bg-img svg {
  width: 100%;
  height: 100%;
}
.aboutus-wrapper .about-inner-box {
  margin: 30px 0;
}

.aboutus-wrapper-inner {
  display: flex;
  align-items: center;
  gap: 100px;
}
.aboutus-wrapper-inner > * {
  flex: 1;
}
.aboutus-wrapper .left {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.aboutus-wrapper .left .img-box1 {
  width: 80%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.aboutus-wrapper .left .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-wrapper .left .img-box2 {
  position: absolute;
  right: 0;
  top: -80px;
  width: 180px;
  height: auto;
  max-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  animation: floatTopDown1 3s ease-in-out infinite;
  animation-delay: 2s;
}
.aboutus-wrapper .left .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* counter section start */
.counter-section {
  background: var(--linear);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.counter-section .counter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.counter-section .counter-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.counter-section .container {
  position: relative;
  z-index: 2;
}

.counter-inner {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(7, auto);
  gap: 30px;
  color: #fff;
}

.counter-inner .divider {
  width: 2px;
  min-width: 2px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(172, 230, 1, 1),
    rgba(172, 230, 1, 0.1)
  );
}
.counter-box {
  flex: 1;
}

/* about-why-choose section start */
.about-why-choose .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px 100px;
}
.about-why-choose .inner > * {
  flex: 1;
}
.owner-row {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: end;
  padding: 20px 0 20px 20px;
  margin-top: 30px;
}
.owner-row .border-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  border: 1px dotted var(--border);
  border-radius: 12px;
}

.owner-box {
  width: calc(100% - 24px);
  height: auto;
  background-color: var(--main-color);
  padding: 24px;
  border-radius: 12px;
  z-index: 2;
  color: #fff;
}
.owner-box .img-box {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
}
.owner-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-choose-box .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.about-choose-box .icon-box svg,
.about-choose-box .icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.about-choose-box {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 20px;
  border-radius: 12px;
}

.about-why-choose .row .col-sm-6:last-child {
  margin-top: 120px;
}

/* faq section start */
.faq::before,
.why-choose::before {
  content: "";
  position: absolute;
  width: 426px;
  height: 426px;
  top: 0;
  left: -200px;
  background: var(--color3);
  opacity: 0.1;
  z-index: -1;
  filter: blur(30px);
}

.faq-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px 100px;
}

.faq-inner .right {
  width: calc(50% - 50px);
  height: -webkit-fill-available;
  border-radius: 12px;
  overflow: hidden;
}

.faq-inner .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-inner .left {
  width: calc(50% - 50px);
  height: auto;
  border-radius: 12px;
  background-color: var(--bg);
  padding: 40px;
}
.accordion-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("../img/icon/4.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  padding: 4px;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../img/icon/4.svg");
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
  color: var(--secondary);
}
.accordion-button {
  box-shadow: none;
}
.accordion-body {
  padding-top: 0;
  box-shadow: none;
}

@keyframes floatTopDown1 {
  0%,
  100% {
    top: -80px;
  }
  50% {
    top: -60px;
  }
}

/* <========== why choose us section start ==========> */
.why-choose {
  overflow: hidden;
}
.why-choose-box {
  width: 100%;
  height: 100%;
  padding: 20px 0 0 20px;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-right: 0;
  border-radius: 12px;
  transition: all 0.3s linear;
}
.why-choose-box:hover {
  border-color: var(--main-color);
  color: #fff;
}
.why-choose-box .inner-box {
  width: 100%;
  height: 100%;
  padding: 24px 30px;
  border-radius: 12px;
  background-color: var(--bg);
  transition: all 0.3s linear;
}
.why-choose-box:hover .inner-box {
  background-color: var(--main-color);
}
.why-choose-box .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.why-choose-box:hover p {
  transition: all 0.3s linear;
}
.why-choose-box:hover p {
  color: #fff;
}
.why-choose::before {
  left: unset;
  right: -200px;
}
/* <========== why choose section end ==========> */

/* <========== testimonials page start ==========> */
.testimonials-story .top,
.testimonials-text .top
{
  margin-bottom: 40px;
}
.reviews-video-box:hover .img-box img
{
  transition: all 0.3s ease-in-out;
}
.reviews-video-box:hover .img-box img
{
  transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* <========== features section start =========> */
.features-details .img-box{
  width: 90%;
  height: 370px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
.features-details .img-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.features-details .top
{
  margin-bottom: 40px;
}

.features-details .top .left p {
  margin-bottom: 8px;
}
.features-details .top .left ul{
  padding-left: 30px;
}
.features-details .top .left ul li {
  position: relative;
}
.features-details .top .left ul li::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -30px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/double-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.features-details .top .right {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg);
  padding: 30px;
}
.features-details .top .right ul li {
  margin-bottom: 10px;
}
.features-details .top .right ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}
.features-details .top .right ul li a:hover {
  color: var(--main-color);
  gap: 12px;
}
.features-details .top .right ul li a svg {
  transition: all 0.3s ease-in-out;
}
.features-details .top .right ul li a:hover svg {
  fill: var(--main-color);
}
.features-details .top .right ul li a h6 {
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}
.features-details .top .right ul li a:hover h6 {
  color: var(--main-color);
}


.features-details .bottom{
  display: flex;
  align-items: center;
  gap: 24px 100px;
}
.features-details .bottom > * {
  flex: 1;
}

.features-details .bottom .left {
  width: 100%;
  padding: 12px 0 0 12px;
  position: relative;
}

.features-details .bottom .left .img-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.features-details .bottom .left .img-box {
  width: 100%;
  height: auto;
    padding: 12px 0 0 12px;
    background-color: rgba(249, 214, 123, 0.15);
    border-radius: 12px;
}

.features-details .bottom .left .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-wrapper .about-inner-box .divider{
  height: 100px;
}

/* <========== features details section end ==========> */

/* <========== contactus section end ==========> */
.contactus-inner {
  display: flex;
  gap: 24px 100px;
}
.contactus-inner > * {
  flex: 1;
}
.contactus-block {
  display: flex;
  gap: 15px;
}
.contactus-block > * {
  flex: 1;
}
.contact-no {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  color: var(--color3);
}

.contact-no:hover {
  text-decoration: none;
}

.contactus-inner ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contactus-inner ul li a {
  color: var(--secondary);
}

.contactus-inner ul li:hover a {
  text-decoration: underline;
}
.contactus-inner .right {
  padding: 40px;
  border-radius: 15px;
  background-color: var(--bg);
}
.contactus-inner .right .form-control {
  width: 100%;
  height: 45px;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--ternary);
  font-weight: 500;
}

.contactus-inner .right .form-control::placeholder {
  color: var(--ternary);
  opacity: 0.6;
}
.contactus-inner .right .form-control:focus {
  border-color: var(--main-color);
  box-shadow: none;
}

.contactus-inner .right textarea {
  height: 150px !important;
  resize: none;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--ternary);
  font-weight: 500;
}


/* <========== blog listing page start ==========> */
.blog-listing .blog-box{
  padding: 15px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}


.blog-listing .blog-box .card-body{
  padding: 0;
  padding-top: 15px;
}

.blog-listing .blog-box .card-img{
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}
.blog-listing .blog-box .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
} 
.blog-listing .blog-box:hover .card-img img {
  transform: scale(1.05);
} 

.pagination .page-item .page-link{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--main-color);
  border: 0;
}

.pagination .page-item.active .page-link{
  background-color: var(--color3);
  color: var(--white);
}
.pagination .page-item .page-link:focus
{
  box-shadow: none;
}
.disabled>.page-link {
  background-color: transparent;
}
.pagination .page-item .page-link svg {
  width: 28px;
  height: 28px;
}



/* <========== blog listing page end ==========> */
.blog-details-main-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-details-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* <==========blog details page start ==========> */
.blog-details-main-img {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.blog-details-left .first::first-letter {
  float: left;
  margin-right: 8px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.0;
  color: var(--main-color);
  border-radius: 4px;
  margin-top: 4px;
}

.blog-details-left .desc .img-box {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}
.blog-details-left .desc .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s linear;
}
.blog-details-left .desc .img-box img:hover {
  transform: scale(1.05);
}

.blog-details-left .block-img {
  width: 100%;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 4px 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s linear;
}
.blog-details-left .block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details-left .desc2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-details-left .desc2 .author {
  padding: 22px 30px 32px;
  background-color: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 25px;

}

.blog-details-left .desc2 .author .icon-box svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.blog-details-left .desc2 .author .icon-box svg path {
  fill: var(--color3);
}
.blog-details-left .desc2 .author .box {
  background-color: var(--main-color);
  padding: 10px 30px;
  position: absolute;
  bottom: -25px;
  left: 5%;
  transform: skew(-25deg, 0deg);
}
.blog-details-left .desc4 ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-left .desc4 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-details-left .desc4 ul li:not(:last-child) {
  margin-bottom: 10px;
}

.blog-details-left .tags div {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-details-left .tags p {
  padding: 10px 15px;
  background-color: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.blog-social-box {
  display: flex;
  align-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
}
.blog-social-box svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.blog-review textarea {
  width: 100%;
  height: 150px;
  border: 0;
  border-bottom: 1px solid var(--border);
  resize: none;
  outline: 0;
}

.blog-details-left .desc3 .img-box {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}
.blog-details-left .desc3 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .desc4 .dots li{
  list-style: circle;
  position: relative;
  margin-left: 15px;
}

.blog-details .desc4 .dots li::before{
  content: "•";       /* custom bullet */
  color: var(--lightwhite);        /* custom color */
  position: absolute;
  left: -15px;
}





.recent_blog {
  width: 100%;
  height: auto;
  position: sticky;
  top: 120px;
  border-radius: 15px;
  background-color: var(--bg);
  border: 0;
  padding: 24px 20px;
  transition: all 0.5s linear;
}

.recent_blog .card-title {
  border-bottom: 1px solid var(--border);
}
.recent_blog .card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recent_blog .img-box {
  width: 70px;
  min-width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
}
.recent_blog .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.recent_blog .box {
  display: flex;
  gap: 15px;
}

.recent_blog .box svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.recent_blog .box span {
  color: var(--secondary);
}

.recent_blog .box h6 {
  font-weight: 400;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.recent_blog .box:hover h6 {
  color: var(--main-color);
}
.recent_blog .box:hover .img-box img {
  transform: scale(1.1);
}

.blog-review {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 12px;
}
.blog-review .form-control,
.inquiry-modal .inquiry-form .form-control {
  width: 100%;
  height: auto;
  padding: 10px 12px;
  border: 1px solid var(--border);
  outline: 0;
  background-color: transparent;
  color: var(--ternary);
  transition: all 0.3s linear;
}
.blog-review .form-control::placeholder,
.inquiry-modal .inquiry-form .form-control::placeholder {
  opacity: 0.8;
}
.blog-review .form-control:focus,
.inquiry-modal .inquiry-form .form-control:focus {
  box-shadow: none;
}

/* inquiry modal start */
.inquiry-modal .modal-body {
  padding: 40px;
}
.inquiry-modal .modal-content {
  border-radius: 15px;
}
.inquiry-modal .inquiry-form {
  padding-left: 32px;
  padding-right: 32px;
}