/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Infine - Life and Business Coach HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Potential Css
08. Our Pricing Css
09. Our Expertise Css
10. Intro Video Css
11. How We Work Css
12. Company Growth Css
13. Our FAQs Css
14. Our Testimonial css
15. Our Blog Css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. Book Appointment Page css
31. 404 Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
@font-face {
  font-family: "ClashGrotesk-Variable";
  src: url("../webfonts/ClashGrotesk-Variable.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
.cf {
  font-family: "Plus Jakarta Sans", sans-serif;
  /* font-family: "ClashGrotesk-Variable" !important; */
  font-weight: 700 !important;
  font-size: 50px;
  line-height: 60.48px;
}
.cf-1 {
  /* font-family: "ClashGrotesk-Variable" !important; */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
}
:root {
  --primary-color: #042a2d;
  --secondary-color: #f2f1ed;
  --text-color: #8f8f8f;
  --accent-color: #73ed7c;
  --dark-color: #009da9;
  --white-color: #ffffff;
  --divider-color: #dfe1de;
  --dark-divider-color: #ffffff33;
  --error-color: rgb(230, 87, 87);
  --default-font: "Fustat", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;

  color: var(--text-color);
}

p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

/* .btn-default {
  position: relative;
  display: inline-block;
  background-color: var(--dark-color);
  background-size: 200% auto;
  border-radius: 5px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  padding: 17px 54px 17px 20px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.btn-default:hover {
  background-position: right center;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, 50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  transform: translate(-20px, 50%) rotate(45deg);
}

.btn-default.btn-highlighted {
  background: var(--white-color);
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.btn-default.btn-highlighted:hover {
  background: transparent;
  color: var(--white-color);
}

.btn-default.btn-highlighted::before {
  background: url("../images/dark-arrow.svg");
}

.btn-default.btn-highlighted::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 106%;
  background: linear-gradient(
    263deg,
    var(--dark-color) 0.16%,
    var(--accent-color) 99.84%
  );
  border-radius: 100px;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default.btn-highlighted:hover:after {
  width: 100%;
  left: 0;
  right: auto;
} */

.cb-cursor:before {
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-section {
  width: 100%;
  /* max-width: 1800px; */
  margin: 0 auto;
  /* border-radius: 30px; */
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title-content p {
  margin: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: url("../images/icon-sub-heading.svg") no-repeat;
  background-position: left center;
  background-size: auto;
  padding-left: 24px;
  margin-bottom: 20px;
}

.section-title h1 {
  font-size: 70px;
  /* font-weight: 300; */
  line-height: 1.1em;
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 44px !important;
  font-weight: 700 !important;
  line-height: 1.1em;
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  font-weight: 900 !important;
  /* background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%); */
  color: #019297 !important;
  /* background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.section-title p {
  margin-top: 30px;
  margin-bottom: 0;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-size: 14px;
  font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: relative;
  z-index: 100;
  padding: 0 30px;
}

.main-header .container-fluid {
  position: relative;
  padding-bottom: 20px;
}

.main-header .container-fluid::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 0;
  border-bottom: 1px solid var(--dark-divider-color);
  width: calc(100% - 30px);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: left;
  margin-left: 40px;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  padding: 15px !important;
  color: white;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
  width: 230px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.header-btn {
  align-items: center;
}

.btn-phone {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: white;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.btn-phone:hover {
  color: var(--accent-color);
}

.btn-phone i {
  color: black;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.btn-phone:hover i {
  color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background-color: #019297;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background-color: #019297;
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 250px 30px 250px;
  margin-top: -120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
      180deg,
      rgba(4, 42, 45, 0) 65.37%,
      var(--primary-color) 100.18%
    ),
    linear-gradient(
      270deg,
      rgba(4, 42, 45, 0) 59.75%,
      var(--primary-color) 100%
    );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero.hero-slider-layout .hero-slide {
  position: relative;
  padding: 320px 30px 200px;
}

.hero.hero-slider-layout .hero-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
      180deg,
      rgba(4, 42, 45, 0) 65.37%,
      var(--primary-color) 100.18%
    ),
    linear-gradient(
      180deg,
      rgba(4, 42, 45, 0) 59.75%,
      var(--primary-color) 100%
    );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 50px;
  text-align: left;
  padding-left: calc(((100vw - 1560px) / 2) - 45px);
  z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-slide .hero-section {
  text-align: left;
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  z-index: 2;
}

.hero-slide .hero-section .hero-content {
  width: 100%;
  max-width: 750px;
}

.hero-slide .hero-section .hero-content .section-title p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
  color: var(--white-color);
}

.hero-btn .btn-default.btn-highlighted {
  margin-left: 40px;
}

.export-coaching-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
}

.export-coaching-step {
  position: relative;
  width: 20%;
  border-top: 2px solid var(--dark-divider-color);
  padding-top: 30px;
  padding-right: 100px;
  transition: all 0.5s ease-in-out;
}

.export-coaching-step::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: auto;
  right: 0;
  background: linear-gradient(
    to left,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  width: 0;
  height: 2px;
  transition: all 0.4s ease-in-out;
}

.export-coaching-step:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.export-coaching-step .icon-box {
  margin-bottom: 20px;
}

.export-coaching-step .icon-box img {
  max-width: 30px;
}

.export-coaching-step-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us-images {
  position: relative;
  padding: 0 70px 70px 80px;
}

.about-us-img-1 figure {
  display: block;
  mask-image: url(../images/about-image-bg-shape.svg);
  background-image: url(../images/about-image-bg-shape.svg);
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.about-us-img-1 img {
  width: 100%;
  aspect-ratio: 1 / 1.26;
  object-fit: cover;
}

.about-us-img-2 {
  position: absolute;
  bottom: 0;
  right: 35px;
  border-radius: 14px;
  overflow: hidden;
}

.about-us-img-2 figure {
  display: block;
}

.about-us-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.about-experience-box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(70%);
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  border-radius: 10px;
  padding: 20px;
  max-width: 178px;
  animation: experiencemoveobject 2s infinite linear alternate;
}

@keyframes experiencemoveobject {
  50% {
    left: 30px;
  }
}

.about-experience-box .icon-box {
  margin-bottom: 10px;
}

.about-experience-box .icon-box img {
  max-width: 45px;
}

.about-experience-box .about-experience-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.company-review {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-180deg) translate(-100%, 50%);
  writing-mode: vertical-rl;
}

.company-review h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.about-us-list {
  margin-bottom: 40px;
}

.about-us-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-us-list ul li {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.about-us-list ul li:last-child {
  margin-bottom: 0;
}

/* .about-us-list ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background:
    var(--dark-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.about-us-body {
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.about-comapny-client {
  width: calc(50% - 15px);
}

.company-client-images {
  margin-bottom: 10px;
}

.company-client-images .client-image {
  display: inline-block;
  margin-left: -18px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  overflow: hidden;
}

.company-client-images .client-image:first-child {
  margin: 0;
}

.company-client-images .client-image figure {
  display: block;
}

.company-client-images .client-image img {
  max-width: 50px;
}

.company-client-counter p {
  font-weight: 500;
  margin: 0;
}

.company-client-counter p span {
  color: var(--primary-color);
}

.about-company-result {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.about-company-result .icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.about-company-result .icon-box img {
  max-width: 30px;
}

.company-result-content {
  width: calc(100% - 70px);
}

.company-result-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.company-result-content p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***      06. Our Services Css     ***/
/************************************/

.our-service {
  padding: 100px 0;
  background: var(--primary-color) url(../images/service-bg-circle.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
}

.service-content {
  position: sticky;
  top: 100px;
  margin-right: 30px;
}

.service-content .section-title h3,
.service-content .section-title h2,
.service-content .section-title p {
  color: var(--white-color);
}

.service-item-list {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

.service-item {
  width: calc(50% - 15px);
}

.service-item .icon-box {
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box {
  background-position: right center;
}

.service-item .icon-box img {
  max-width: 35px;
}

.service-item-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.service-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.service-footer p {
  color: var(--white-color);
  margin-bottom: 0;
}

.service-footer p span {
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white-color);
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  border-radius: 100px;
  background-size: 200% auto;
  margin-right: 20px;
  padding: 2px 15px;
  transition: all 0.4s ease-in-out;
}

.service-footer p:hover span {
  background-position: right center;
}

.service-footer a {
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: underline;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.service-footer a:hover {
  color: var(--dark-color);
}

/************************************/
/***     07. Our Potential Css    ***/
/************************************/

.our-potential {
  padding: 100px 0;
}

.our-potential-content {
  height: 100%;
}

.our-potential-counter {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.potential-counter-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.potential-counter-item .counter-circle {
  border: 2px solid transparent;
  background: linear-gradient(
      263deg,
      var(--accent-color) 0.16%,
      var(--dark-color) 99.84%
    )
    border-box;
  border-radius: 50%;
  margin-right: 30px;
}

.potential-counter-item .counter-circle h2 {
  font-size: 30px;
  background-color: var(--white-color);
  border: 10px solid var(--secondary-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.potential-counter-content {
  width: calc(100% - 154px);
}

.potential-counter-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.potential-body-content {
  margin-bottom: 20px;
}

.potential-body-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.potential-body-content p:last-child {
  margin-bottom: 0;
}

.potential-body-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.potential-body-list ul li {
  position: relative;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 10px;
}

.potential-body-list ul li:last-child {
  margin-bottom: 0;
}

.potential-body-list ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-potential-img {
  border-radius: 20px;
  margin-left: 30px;
  height: 100%;
}

.our-potential-img figure {
  display: block;
  height: 100%;
}

.our-potential-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.22;
  border-radius: 20px;
}

/************************************/
/***      08. Our Pricing Css     ***/
/************************************/

.our-pricing {
  background: var(--white-color);
  padding: 100px 0;
}

.pricing-content {
  position: sticky;
  top: 100px;
  margin-right: 100px;
}

.pricing-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-box {
  width: 100%;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
}

.pricing-box.highlighted-box {
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
}

.pricing-box-content {
  width: calc(36% - 15px);
  text-align: center;
  border-right: 1px solid var(--divider-color);
  padding-right: 30px;
  margin-right: 30px;
}

.pricing-box.highlighted-box .pricing-box-content {
  border-color: var(--dark-divider-color);
}

.pricing-title p {
  text-transform: capitalize;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title p {
  color: var(--white-color);
}

.pricing-title h2 {
  font-size: 50px;
}

.pricing-box.highlighted-box .pricing-title h2 {
  color: var(--white-color);
}

.pricing-title h2 sup {
  font-size: 30px;
}

.pricing-title h2 sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub {
  color: var(--white-color);
}

.pricing-btn {
  margin-top: 20px;
}

.pricing-list {
  width: calc(64% - 15px);
}

.pricing-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.pricing-list ul li {
  position: relative;
  width: calc(50% - 10px);
  text-transform: capitalize;
  padding-left: 25px;
}

.pricing-box.highlighted-box .pricing-list ul li {
  color: var(--white-color);
}

/* .pricing-list ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  background: var(--dark-color) 97.92%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.pricing-box.highlighted-box .pricing-list ul li::before {
  background-image: none;
  background-color: var(--white-color);
}

.pricing-benefit-list {
  margin-top: 30px;
}

.pricing-benefit-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px 30px;
}

.pricing-benefit-list ul li {
  color: var(--primary-color);
  font-weight: 500;
}

.pricing-benefit-list ul li img {
  max-width: 20px;
  margin-right: 15px;
}

/************************************/
/***     09. Our Expertise Css    ***/
/************************************/

.our-expertise {
  padding: 100px 0;
}

.expertise-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.expertise-item {
  width: auto;
  display: inline-flex;
  align-items: center;
  background: var(--white-color);
  border-radius: 100px;
}

.expertise-item:first-child {
  margin: 0 15px;
}

.expertise-image figure {
  border-radius: 50%;
  overflow: hidden;
}

.expertise-image img {
  max-width: 75px;
  border-radius: 50%;
}

.expertise-content {
  padding: 0 30px 0 15px;
}

.expertise-content p {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-color);
  margin: 0;
}

/************************************/
/***     10. Intro Video Css      ***/
/************************************/

.intro-video h1 {
  position: relative;
  color: #fff; /* Bright text */
  font-size: 36px;
  font-weight: bold;
  z-index: 2;
}

.intro-video .container {
  position: relative;
  z-index: 1;
}

.intro-video .section-title {
  margin-bottom: 0;
}

.intro-video .section-title h2 {
  color: var(--white-color);
}

.video-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button a {
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: none;
  transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
  background-position: right center;
}

.video-play-button a i {
  font-size: 20px;
  color: var(--white-color);
}

.video-play-button p {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  margin: 0;
}

.intro-video-list {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.intro-video-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.intro-video-list ul li {
  position: relative;
  width: calc(25% - 22.5px);
  color: var(--white-color);
  padding-left: 30px;
}

.intro-video-list ul li:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--white-color);
}

/************************************/
/***     11. How We Work Css      ***/
/************************************/

.how-we-work {
  padding: 150px 0;
}

.how-work-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.how-work-item .icon-box {
  /* border: 1px solid black; */
  background-size: 200% auto;
  color: black;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover .icon-box {
  background-position: right center;
}

.how-work-item .icon-box img {
  max-width: 36px;
}

.how-work-content {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.how-work-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.how-work-content p {
  margin: 0;
}

.scrolling-ticker.work-ticker {
  margin-top: 70px;
}

.scrolling-ticker .container-fluid {
  padding: 0;
}

.scrolling-ticker-box {
  --gap: 40px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
}

.scrolling-content span {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 90px;
  line-height: 1.1em;
  font-weight: 600;
  background: linear-gradient(
    to left,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: var(--secondary-color);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scrolling-content span img {
  max-width: 50px;
  margin-right: 40px;
}

/************************************/
/***    12. Company Growth Css    ***/
/************************************/

.company-growth {
  background: var(--white-color);
  padding: 100px 0;
}

.company-growth-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.company-growth-image img {
  width: 100%;
  aspect-ratio: 1 / 0.77;
  object-fit: cover;
  border-radius: 20px;
}

.company-growth-content {
  margin-left: 30px;
}

.company-growth-content .section-title h2 {
  width: 100%;
  max-width: 550px;
}

.company-growth-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 80px;
}

.company-growth-item {
  width: calc(25% - 22.5px);
}

.company-growth-item h2 {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.company-growth-item h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.company-growth-item p {
  margin: 0;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.faqs-cta-box {
  display: inline-block;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
}

.faqs-cta-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.faqs-cta-content p {
  margin-bottom: 20px;
}

.faqs-cta-box .btn-phone {
  margin: 0;
}

.faqs-cta-box .btn-phone i,
.faqs-cta-box .btn-phone {
  color: #00a5b2 !important;
}

.faqs-cta-box .btn-phone:hover i,
.faqs-cta-box .btn-phone:hover {
  color: var(--primary-color);
}

.our-faq-section .accordion-item {
  padding: 0;
  border-radius: 10px;
  border: 1px solid #8f8686 !important; /* Added black border to each accordion item */
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button {
  font-size: 18px;
  line-height: 1.2em;
  background-color: transparent;
  color: var(--primary-color);
  padding: 23px 28px 23px 48px;
  transition: all 0.3s ease-in-out;
  border: none !important; /* Removed individual button borders */
}

.our-faq-section .accordion-button:not(.collapsed) {
  color: #009da9 !important;
  border-bottom: none !important; /* Removed border-bottom on active state */
}

.our-faq-section .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  color: var(--primary-color);
  border: none !important; /* Removed border from collapsed buttons */
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0px, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid black; /* Border color is black */
  background-color: transparent; /* No background */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.our-faq-section .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23009da9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important; /* Updated color to #009da9 for the open state */
}

.our-faq-section .accordion-item .accordion-button:not(.collapsed)::after {
  transform: translate(0px, -50%) rotate(180deg);
}

.our-faq-section .accordion-item .accordion-body {
  padding: 0px 50px 20px 20px;
  color: gray !important;
}

.our-faq-section .accordion-item .accordion-body p {
  color: #656262 !important;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.our-faqs .container {
  background-color: transparent;
}
/************************************/
/***    14. Our Testimonial Css   ***/
/************************************/

.our-testimonial {
  background: url("../images/testimonial-bg.png"), var(--primary-color);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto;
  padding: 100px 0;
}

.our-testimonial-content {
  position: sticky;
  top: 100px;
}

.our-testimonial-content .section-title {
  margin-bottom: 0;
}

.our-testimonial-content .section-title h2,
.our-testimonial-content .section-title h3 {
  color: var(--white-color);
}

.testimonial-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.testimonial-slider-content,
.testimonial-slider-image {
  width: calc(50% - 15px);
}

.testimonial-slider-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-slider-image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1 / 1.19;
  object-fit: cover;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testimonial-rating-company {
  margin-right: 20px;
}

.testimonial-rating-company img {
  max-width: 150px;
  max-height: 60px;
}

.testimonial-quote img {
  max-width: 58px;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 2px;
}

.testimonial-rating i:last-child {
  margin-right: 0;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 0;
}

.author-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.author-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.testimonial-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 30px;
  z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 45px;
  height: 45px;
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
  margin-left: 30px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
  background-position: right center;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat center center;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
  transform: rotate(225deg);
}

.testimonial-rating-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 100px;
}

.testimonial-rating-item {
  position: relative;
  width: calc(25% - 22.5px);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  padding: 25px 30px;
}

.testimonial-rating-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  opacity: 6%;
  width: 100%;
  height: 100%;
}

.testimonial-rating-item .icon-box {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.testimonial-rating-item .icon-box img {
  max-width: 162px;
  max-height: 40px;
}

.testimonial-rating-content p {
  color: var(--white-color);
  margin: 0;
}

.testimonial-rating-content p span {
  color: var(--accent-color);
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
  padding: 100px 0;
}

.our-blog-content {
  position: sticky;
  top: 100px;
}

.blog-box {
  margin-left: 100px;
}

.blog-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.blog-item .blog-featured-image {
  width: 47%;
}

.blog-item .blog-featured-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.blog-item .blog-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.blog-item:hover .blog-featured-image img {
  transform: scale(1.1);
}

.blog-item-body {
  width: calc(100% - 47%);
  margin-left: 30px;
}

.blog-item-content {
  margin-bottom: 20px;
}

.blog-item-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-item-content h2 a {
  color: inherit;
}

.blog-item-content p {
  margin: 0;
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

.main-footer {
  position: relative;
  background: url(../images/footer-bg-1.png), var(--primary-color);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
  padding: 100px 0 0;
}

.main-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/footer-bg-2.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-footer .container {
  position: relative;
  z-index: 1;
}

.about-footer {
  width: 100%;
  max-width: 600px;
}

.about-footer .section-title h2 {
  color: var(--white-color);
}

.footer-contact-info h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-contact-info p {
  color: var(--white-color);
  margin: 0;
}

.footer-contact-info p span {
  font-size: 20px;
  font-weight: 600;
}

.footer-social-links {
  margin-top: 30px;
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a {
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
  border-color: var(--accent-color);
}

.footer-social-links ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 40px 0;
  margin-top: 80px;
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-menu ul li {
  display: inline-block;
  margin-right: 30px;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li a {
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
  color: var(--accent-color);
}

.footer-copyright-text {
  text-align: left;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/page-header-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 140px;
  margin-top: -120px;
}

.page-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    270deg,
    rgba(4, 42, 45, 0) 22.28%,
    var(--primary-color) 100%
  );
  z-index: 0;
}

.page-header-box {
  position: relative;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 1;
}

.page-header-box h1 {
  color: var(--white-color);
  font-size: 70px;
  font-weight: 300;
  line-height: 1.1em;
  margin-bottom: 10px;
}

.page-header-box h1 span {
  font-weight: 700;
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  background: var(--white-color);
  padding: 100px 0;
}

.mission-vision-item {
  position: relative;
  margin-bottom: 40px;
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item:after {
  content: "";
  position: absolute;
  background: var(--divider-color);
  width: 1px;
  height: 90%;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
  padding-right: 45px;
}

.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
  padding-left: 45px;
}

.mission-vision-item .icon-box {
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box {
  background-position: right center;
}

.mission-vision-item .icon-box img {
  max-width: 24px;
}

.mission-vision-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.mission-vision-content p {
  margin: 0;
}

.mission-vision-item.our-value-item {
  display: flex;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.mission-vision-item.our-value-item .icon-box {
  margin-right: 20px;
}

.mission-vision-item.our-value-item .mission-vision-content {
  width: calc(100% - 70px);
}

.our-approach-content-footer a {
  font-weight: 400;
  line-height: 1.4em;
  text-align: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
}

.our-approach-content-footer a:before {
  display: none;
}

.our-approach-content-footer a u {
  transition: all 0.3s ease-in-out;
}

.our-approach-content-footer a:hover u {
  color: var(--primary-color);
}

.our-approach-image {
  padding-left: 30px;
}

.our-approach-image figure {
  display: block;
  border-radius: 20px;
}

.our-approach-image img {
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
  border-radius: 20px;
}

.our-partners {
  padding: 100px 0 70px;
}

.our-partners .contact-circle {
  text-align: right;
}

.our-partners .contact-circle img {
  max-width: 122px;
  animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.our-partners .company-logo {
  background-color: var(--white-color);
  border-radius: 20px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 55px 35px;
}

.company-logo img {
  width: 100%;
  height: 40px;
}

.company-experience {
  background-color: var(--primary-color);
  background-image: url("../images/company-experience-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.company-experience-content {
  margin-right: 10px;
}

.company-experience-content .section-title h3,
.company-experience-content .section-title h2 {
  color: var(--white-color);
}

.company-experience-content .section-title p {
  color: var(--secondary-color);
}

.company-experience-content .section-btn {
  text-align: start;
}

.company-experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 20px;
}

.company-experience-item {
  width: calc(50% - 15px);
}

.company-experience-item h2 {
  color: var(--accent-color);
  font-size: 40px;
  margin-bottom: 10px;
}

.company-experience-item h3 {
  color: var(--white-color);
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.company-experience-item p {
  color: var(--secondary-color);
  margin: 0;
}

.why-choose-us {
  padding: 100px 0;
}

.why-choose-us-content {
  margin-right: 20px;
}

.why-choose-skillbar .skills-progress-bar {
  margin-bottom: 40px;
}

.why-choose-skillbar .skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skillbar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skillbar .skill-data .skill-title {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.skillbar .skill-data .skill-no {
  font-size: 16px;
  color: var(--primary-color);
  margin-left: 20px;
}

.skillbar .skill-progress {
  width: 100%;
  height: 14px;
  background: var(--white-color);
  border-radius: 99px;
  position: relative;
}

.skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
  border-radius: 99px;
}

.why-choose-us-image {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
  padding-bottom: 45px;
  margin-left: 50px;
}

.why-choose-us-img-1 {
  width: 413px;
  text-align: right;
}

.why-choose-us-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure {
  display: block;
  overflow: hidden;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure,
.why-choose-us-img-1 img,
.why-choose-us-img-2 img {
  border-radius: 20px;
}

.why-choose-us-img-1 img {
  aspect-ratio: 1 / 1.095;
  object-fit: cover;
}

.why-choose-us-img-1 img {
  aspect-ratio: 1 / 1.097;
  object-fit: cover;
}

.why-choose-contact-circle {
  position: absolute;
  top: 50px;
  left: -50px;
}

.why-choose-contact-circle img {
  max-width: 175px;
  animation: infiniterotate 30s infinite linear;
}

.our-team {
  padding: 150px 0;
}

.team-member-item {
  height: calc(100% - 30px);
  margin-bottom: 15px;
}

.team-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-image a {
  display: block;
  cursor: none;
}

.team-image img {
  width: 100%;
  object-fit: cover;
  border-radius: unset !important;
  transition: all 0.5s ease-in-out;
  height: 330px;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transform: translateY(100%);
  text-align: center;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
  bottom: 30px;
  transform: translateY(0);
}

.team-social-icon ul {
  position: relative;
  display: inline-block;
  list-style: none;
  line-height: normal;
  margin: 0;
  padding: 15px 25px;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 10px;
  overflow: hidden;
}

.team-social-icon ul::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  opacity: 10%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.team-social-icon ul li {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  z-index: 1;
}

.team-social-icon ul li:last-child {
  margin-right: 0;
}

.team-social-icon ul li a {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  height: 36px;
  width: 36px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i {
  color: inherit;
  font-size: 18px;
}

.team-social-icon ul li a:hover {
  border-color: var(--dark-color);
  color: var(--accent-color);
}

.team-content {
  text-align: center;
}

.team-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/*** 	 18. Services page Css	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.page-services .service-item {
  background-color: var(--white-color);
  border-radius: 20px;
  width: 100%;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.page-services .service-item .service-item-content {
  margin-bottom: 20px;
}

.page-services .service-item .service-item-content h3 {
  color: var(--primary-color);
}

.page-services .service-item .service-item-content p {
  color: var(--text-color);
}

.readmore-btn {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
  color: var(--primary-color);
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  background: url(../images/accent-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  filter: brightness(0) invert(0);
  transform: translateY(-50%) rotate(45deg);
}

/************************************/
/*** 	19. Service Single Css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  margin-right: 30px;
}

.service-catagery-list {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
}

.service-catagery-list h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-catagery-list ul li {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.service-catagery-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/accent-arrow.svg) no-repeat;
  background-position: right center;
  background-size: auto;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover:before {
  transform: rotate(45deg);
}

.service-catagery-list ul li:hover a {
  color: var(--accent-color);
}

.sidebar-cta-box {
  border-radius: 20px;
  overflow: hidden;
}

.sidebar-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.63;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-img img {
  transform: scale(1.1);
}

.sidebar-cta-Body {
  background: var(--white-color);
  padding: 30px;
}

.sidebar-cta-content {
  margin-bottom: 30px;
}

.sidebar-cta-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.sidebar-cta-content p {
  margin-bottom: 0;
}

.sidebar-cta-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-cta-contact ul li {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sidebar-cta-contact ul li:last-child {
  margin: 0;
}

.sidebar-cta-contact ul li i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-featured-image {
  margin-bottom: 30px;
}

.service-featured-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.service-featured-image img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1 / 0.66;
  object-fit: cover;
}

.service-entry {
  margin-bottom: 50px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-entry h2 span {
  font-weight: 700;
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-entry ul {
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.service-entry ul li {
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 20px;
}

.service-entry ul li:last-child {
  margin-bottom: 0;
}

.service-entry ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-entry-img {
  margin-bottom: 50px;
}

.service-entry-img figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.service-entry-img img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
}

.business-process-steps {
  margin: 30px 0 20px;
}

.business-planing-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.business-planing-img {
  width: calc(50% - 15px);
}

.business-planing-img figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.business-planing-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.93;
}

/************************************/
/*** 	 20. Blog Archive Css	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.post-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

.post-featured-image {
  position: relative;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.post-featured-image figure a {
  display: block;
  cursor: none;
}

.post-featured-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
  transform: scale(1.1);
}

.post-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}

.post-btn a {
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.post-btn a:hover {
  background-position: right center;
}

.post-btn a img {
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

.post-btn a:hover img {
  filter: brightness(0) invert(0);
}

.post-item:hover .post-btn a img {
  transform: rotate(45deg);
}

.post-item-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-content p {
  margin: 0;
}

.page-pagination {
  margin-top: 20px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
}

.post-image figure,
.post-image img {
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 30px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  line-height: 1.2em;
  margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
  font-weight: 400;
}

.post-entry h1 {
  font-size: 70px;
}

.post-entry h2 {
  font-size: 50px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--white-color) url(../images/icon-blockquote.svg) no-repeat;
  background-position: 35px 30px;
  background-size: 58px;
  border-radius: 20px;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  color: var(--white-color);
  border-radius: 100px;
  padding: 8px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background-position: right center;
  color: var(--primary-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  color: var(--white-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background-position: right center;
  color: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	  22. Team Page Css	      ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	 23. Team Single Css	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-single-image {
  position: sticky;
  top: 100px;
  margin-right: 30px;
}

.team-single-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.team-single-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.2;
  border-radius: 20px;
  overflow: hidden;
}

.team-member-info {
  margin-bottom: 60px;
}

.team-info-header {
  margin-bottom: 30px;
}

.team-info-header h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white-color);
  background: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.team-info-header h2 {
  font-size: 50px;
  text-transform: capitalize;
}

.team-info-body {
  margin-bottom: 40px;
}

.team-info-body p:last-child {
  margin: 0;
}

.team-info-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-info-list ul li {
  display: block;
  margin-bottom: 20px;
}

.team-info-list ul li:last-child {
  margin-bottom: 0;
}

.team-info-list ul li span {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-block;
  width: 25%;
}

.team-member-experience {
  margin-bottom: 60px;
}

.member-experience-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-experience-list ul li {
  position: relative;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 20px;
}

.member-experience-list ul li:last-child {
  margin-bottom: 0;
}

.member-experience-list ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  background-image: linear-gradient(
    267.43deg,
    var(--accent-color) 4.95%,
    var(--dark-color) 97.92%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-contect-form form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--primary-color);
  background: transparent;
  border-width: 0 0 1px 0;
  border-color: var(--divider-color);
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  box-shadow: none;
}

.member-contect-form form .form-control::placeholder {
  font-weight: 500;
  color: var(--primary-color);
}

/************************************/
/*** 	 24. Pricing Page css	  ***/
/************************************/

.page-pricing {
  padding-bottom: 150px 0;
}

.page-pricing .pricing-box {
  display: block;
  background-color: var(--white-color);
  border-radius: 20px;
  border: none;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.page-pricing .pricing-box .pricing-box-content {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid var(--divider-color);
  /* padding: 0 0 30px 0; */
  margin: 0 0 30px 0;
}

.page-pricing .pricing-box.highlighted-box .pricing-box-content {
  border-color: var(--dark-divider-color);
}

.page-pricing .pricing-box .pricing-btn .btn-default {
  width: 100%;
  text-align: center;
  padding: 17px;
}

.page-pricing .pricing-box .pricing-btn .btn-default::before {
  display: none;
}

.page-pricing .pricing-box .pricing-list {
  width: 100%;
}

.page-pricing .pricing-box .pricing-list ul li {
  width: 100%;
  color: #131313;
  font-weight: 500;
}

.page-pricing .pricing-benefit-list {
  margin-top: 20px;
}

.page-pricing .pricing-benefit-list ul {
  justify-content: center;
  gap: 20px 50px;
}

/************************************/
/***   25. Testimonial Page Css	  ***/
/************************************/

.page-testimonial {
  padding: 100px 0;
}

.client-testimonial-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.client-testimonial-item:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.client-testimonial-author {
  width: calc(40% - 40px);
  display: flex;
  align-items: center;
}

.client-author-image {
  margin-right: 40px;
}

.client-author-image figure {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.client-author-image img {
  max-width: 100px;
  border-radius: 50%;
}

.client-author-content {
  width: calc(100% - 140px);
}

.client-author-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.client-author-content p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.client-testimonial-content {
  width: calc(60% - 40px);
  background: url(../images/blockquote.svg) no-repeat;
  background-position: top left;
  background-size: 56px auto;
  padding: 10px 0 0 70px;
}

.client-testimonial-content p {
  margin-bottom: 0;
}

/************************************/
/***     26. Image Gallery css    ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  border-radius: 20px;
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: linear-gradient(
    263deg,
    var(--accent-color) 0.16%,
    var(--dark-color) 99.84%
  );
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***       28. FAQs Page css      ***/
/************************************/

.page-faq {
  padding: 100px 0;
}

.faqs-sidebar {
  position: sticky;
  top: 100px;
  margin-right: 30px;
}

.faqs-catagery-list {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
}

.faqs-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faqs-catagery-list ul li {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.faqs-catagery-list ul li a {
  position: relative;
  text-transform: capitalize;
  display: block;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/accent-arrow.svg) no-repeat;
  background-position: right center;
  background-size: auto;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a:hover:before {
  transform: rotate(45deg);
}

.faqs-catagery-list ul li:hover a {
  color: var(--accent-color);
}

.page-faq-accordion {
  margin-bottom: 60px;
}

.page-faq-accordion:last-child {
  margin-bottom: 0;
}

/************************************/
/***    29. Contact Us Page css   ***/
/************************************/

.page-contact-us {
  padding: 100px 0;
}

.page-contact-us .section-row .section-title {
  margin-right: 20px;
}

.contact-us-form {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-us-title {
  margin-bottom: 40px;
}

.contact-us-title h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-us-title p {
  margin-bottom: 0;
}

.contact-us-form form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--primary-color);
  background: transparent;
  border-width: 0 0 1px 0;
  border-color: var(--divider-color);
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  box-shadow: none;
}

.contact-us-form form .form-control::placeholder {
  color: var(--primary-color);
}

.contact-information {
  margin-left: 20px;
}

.contact-info-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-contant {
  margin-bottom: 20px;
}

.contact-info-contant h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-info-contant p {
  margin-bottom: 0;
}

.contact-info-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-info-body .icon-box {
  background-image: linear-gradient(
    to right,
    var(--dark-color) 0%,
    var(--accent-color) 50%,
    var(--dark-color) 100%
  );
  background-size: 200% auto;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

.contact-info-body:hover .icon-box {
  background-position: right center;
}

.contact-info-body .icon-box img {
  max-width: 20px;
}

.contact-info-title {
  width: calc(100% - 60px);
}

.contact-info-title h3 {
  font-size: 22px;
  line-height: normal;
  color: var(--accent-color);
}

.google-map {
  overflow: hidden;
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 600px;
}

.google-map-iframe iframe {
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}

.google-map-iframe:hover iframe {
  filter: grayscale(0);
}

/*************************************/
/*** 30. Book Appointment Page css ***/
/*************************************/

.page-book-appointment {
  padding: 100px 0;
}

.booking-timing-title {
  margin-bottom: 20px;
}

.booking-timing-title h3 {
  font-size: 22px;
}

.booking-timing-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-timing-list ul li {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.booking-timing-list ul li:last-child {
  margin-bottom: 0;
}

.booking-timing-list ul li span {
  font-weight: 600;
}

.appointment-form {
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 60px;
}

.appointment-form p {
  margin-bottom: 50px;
}

.appointment-form form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--primary-color);
  background-color: transparent;
  border-width: 0 0 1px 0;
  border-color: var(--divider-color);
  border-radius: 0;
  text-align: left;
  padding: 12px 0;
  outline: none;
  box-shadow: none;
}

.appointment-form form .form-control::placeholder {
  color: var(--primary-color);
}

.appointment-form form .btn-default {
  width: 100%;
  text-align: center;
  padding: 17px;
  margin-top: 20px;
}

.appointment-form form .btn-default::before {
  display: none;
}

/************************************/
/*** 	   31. 404 Page css       ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page .error-page-content {
  text-align: center;
}

.error-page-content-heading {
  margin-bottom: 30px;
}

.error-page-content-body p {
  margin-bottom: 30px;
}

/************************************/
/***       32. Responsive Css     ***/
/************************************/
/* 
@media only screen and (max-width: 1800px){

	.bg-section{
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}
} */

@media only screen and (max-width: 1560px) {
  /* .bg-section{
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	} */

  header.main-header {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
  }

  .navbar {
    max-width: 100%;
  }

  .hero.hero-slider-layout .hero-pagination {
    padding-left: 0;
    margin: 0 0 0 45px;
  }

  .export-coaching-step {
    padding-right: 80px;
  }

  .page-header-box {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1366px) {
  .export-coaching-step {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 1024px) {
  header.main-header {
    padding: 0px;
  }

  .main-menu .nav-menu-wrapper {
    margin-left: 20px;
  }

  .main-menu ul li a {
    padding: 10px !important;
  }

  .hero {
    padding: 350px 0px 100px;
  }

  .export-coaching-step {
    padding-right: 20px;
  }

  .page-header-box {
    padding: 0;
  }
}

@media only screen and (max-width: 991px) {
  header.main-header {
    padding: 0;
  }

  .navbar {
    padding: 20px 0 0;
  }

  header.main-header .header-sticky.active .navbar {
    padding: 20px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .bg-section {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0;
  }

  header.main-header {
    width: 100%;
    margin: 0px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-btn {
    text-align: left;
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    margin-bottom: 10px;
  }

  .section-title h1 {
    font-size: 55px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    padding: 280px 0 80px;
    margin-top: -95px;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 245px 0px 150px;
  }

  .hero-slide .hero-section .hero-content {
    max-width: 550px;
  }

  .hero.hero-slider-layout .hero-pagination {
    margin: 0 0 0 15px;
  }

  .hero-slide .hero-section .hero-content .section-title p {
    font-size: 16px;
  }

  .export-coaching-box {
    margin-top: 40px;
  }

  .export-coaching-step-content p {
    font-size: 15px;
  }

  .about-us {
    padding: 150px 0;
  }

  .about-us-images {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px 40px 50px;
    margin-bottom: 30px;
  }

  .about-us-img-2 {
    right: 0;
  }

  .about-us-img-2 img {
    aspect-ratio: 1 / 0.99;
  }

  .about-experience-box {
    padding: 15px;
    max-width: 150px;
  }

  .about-experience-box .icon-box img {
    max-width: 35px;
  }

  .about-experience-box .about-experience-content h3 {
    font-size: 18px;
  }

  .company-review {
    transform: rotate(-180deg) translate(-50%, 50%);
  }

  .about-us-list ul li {
    margin-bottom: 15px;
  }

  .about-us-list {
    margin-bottom: 30px;
  }

  .about-us-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .company-client-images {
    margin-bottom: 5px;
  }

  .our-service {
    background-size: 50% auto;
    padding: 50px 0;
  }

  .service-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .service-item-list {
    margin-bottom: 30px;
    padding-bottom: 30px;
    gap: 30px;
  }

  .service-item .icon-box {
    margin-bottom: 20px;
  }

  .service-item-content h3 {
    font-size: 20px;
  }

  .our-potential {
    padding: 50px 0;
  }

  .our-potential-content {
    height: auto;
    margin-bottom: 30px;
  }

  .our-potential-counter {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .potential-counter-item .counter-circle {
    margin-right: 20px;
  }

  .potential-counter-item .counter-circle h2 {
    font-size: 26px;
    width: 100px;
    height: 100px;
  }

  .potential-counter-content {
    width: calc(100% - 124px);
  }

  .potential-body-content h3 {
    margin-bottom: 15px;
  }

  .our-potential-img {
    margin-left: 0px;
    height: auto;
  }

  .our-potential-img img {
    height: auto;
    aspect-ratio: 1 / 0.9;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .pricing-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .pricing-box {
    padding: 30px;
  }

  .pricing-title h2 {
    font-size: 40px;
  }

  .pricing-title h2 sup {
    font-size: 26px;
  }

  .our-expertise {
    padding: 50px 0;
  }

  .our-expertise-content {
    margin-bottom: 30px;
  }

  .expertise-list {
    max-width: 590px;
    margin: 0 auto;
  }

  .expertise-image img {
    max-width: 60px;
  }

  .intro-video {
    padding: 250px 0 50px;
  }

  .intro-video-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .intro-video-list ul li {
    width: calc(50% - 15px);
  }

  .how-we-work {
    padding: 50px 0;
  }

  .how-work-content {
    padding-top: 20px;
    margin-top: 20px;
  }

  .how-work-content h3 {
    font-size: 20px;
  }

  .scrolling-ticker.work-ticker {
    margin-top: 20px;
  }

  .scrolling-ticker-box {
    --gap: 30px;
  }

  .scrolling-content span {
    font-size: 70px;
  }

  .scrolling-content span img {
    margin-right: 30px;
  }

  .company-growth {
    padding: 50px 0;
  }

  .company-growth-image {
    margin-bottom: 30px;
  }

  .company-growth-image img {
    aspect-ratio: 1 / 0.67;
  }

  .company-growth-content {
    margin-left: 0px;
  }

  .company-growth-content .section-title h2 {
    max-width: 100%;
  }

  .company-growth-box {
    gap: 30px;
    margin-top: 40px;
  }

  .company-growth-item {
    width: calc(50% - 15px);
  }

  .company-growth-item h2 {
    font-size: 34px;
  }

  .company-growth-item h3 {
    font-size: 20px;
  }

  .our-faqs {
    padding: 0px !important;
  }

  .our-faqs-content {
    margin-bottom: 30px;
  }

  .faqs-cta-content h3 {
    font-size: 20px;
  }

  .our-faq-section .accordion-header .accordion-button {
    font-size: 20px;
    padding: 15px 40px 15px 15px;
  }

  .our-faq-section .accordion-item .accordion-body {
    padding: 15px 40px 15px 15px;
  }

  .our-faq-section .accordion-item .accordion-button::after,
  .our-faq-section .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    width: 20px;
    height: 20px;
  }

  .our-testimonial {
    background-size: 30% auto;
    padding: 50px 0;
  }

  .our-testimonial-content {
    position: initial;
    margin-bottom: 30px;
  }

  .testimonial-header {
    margin-bottom: 20px;
  }

  .testimonial-rating-company img {
    max-height: 40px;
  }

  .testimonial-quote img {
    max-width: 44px;
  }

  .testimonial-rating {
    margin-bottom: 15px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .author-content h3 {
    font-size: 20px;
  }

  .testimonial-slider .testimonial-button-next,
  .testimonial-slider .testimonial-button-prev {
    width: 40px;
    height: 40px;
  }

  .testimonial-rating-box {
    margin-top: 50px;
  }

  .testimonial-rating-item {
    width: calc(50% - 15px);
    padding: 15px 20px;
  }

  .testimonial-rating-item .icon-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .our-blog {
    padding: 50px 0;
  }

  .our-blog-content {
    position: initial;
    margin-bottom: 30px;
  }

  .blog-box {
    margin-left: 0px;
  }

  .blog-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .blog-item-content h2 {
    font-size: 20px;
  }

  .main-footer {
    background-size: 30% auto;
    padding: 50px 0 0;
    margin-bottom: 0;
  }

  .main-footer::before {
    background-size: 30% auto;
  }

  .footer-social-links ul li {
    margin-right: 10px;
  }

  .footer-social-links ul li a {
    width: 30px;
    height: 30px;
  }

  .footer-social-links ul li a i {
    font-size: 16px;
  }

  .footer-copyright {
    padding: 20px 0;
    margin-top: 40px;
  }

  .footer-menu ul li {
    margin-right: 20px;
  }

  .page-header {
    padding: 170px 0 70px;
    margin-top: -95px;
  }

  .page-header-box h1 {
    font-size: 55px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .our-approach-content {
    margin-bottom: 30px;
  }

  .mission-vision-list .mission-vision-item {
    margin-bottom: 30px;
  }

  .our-value-item {
    padding-top: 30px;
  }

  .our-approach-image {
    padding-left: 0px;
    text-align: center;
  }

  .mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
    padding-right: 30px;
  }

  .mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
    padding-left: 30px;
  }

  .mission-vision-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .our-approach-image img {
    aspect-ratio: 1 / 0.7;
  }

  .our-partners {
    padding: 50px 0 20px;
  }

  .our-partners .contact-circle {
    text-align: left;
    margin-top: 20px;
  }

  .our-partners .company-logo {
    padding: 35px 25px;
  }

  .company-experience {
    padding: 50px 0;
  }

  .company-experience-content {
    margin-right: 0px;
  }

  .company-experience-list {
    margin-top: 30px;
    margin-left: 0;
  }

  .company-experience-item h2 {
    font-size: 34px;
  }

  .company-experience-item h3 {
    font-size: 20px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .why-choose-skillbar .skills-progress-bar {
    margin-bottom: 30px;
  }

  .why-choose-us-image {
    max-width: 580px;
    margin: 0 auto;
  }

  .our-team {
    padding: 0px 0px !important;
    margin-top: 20px !important;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .team-social-icon ul {
    padding: 10px 20px;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-services .service-item {
    padding: 30px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-sidebar {
    position: inherit;
    margin: 0 0 30px 0;
  }

  .service-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .service-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-Body {
    padding: 20px;
  }

  .sidebar-cta-content {
    margin-bottom: 20px;
  }

  .sidebar-cta-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-contact ul li {
    margin-bottom: 15px;
  }

  .service-featured-image {
    margin-bottom: 20px;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 40px;
  }

  .service-entry ul li {
    margin-bottom: 15px;
  }

  .service-entry-img {
    margin-bottom: 30px;
  }

  .business-process-steps {
    margin-bottom: 0px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .post-featured-image {
    margin-bottom: 20px;
  }

  .post-btn {
    top: 20px;
    right: 20px;
  }

  .post-btn a {
    height: 40px;
    width: 40px;
  }

  .post-btn a img {
    max-width: 22px;
  }

  .post-item-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry h2 {
    font-size: 40px;
  }

  .post-entry ul li {
    font-size: 16px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .tag-links {
    font-size: 22px;
  }

  .post-tags .tag-links a {
    font-size: 16px;
    padding: 6px 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-single-image {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.79;
    object-position: top center;
  }

  .team-member-info {
    margin-bottom: 40px;
  }

  .team-info-header {
    margin-bottom: 20px;
  }

  .team-info-header h2 {
    font-size: 40px;
  }

  .team-info-body {
    margin-bottom: 30px;
  }

  .team-info-list ul li {
    margin-bottom: 15px;
  }

  .team-info-list ul li span {
    font-size: 20px;
  }

  .team-member-experience {
    margin-bottom: 40px;
  }

  .member-experience-list ul li {
    margin-bottom: 15px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-pricing .pricing-box {
    padding: 30px;
  }

  .page-pricing .pricing-benefit-list {
    margin-top: 10px;
  }

  .page-testimonial {
    padding: 50px 0;
  }

  .client-testimonial-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    gap: 0;
  }

  .client-testimonial-author {
    width: 35%;
  }

  .client-author-image {
    margin-right: 20px;
  }

  .client-author-image img {
    max-width: 80px;
  }

  .client-author-content {
    width: calc(100% - 100px);
  }

  .client-author-content h3 {
    font-size: 20px;
  }

  .client-testimonial-content {
    background-size: 45px auto;
    width: 65%;
    padding-left: 50px;
  }

  .client-testimonial-content p {
    font-size: 14px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.8;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .video-gallery-image img {
    aspect-ratio: 1 / 0.8;
  }

  .page-faq {
    padding: 50px 0;
  }

  .faqs-sidebar {
    position: initial;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .faqs-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .faqs-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .page-contact-us .section-row .section-title {
    margin-right: 0;
  }

  .contact-us-form {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-us-title {
    margin-bottom: 30px;
  }

  .contact-us-title h3 {
    font-size: 20px;
  }

  .contact-information {
    margin-left: 0;
  }

  .contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-info-contant {
    margin-bottom: 10px;
  }

  .contact-info-contant h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .contact-info-title h3 {
    font-size: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .page-book-appointment {
    padding: 50px 0;
  }

  .book-appointment-content {
    margin-bottom: 30px;
  }

  .booking-timing-title {
    margin-bottom: 15px;
  }

  .booking-timing-title h3 {
    font-size: 20px;
  }

  .booking-timing-list ul li {
    margin-bottom: 10px;
  }

  .appointment-form {
    padding: 30px;
  }

  .appointment-form p {
    margin-bottom: 30px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-content-heading {
    margin-bottom: 15px;
  }

  .error-page-content-body p {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .btn-default {
    padding: 15px 49px 15px 15px;
  }

  .btn-default::before {
    top: -2px;
    transform: translate(-15px, 50%);
  }

  .btn-default:hover::before {
    transform: translate(-15px, 50%) rotate(45deg);
  }

  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    padding: 200px 0 100px;
    margin-top: -95px;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 195px 0px 100px;
  }

  .hero.hero-slider-layout .hero-pagination {
    bottom: 30px;
  }

  .hero-btn .btn-default {
    margin: 0 50px 10px 0;
  }

  .hero-btn .btn-default.btn-highlighted {
    margin: 0px;
  }

  .export-coaching-box {
    display: none;
  }

  .export-coaching-step {
    width: 100%;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .export-coaching-step:last-child {
    margin-bottom: 0;
  }

  .export-coaching-step .icon-box {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .export-coaching-step-content {
    width: calc(100% - 50px);
  }

  .about-us-images {
    max-width: 100%;
    padding: 0 20px 34px 30px;
  }

  .about-us-img-2 {
    max-width: 145px;
  }

  .about-experience-box {
    padding: 10px;
    max-width: 110px;
    transform: translateY(30%);
  }

  @keyframes experiencemoveobject {
    50% {
      left: 20px;
    }
  }

  .about-experience-box .about-experience-content h3 {
    font-size: 16px;
  }

  .company-review {
    transform: rotate(-180deg) translate(0, 20%);
  }

  .company-review h3 {
    font-size: 14px;
  }

  .about-us-list ul li {
    font-size: 18px;
    padding-left: 25px;
  }

  .about-us-list ul li::before {
    font-size: 18px;
  }

  .about-us-body {
    gap: 25px;
  }

  .about-comapny-client,
  .about-company-result {
    width: 100%;
  }

  .company-result-content h3 {
    font-size: 18px;
  }

  .service-item {
    width: 100%;
  }

  .service-item .icon-box {
    height: 60px;
    width: 60px;
  }

  .service-item .icon-box img {
    max-width: 25px;
  }

  .service-item-content h3 {
    font-size: 18px;
  }

  .service-footer p span {
    margin-right: 10px;
    padding: 0px 10px;
  }

  .potential-counter-item {
    width: 100%;
  }

  .potential-counter-item .counter-circle h2 {
    font-size: 20px;
    width: 80px;
    height: 80px;
  }

  .potential-counter-content {
    width: calc(100% - 104px);
  }

  .potential-counter-content h3 {
    font-size: 18px;
  }

  .potential-body-content h3 {
    font-size: 18px;
  }

  .pricing-box {
    padding: 20px;
  }

  .pricing-box-content {
    width: 100%;
    border-right: none;
    padding-right: 0px;
    margin-right: 00px;
    margin-bottom: 20px;
  }

  .pricing-title h2 {
    font-size: 30px;
  }

  .pricing-title h2 sup {
    font-size: 20px;
    top: -0.3em;
  }

  .pricing-btn {
    margin-top: 10px;
  }

  .pricing-list {
    width: 100%;
  }

  .pricing-list ul {
    gap: 10px;
  }

  .pricing-list ul li {
    width: calc(50% - 5px);
    padding-left: 20px;
    font-size: 14px;
  }

  .pricing-list ul li::before {
    font-size: 16px;
  }

  .pricing-benefit-list {
    margin-top: 20px;
  }

  .pricing-benefit-list ul {
    gap: 15px;
  }

  .pricing-benefit-list ul li {
    width: calc(50% - 7.5px);
    font-size: 12px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .expertise-list {
    max-width: 100%;
    gap: 20px 10px;
  }

  .expertise-item:first-child {
    margin: 0;
  }

  .expertise-image img {
    max-width: 40px;
  }

  .expertise-content {
    padding: 0 20px 0 10px;
  }

  .intro-video .section-title {
    margin-bottom: 30px;
  }

  .video-play-button {
    justify-content: left;
  }

  .intro-video-list ul li {
    width: 100%;
  }

  .intro-video-list ul li:after {
    top: 3px;
    font-size: 18px;
  }

  .how-work-item .icon-box {
    height: 60px;
    width: 60px;
  }

  .how-work-item .icon-box img {
    max-width: 30px;
  }

  .how-work-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .scrolling-ticker-box {
    --gap: 20px;
  }

  .scrolling-content span {
    font-size: 50px;
    -webkit-text-stroke: 3px transparent;
  }

  .scrolling-content span img {
    max-width: 40px;
    margin-right: 20px;
  }

  .company-growth-image img {
    aspect-ratio: 1 / 0.87;
  }

  .company-growth-item {
    width: 100%;
  }

  .company-growth-item h2 {
    font-size: 28px;
  }

  .company-growth-item h3 {
    font-size: 18px;
  }

  .faqs-cta-box {
    padding: 20px;
  }

  .faqs-cta-content h3 {
    font-size: 18px;
  }

  .our-faq-section .accordion-header .accordion-button {
    font-size: 16px;
  }

  .our-faq-section .accordion-item .accordion-body {
    padding: 15px;
  }

  .our-faq-section .accordion-item .accordion-body p {
    font-size: 14px;
  }

  .our-faq-section .accordion-item .accordion-button::after,
  .our-faq-section .accordion-item .accordion-button.collapsed::after {
    width: 18px;
    height: 18px;
  }

  .testimonial-slider-content,
  .testimonial-slider-image {
    width: 100%;
  }

  .our-testimonial-content .section-title {
    padding-bottom: 30px;
  }

  .testimonial-slider-image img {
    aspect-ratio: 1 / 1.12;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .author-content h3 {
    font-size: 18px;
  }

  .testimonial-rating-item {
    width: 100%;
  }

  .testimonial-rating-item .icon-box img {
    max-width: 150px;
    max-height: 30px;
  }

  .blog-item {
    display: block;
  }

  .blog-item .blog-featured-image {
    width: 100%;
    margin-bottom: 15px;
  }

  .blog-item-body {
    width: 100%;
    margin-left: 0px;
  }

  .blog-item-content h2 {
    font-size: 18px;
  }

  .footer-contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-contact-info p span {
    font-size: 18px;
  }

  .footer-social-links {
    margin: 30px 0;
  }

  .footer-copyright {
    padding: 15px 0;
    margin-top: 30px;
  }

  .footer-menu {
    margin-bottom: 10px;
  }

  .footer-menu ul,
  .footer-copyright-text {
    text-align: left;
  }

  .page-header-box h1 {
    font-size: 40px;
  }

  .mission-vision-item {
    border-bottom: 1px solid var(--divider-color);
  }

  .mission-vision-list .col-12:last-child .mission-vision-item {
    border-bottom: none;
  }

  .mission-vision-list .col-md-6:last-child .mission-vision-item {
    border-bottom: none;
  }

  .mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
    padding: 0 0 30px 0;
    margin-bottom: 30px;
  }

  .mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
    padding-left: 0;
    padding: 0 0 30px 0;
    margin-bottom: 30px;
  }

  .mission-vision-item:after {
    display: none;
  }

  .mission-vision-item .icon-box {
    margin-bottom: 15px;
  }

  .mission-vision-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mission-vision-item.our-value-item .icon-box {
    margin-right: 0px;
  }

  .mission-vision-item.our-value-item {
    display: block;
    border-top: none;
    padding-top: 0px;
  }

  .our-partners .contact-circle img {
    max-width: 100px;
  }

  .our-partners .company-logo {
    padding: 15px 20px;
  }

  .company-experience-item {
    width: 100%;
  }

  .company-experience-item h2 {
    font-size: 28px;
  }

  .company-experience-item h3 {
    font-size: 18px;
  }

  .why-choose-us-img-1 {
    width: 250px;
  }

  .why-choose-us-img-2 {
    width: 220px;
  }

  .why-choose-contact-circle img {
    max-width: 100px;
  }

  .why-choose-contact-circle {
    top: 20px;
    left: 0;
  }

  .team-image {
    margin-bottom: 15px;
  }

  .team-member-item:hover .team-social-icon {
    bottom: 20px;
  }

  .page-services .service-item {
    padding: 20px;
  }

  .service-catagery-list h3 {
    font-size: 18px;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .service-entry h2 {
    font-size: 28px;
  }

  .service-entry ul li {
    margin-bottom: 15px;
  }

  .business-planing-img {
    width: 100%;
  }

  .business-planing-img img {
    aspect-ratio: 1 / 0.72;
  }

  .post-image figure,
  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    padding: 70px 20px 20px 20px;
  }

  .post-entry h2 {
    font-size: 28px;
  }

  .tag-links {
    font-size: 20px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.2;
  }

  .team-member-info {
    margin-bottom: 30px;
  }

  .team-info-header {
    margin-bottom: 15px;
  }

  .team-info-header h2 {
    font-size: 28px;
  }

  .team-info-body {
    margin-bottom: 20px;
  }

  .team-info-list ul li span {
    font-size: 18px;
    width: 32%;
  }

  .team-member-experience {
    margin-bottom: 30px;
  }

  .page-pricing .pricing-box .pricing-box-content {
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
  }

  .page-pricing .pricing-box {
    padding: 20px;
  }

  .page-pricing .pricing-benefit-list ul {
    gap: 10px 15px;
  }

  .client-testimonial-item {
    display: block;
  }

  .client-testimonial-author {
    width: 100%;
    margin-bottom: 20px;
  }

  .client-author-content h3 {
    font-size: 18px;
  }

  .client-testimonial-content {
    width: 100%;
    background-size: 40px auto;
    padding: 0 0 0 45px;
  }

  .page-faq-accordion {
    margin-bottom: 30px;
  }

  .contact-us-form {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .contact-us-title {
    margin-bottom: 20px;
  }

  .contact-info-contant h3 {
    font-size: 18px;
  }

  .contact-info-title h3 {
    font-size: 18px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  .booking-timing-title h3 {
    font-size: 18px;
  }

  .appointment-form {
    padding: 20px;
  }

  .appointment-form p {
    margin-bottom: 20px;
  }

  .appointment-form form .btn-default {
    padding: 15px;
    margin-top: 10px;
  }
}

.img-invert {
  filter: invert() !important;
}
.h1-size {
  font-weight: 700 !important;
  line-height: 1.1em !important;
  margin-bottom: 0 !important;
}
.timer {
  height: 80px;
  width: 100px;
  background-color: black;
  border-radius: 5px;
  display: grid;
  color: white;
  justify-content: center;
  align-items: center;
}
.timer-header {
  display: flex;
  gap: 10px;
}
.position-5 {
  position: relative;
  top: 9px;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (min-width: 1500px) and (max-width: 1600px) {
  .break-md {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-s-b-20 {
    position: relative;
    bottom: 60%;
  }
  .p-sm-0 {
    padding-top: 0px !important;
  }
  .p-sm-00 {
    padding-top: 0px !important;
  }
  .d-sm-nonee {
    display: none !important;
  }
  .title-section {
    margin: 0 0 !important;
  }
  .hexagon-container {
    padding-top: 20px !important;
    height: 126px !important;
  }
  .h1-size,
  .h1-size-1 {
    text-align: center !important;
    font-size: 24px !important;
  }
  .mt-mb-40 {
    margin-bottom: 50px !important;
    margin-top: 20px !important;
  }
  /* .stat-number {
    font-size: 25px !important;
  } */
  .how-we-work,
  .page-pricing {
    padding: 0 0 !important;
    padding-top: 40px !important;
  }
  .sm-left {
    text-align: left !important;
  }
  .event-attendees-section {
    padding-bottom: 0px !important;
  }
  /* .trusted-partners {
		padding:  0 0 !important;
	} */
  .timer-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .event-title {
    font-size: 31px !important;
    text-align: left !important;
  }
  .event-subtitle,
  .event-dates,
  .about-us-footer {
    text-align: left !important;
  }
  .justify-content-center {
    text-align: left !important;
  }
  .event-dates {
    margin-bottom: 0px !important;
  }
  .logo-left {
    height: 50px !important;
  }
  .p-sm-10 {
    padding-top: 10px;
  }
  .faq-accordion {
    margin-bottom: 50px !important;
  }
  /* .p-sm-50 {
		margin-top: 50px !important;
	} */

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .register-btn {
    text-align: left !important;
    margin-top: 30px !important;
  }
  .row .bottom-row {
    margin-bottom: 0px !important;
  }

  .trusted-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-pricing .pricing-box {
    margin-bottom: 40px !important;
  }

  .scrolling-ticker.work-ticker {
    margin-bottom: 40px !important;
    margin-top: 40px !important;
  }
  .bottom-row {
    margin-bottom: 0px !important;
  }
  .headline {
    font-size: 34px !important;
  }
  .info-text {
    margin-bottom: 0px !important;
  }
  .ull-01 li {
    margin-bottom: 0px !important;
  }
  .mt-sm-00 {
    margin-top: 40px !important;
  }
  .mmb-sm-20 {
    margin-bottom: 25px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mt-sm-margin-20 {
    margin-top: 10px !important;
    margin-bottom: 20px;
  }
  .nav-arrow,
  .md-sm-0 {
    display: none;
  }
  .swiper-container {
    height: 500px !important;
  }
  .caption {
    text-align: left !important;
  }
  .info-box {
    margin-left: 20px !important;
    position: absolute;
    right: unset !important;
  }
  .trusted-partners-1 {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .about-text {
    font-size: 26px !important;
    line-height: 33.48px !important;
    padding-top: 40px !important;
  }
  .about-text-1 {
    font-size: 26px !important;
    line-height: 33.48px !important;
  }
  .wrap-grid-box {
    display: unset !important;
  }
  .sm-center {
    display: flex !important;
    justify-content: center !important;
  }
  .box-tag {
    display: flex !important;
    justify-content: center !important;
    align-items: center; /* Center content vertically */
    width: 100%; /* Ensure the width is 100% for proper centering */
  }
  .sm-text-center {
    text-align: center;
  }
  .p-sm-0-50-0 {
    padding: 0 0 !important;
  }
  .pl-pr-sm-30 {
    padding: 0 30px !important;
  }
  .sm-center-btn {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .img-sm-100 {
    height: 150px !important;
    width: 150px !important;
  }
  .pt-sm-0 {
    padding-top: 30px !important;
  }
  .register-now-btn {
    display: none !important;
  }
  .contact-center,
  .contact-right,
  .contact-left {
    text-align: center !important;
  }
  .ps-banner {
    position: relative;
    bottom: 20px;
  }
  .fs-sm-15 {
    font-size: 15px !important;
  }
  .fs-sm-17 {
    font-size: 17px !important;
  }
  .bg-black-border {
    margin: 0 0 !important;
    border-radius: 0px !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .bg-layout-section {
    margin-left: 0px !important;
    margin-right: 0px !important;
    border-radius: 0px 0px 0px 0px !important;
    padding: 70px 0 !important;
  }
  .d-sm-grid-1 {
    display: grid !important;
  }
  .f-sm-20 {
    font-size: 20px !important;
  }
  .box-tag {
    font-size: 15px !important;
  }
  .stat-label {
    font-size: 15px !important;
  }
  .cf {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .heading-section {
    margin-bottom: 0px !important;
  }
  .sidebar-footer {
    margin-top: 0px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .mb-sm-124 {
    margin-bottom: 100px !important;
  }
  .contact-container {
    padding: 30px 20px !important;
  }
  .g-sm-0 {
    gap: 30px !important;
  }
  .img-fluid-1 {
    width: 120px !important;
    height: 120px !important;
  }
  .service-item-1 {
    margin-bottom: 20px !important;
    padding-bottom: 0px !important;
  }
  /* .heading-section {
    margin: 10px !important;
  } */
  .service-description {
    margin-bottom: 0px !important;
  }
  .navbar-toggler-icon {
    position: relative !important;
    top: 0px !important;
  }

  .second-line {
    margin-top: 0px !important;
  }
  .fair-text {
    position: relative !important;
    bottom: 10px !important;
  }
  #myVideoDesktop {
    height: auto !important;
  }
  .break-none {
    display: none !important;
  }
  .pt-sm-zero {
    padding-top: 0px !important;
  }
  .mb-sm-10 {
    margin-bottom: 20px !important;
  }
  .feature-banner {
    border: unset !important;
  }
  .feature-box.style-row {
    display: grid !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .trusted-container {
    overflow: hidden;
    padding: 0 0 !important;
  }
  .superscript {
    position: relative;
    top: -20px !important;
  }
  .f-sm-25 {
    font-size: 28px !important;
    padding-bottom: 20px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .logo-sm {
    height: 60px !important;
    position: relative;
    top: 20px;
  }
  .ps-t-10 {
    position: relative !important;
    bottom: 30px !important;
  }
  .f-sm-16 {
    font-size: 16px !important;
  }
  .f-sm-20 {
    font-size: 20px !important;
  }
  .f-sm-35 {
    font-size: 35px !important;
  }
  .btn-default-1 {
    margin: 0 10px !important;
    font-size: 25px !important;
    padding: 22px 35px !important;
    margin-bottom: 15px !important;
  }
  .pt-sm-000 {
    padding-top: 0px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .p-sm-220 .col-lg-4-1 {
    margin-bottom: 20px !important;
  }
  .p-00 {
    padding: 0px !important;
  }
  .d-sm-grid-1 {
    display: grid !important;
    padding-top: 20px !important;
  }
  .stat-card-11 {
    padding: 26px !important;
  }
  .agt-ab-c-item-2 h3 {
    font-size: 35px !important;
  }
  .agt-ab-c-item-2 p {
    font-size: 16px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .mt-sm-20 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .pt-sm-00 {
    padding-top: 0px !important;
  }
  .pt-sm-20 {
    padding-top: 30px !important;
    padding-bottom: 0px !important;
  }
  .about-us {
    padding: 0px 0px !important;
  }
  .pb-sm-10 {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
  }
  /* .offer-banner {
    display: none !important;
  } */
  .card-style {
    height: auto !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .p-0 {
    padding: 15px 15px !important;
  }
  .main-footer {
    margin-bottom: 0px !important;
  }

  .content-box {
    padding: 10px 0 !important;
  }
  .header-container {
    padding-top: 30px !important;
    padding-bottom: 0px !important;
  }
  .brand-underline {
    position: absolute;
    top: 30px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 240px;
    margin-bottom: 20px !important;
  }

  .main-title {
    font-size: 25px !important;
    margin-top: 20px !important;
  }
  .organizer-name {
    margin-bottom: 0px !important;
  }
  .date-display {
    margin: 0px !important;
  }
  .free-tag {
    font-size: 20px !important;
  }
  .original-price {
    font-size: 20px !important;
  }
  .btn-sm-01 {
    padding: 10px 10px !important;
    font-size: 11px !important;
  }
  .pt-sm-50-0 {
    padding-top: 0px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }
  .offer-banner-mobile {
    padding: 0px 0 !important;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 65px !important;
    left: 0 !important;
    width: 100% !important;
    padding-top: 20px !important;
  }
  .pt-sm-50 {
    padding-top: 70px !important;
  }
  .p-sm-0 {
    padding: 0 0px !important;
  }
  .timer-label {
    font-size: 12px !important;
  }
  /* .register-btn,
  .btn-default {
    color: black;
    font-weight: 600;
    font-size: 15px !important;
    padding: 10px 10px !important;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px !important;
    background: linear-gradient(45deg, #019297, rgb(170, 215, 49), #a1e7ff);
    background-size: 300% 300%;
  } */
  .about-font {
    font-size: 13px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-weight: 500 !important;
  }
  p {
    font-size: 15px !important;
  }
  .intro-video {
    padding: 60px 0px !important;
  }
  .timer-value-1 {
    font-size: 25px !important;
    font-weight: 400 !important;
  }
  .timer-box-1 {
    background-color: black;
    color: white !important;
    border-radius: 8px;
    padding: 15px 10px !important;
    width: 100px !important;
    height: 90px !important;
    margin: 0 5px;
    min-width: 80px;
    text-align: center;
  }
  .about-us-list ul li {
    padding-left: 0px !important;
  }
  .position-0 {
    /* position: relative;
    height: 100px !important;
    right: 0px !important;
    padding-bottom: 40px; */
    display: none !important;
  }
  .text-left-sm {
    display: flex !important;
    justify-content: left !important;
  }
  .logo-container {
    display: flex;
    justify-content: space-between !important;
    padding: 0 20px !important;
  }
  .feature-banner {
    padding: 0 20px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }

  /* .slider-container {
    height: 350px !important;
  } */
  .logo-container h2 {
    font-size: 17px !important;
    position: relative;
    top: 20px;
  }
  .mt-sm-50-0 {
    margin-top: 0px !important;
  }

  .pb-sm-00 {
    padding-bottom: 0px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .swiper-container {
    height: unset !important;
    padding-bottom: 0px !important;
  }
  .p-sm-20 {
    padding: 0 40px !important;
  }
  .ptb-sm-20 {
    padding: 30px 0 !important;
  }
  .p-sm-220 {
    padding: 0 20px !important;
  }
  .p-s-l-0 {
    position: relative;
    left: 0% !important;
  }
  .btn-sm-style {
    padding: 13px 92px !important;
    margin-bottom: 16px !important;
    font-size: 16px !important;
  }
  .img-sm {
    height: 370px !important;
  }
  .mx-wd-100 {
    max-width: 100% !important;
    margin: 0 !important;
  }
  .br-sm-none {
    display: none !important;
  }
  .pl-pr-sm-10 {
    padding: 0 10px !important;
  }
  .pb-sm-40 {
    padding-bottom: 50px !important;
  }
}

.text-para {
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  color: #6c757d !important;
  font-weight: unset !important;
}

.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 15px;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-left: 50px;
}

.hero-title {
  font-size: 4.5rem;

  line-height: 1;
  text-transform: uppercase;
  color: #000;
  max-width: 600px;
}

.hero-text {
  max-width: 350px;
  margin-top: 50px;
}

.read-more {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.read-more .arrow {
  margin-left: 10px;
  color: #ff6600;
}

.toggle-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 15px;
}

.cart-icon {
  color: #ff3366;
  font-size: 1.5rem;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
}

.slider-control {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
}

.image-caption {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: white;
  font-size: 0.8rem;
  max-width: 300px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .text-center {
    text-align: center !important;
  }
}

.title-section {
  text-align: center;
  margin: 3rem 0;
}

.title-section h1 {
  font-size: 42px;
  font-weight: bold;
}

.title-section .organizer-text {
  color: #009da9;
}

.stat-card {
  background-color: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  margin-bottom: 30px; /* Increased bottom margin */
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffffff;
}

.stat-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: #333;
}

.icon-circle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #32c9c1;
  background-color: transparent;
  overflow: visible;
}

.icon-circle i {
  color: #32c9c1;
  font-size: 1.2rem;
  display: flex; /* Make sure icon displays */
  align-items: center;
  justify-content: center;
}

/* Additional specific style to ensure icons display */
.fa-user,
.fa-calendar-alt,
.fa-industry {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
}

/* .register-btn {
  background-color: #32c9c1;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 3rem auto; 
  display: block;
} */
.register-btn,
.btn-default {
  padding: 15px 29px;
  border-radius: 99px;
  background: linear-gradient(248deg, #00a3a5 0%, #43d570 50%, #31d75c 100%);
  font-weight: 400 !important;
  border: unset !important;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.btn-default-1 {
  padding: 15px 36px;
  border-radius: 99px;
  background: linear-gradient(248deg, #00a3a5 0%, #43d570 50%, #31d75c 100%);
  font-weight: 400 !important;
  border: unset !important;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.text-default {
  color: #3cd668 !important ;
  font-weight: 800 !important;
}

/* Gradient Animation */
@keyframes gradientAnimation {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

/* Add specific spacing for the bottom row */
.bottom-row {
  margin-top: 20px;
  padding-bottom: 30px;
}

.event-attendees-section {
  background-color: #f2f1ed;
  padding: 150px 0;
}

.attendees-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.attendees-header {
  text-align: center;
  margin-bottom: 40px;
}

.attendees-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

.highlight-text {
  color: #009da9;
  display: inline-block;
}

.attendees-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.attendee-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.attendee-card {
  border-radius: 10px;
  /* padding: 25px 20px; */
  padding: 63px 23px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  min-height: 150px;
}

.large-card {
  flex: 2;
  padding: 30px 25px;
}

.government-card {
  flex: 1;
}

.diplomat-card {
  flex: 1;
}

.attendee-icon {
  margin-bottom: 15px;
}

.attendee-icon img {
  height: 85px;
  width: auto;
}

.attendee-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

/* Background colors */
.orange-bg {
  background-color: #32c9c1;
  color: white;
}

.lime-bg {
  background-color: var(--dark-color);
  color: #333;
}

.gray-bg {
  background-color: #5a6570;
  color: white;
}

.blue-bg {
  background-color: #29a8e0;
  color: white;
}

.white-bg {
  background-color: white;
  color: #333;
}

.register-section {
  text-align: center;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .attendee-row {
    flex-wrap: wrap;
  }

  .attendee-card,
  .large-card,
  .government-card,
  .diplomat-card {
    min-width: 45%;
  }
}

@media (max-width: 768px) {
  .attendee-card,
  .large-card,
  .government-card,
  .diplomat-card {
    min-width: 100%;
  }
}
.p-20 {
  padding-top: 20px;
}
/* Product Slider Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0 0 !important;
  }
}

/* .section-title h2 {
margin: 0;
font-size: 28px;
font-weight: 600;
} */

.see-all {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.see-all:hover {
  color: #000;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-actions button:hover {
  background: #fff;
  transform: scale(1.1);
}

.product-info {
  padding: 15px;
  background: #fff;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.product-brand {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--dark-color);
  color: #fff;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image {
    height: 250px;
  }

  .section-title h2 {
    font-size: 24px !important;
    text-align: center;
  }
}
.trusted-partners {
  padding-top: 150px;
  background-color: white;
}

.section-title p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #6c757d;
}

.logo-item {
  height: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.trusted-container {
  position: relative;
  padding: 0 30px;
}
.px-11 {
  padding-right: 0.1rem;
  padding-left: 0.1rem;
}
@media (max-width: 767px) {
  .trusted-partners {
    padding: 0 0;
  }
  .px-11 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .logo-item {
    height: 80px;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .logo-item img {
    max-height: 50px;
  }
}
.banner-container {
  padding: 30px 15px;
  position: relative;
  overflow: hidden;
}

.curved-line {
  position: absolute;
  border: 2px solid var(--dark-color);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  opacity: 0.3;
}

.curved-line-left {
  top: 40%;
  left: -150px;
}

.curved-line-right {
  bottom: -150px;
  right: -150px;
}

.event-title {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 5px;
}

.event-subtitle {
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.event-dates {
  color: var(--dark-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.tagline {
  color: #333;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto 15px auto;
}

.visitors-count {
  color: #333;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.logo-left {
  height: 70px;
  margin-bottom: 15px;
}

.logo-right {
  height: 70px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .event-title {
    font-size: 2.5rem;
  }
  .event-dates {
    font-size: 1.3rem;
  }
  .tagline,
  .visitors-count {
    font-size: 1.2rem;
  }
}
.stats-section {
  background-color: #2c6a39;
  color: white;
  padding: 30px 0;
}
.stat-item {
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}
.stat-unit {
  font-size: 1rem;
  vertical-align: top;
  font-weight: 400;
}
.stat-description {
  font-size: 0.9rem;
  opacity: 0.7;
}
.bg-default {
  color: #009da9 !important;
}

p {
  color: #131313 !important;
  font-weight: 500 !important;
  font-size: 19px !important;
  /* font-family: "ClashGrotesk-Variable" !important; */
}
.mb-xl-0 {
  margin-bottom: 4px !important;
}

.about-font {
  font-size: 17px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 400;
}
.h1-size-1 {
  font-size: 48px;
  font-weight: 700 !important;
  line-height: 1.1em !important;
  margin-bottom: 0 !important;
}
.section-faqs .heading-section {
  margin-bottom: 52px;
}

.heading-section {
  margin-bottom: 40px;
  position: relative;
}

.center,
.text-center {
  text-align: center;
}

.heading-section.center .sub-title {
  margin-left: auto;
  margin-right: auto;
}

.heading-section .sub-title {
  margin-bottom: 19px;
}

.box-tag {
  position: relative;
  display: flex;
  gap: 10px;
  width: max-content;
  font-weight: 500;
  font-size: 18px;
  line-height: 17.64px;
  padding: 14px 35px;
  background-color: #000;
  border-radius: 10px;
  border: 1px solid transparent;
  z-index: 2;
}

.box-tag .eff {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100px;
  z-index: 4;
}

/* Apply Playfair Display only to the "Got questions?" text */
.heading-section .heading .animationtext {
  font-weight: 500 !important;
  color: black !important;
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  /* .brand-underline {
    position: absolute;
    top: 38px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 166px !important;
  }
  .second-line,
  .neo-brand,
  .fair-text {
    font-size: 32px !important;
  }
  .fair-text {
    position: relative !important;
    bottom: 5px !important;
  } */
  .logo-neo {
    height: 90px !important;
  }
}
@media only screen and (max-width: 1200px) {
  .feature-box {
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
}
.lazyloaded {
  border-radius: 10px !important;
}
.video-swiper .swiper-slide {
  transition: transform 0.3s ease;
  overflow: hidden;
}

.bg-light-1 {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #3c3c3c !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
}

.bg-light-1 .bg-image {
  position: absolute;
  left: 300px;
  top: 167px;
  width: 108%;
  height: 95%;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
  object-fit: contain;
  transform: none;
}

/* Ensures content stays above the image */
.testimonial-content {
  position: relative;
  z-index: 1; /* Keeps the content above the image */
}

.navbar-toggler-icon {
  position: relative;
  bottom: 40px;
}
.feature-btn {
  position: relative;
  bottom: 40px !important;
}
@media (min-width: 610px) and (max-width: 991px) {
  .navbar-toggler-icon {
    position: relative;
    bottom: 0px !important;
  }
  .neo-brand {
    font-size: 44px !important;
  }
  .brand-underline {
    position: absolute !important;
    top: 47px !important;
  }
  .fair-text {
    font-size: 44px !important;
  }
  .second-line {
    margin-top: 20px;
    font-size: 44px !important;
    font-weight: 400;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1366px) {
  .navbar-toggler-icon {
    position: relative;
    bottom: 40px !important;
  }
  .neo-brand {
    font-size: 40px !important;
  }
  .brand-underline {
    position: absolute !important;
    top: 47px !important;
  }
  .fair-text {
    font-size: 40px !important;
  }
  .second-line {
    margin-top: 20px;
    font-size: 40px !important;
    font-weight: 400;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 6px !important;
    margin: 0 5px;
    font-weight: 500;
    white-space: nowrap;
    font-size: 16px !important;
  }
  .scrolled-up .left-links {
    position: absolute;
    display: flex;
    left: 5% !important ;
  }
}
@media (min-width: 1367px) and (max-width: 1387px) {
  .neo-brand {
    font-size: 58px !important;
  }
}

@media screen and (max-width: 1536px) {
  .recom-150-sm {
    margin: 0 0 !important;
    border-radius: unset !important;
  }
  .scrolled-up .left-links {
    position: absolute;
    display: flex;
    left: 3% !important;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.slider-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  height: 500px;
  width: fit-content;
  animation: slide 20s linear infinite;
}

.slide {
  width: 25vw;
  height: 500px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
}

.slide-content h2 {
  font-size: 1.5rem;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .slide {
    width: 50vw;
    height: 300px;
  }

  .slider,
  .slider-container {
    height: 300px;
  }
}
.navbar {
  padding: 62px 0;
  transition: transform 0.4s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

/* Styles applied only when user scrolls up */
.navbar.scrolled-up {
  background-color: rgba(0, 0, 0, 0.6); /* transparent black bg */
  backdrop-filter: blur(8px); /* soft blur effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 5;
}

.logo {
  height: 110px;
  transition: all 0.3s;
}

/* Navbar links styling */
.navbar-links {
  display: none; /* Hidden by default */
  align-items: center;
  transition: all 0.3s;
}

.left-links {
  margin-right: auto;
  padding-left: 15px;
}

.right-links {
  margin-left: auto;
  padding-right: 15px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  margin: 0 5px;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap; /* Prevent text wrapping */
}

.nav-link:hover {
  color: #009da9;
}

/* Ensure that links are properly positioned relative to logo */
.scrolled-up .left-links {
  position: absolute;
  display: flex;
  left: 12%;
}

.scrolled-up .right-links {
  position: absolute;
  right: 19%; /* Adjust this value to position links closer to logo */
  display: flex;
}

/* Important: Force the navbar-toggler to always display */
.navbar-toggler {
  display: flex !important; /* Override Bootstrap's display:none on larger screens */
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  background-color: var(--light-gray);
  margin-left: 15px; /* Space from the right links */
}

.navbar-toggler:hover {
  color: #009da9 !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Media queries for responsive behavior */
@media (max-width: 991px) {
  .navbar-container {
    justify-content: space-between;
  }

  .navbar-brand {
    position: relative;
    left: 0;
    transform: none;
  }

  .navbar-toggler {
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .navbar-links {
      display: none !important; /* Force hide on mobile */
    }

    /* Override any display:flex that might be applied when scrolled */
    .scrolled-up .navbar-links,
    .scrolled-up .left-links,
    .scrolled-up .right-links {
      display: none !important;
    }
  }
  /* For mobile, links will still show when scrolled up */
  .scrolled-up .navbar-links {
    display: flex;
    position: absolute;
    top: 90px; /* Position below the compact navbar */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
  }

  .scrolled-up .left-links,
  .scrolled-up .right-links {
    padding: 0 10px;
    margin: 0;
  }
}
/* Important: Force the navbar-toggler to always display */
.navbar-toggler {
  display: flex !important; /* Override Bootstrap's display:none on larger screens */
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  background-color: var(--light-gray);
  margin-left: auto; /* Push to right */
}

.navbar-toggler:hover {
  color: #009da9 !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#sidebar {
  position: fixed;
  width: 430px;
  height: 100%;
  top: 0;
  right: -430px;
  background-color: black;
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  padding: 30px;
  color: var(--text-color);
  background-image: linear-gradient(to bottom, #1a1a1a, #000000);
  border-left: 2px solid var(--primary-color);
}

#sidebar.active {
  right: 0;
}

.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Enhanced Sidebar Header */
.sidebar-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.8rem;
  color: #009da9;
  text-shadow: 0 0 10px rgba(0, 157, 169, 0.5);
  letter-spacing: 1px;
}

.close-btn {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: #009da9;
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background-color: rgba(0, 157, 169, 0.2);
  transform: rotate(90deg);
}
/* Add these CSS styles to your existing CSS file */

/* Dropdown styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  margin: 0 5px;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  border-top: 5px solid white;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transition: transform 0.3s;
}

.dropdown-toggle:hover {
  color: #009da9;
}

.dropdown-toggle:hover::after {
  border-top-color: #009da9;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  padding: 10px 0;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: rgba(0, 157, 169, 0.1);
  color: #009da9;
}

/* Sidebar styling additions */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#closeSidebar {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

#closeSidebar:hover {
  color: #009da9;
}

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.sidebar-content {
  padding: 10px 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.sidebar-link {
  padding: 8px 15px;
  display: block;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  margin: 5px 0;
}

.sidebar-link:hover {
  color: #009da9;
}
/* Enhanced Sidebar Menu */
.sidebar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 8px;
}

.sidebar-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  transition: all 0.3s;
  border-bottom: 1px solid #373232;
}

.sidebar-menu li a:hover {
  background-color: var(--hover-bg);
  color: #009da9;
  transform: translateX(5px);
}

.sidebar-menu li a i.menu-icon {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  color: #009da9;
}

/* New Accordion Styles */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-radius: 0 0 8px 8px;
  margin-top: 2px;
  margin-bottom: 10px;
}

.accordion-content.show {
  max-height: 500px; /* Adjust as needed */
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-content ul li a {
  padding: 10px 15px 10px 50px;
  display: block;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.accordion-content ul li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-color);
  color: var(--accent-color);
}

.toggle-btn {
  background: none;
  border: none;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn:hover {
  color: var(--accent-color);
}

.toggle-btn i.rotate {
  transform: rotate(135deg);
}

/* Enhanced Sidebar Footer */
.sidebar-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.sidebar-footer p {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
    -4px -4px 8px rgba(50, 50, 50, 0.1);
  transition: all 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 157, 169, 0.4);
}

.social-links a i {
  color: #009da9;
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover i {
  color: var(--accent-color);
}

/* Featured Content Section */
.featured-content {
  margin-top: 30px;
  background: linear-gradient(
    145deg,
    rgba(0, 157, 169, 0.1),
    rgba(0, 118, 169, 0.1)
  );
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 157, 169, 0.3);
}

.featured-content h4 {
  color: #009da9;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.feature-btn {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(248deg, #00a3a5 0%, #43d570 50%, #31d75c 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.feature-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 157, 169, 0.4);
}

/* Quick Stats Section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-box {
  background: linear-gradient(145deg, #101010, #1e1e1e);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
    -4px -4px 8px rgba(50, 50, 50, 0.1);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 157, 169, 0.3);
  border-color: rgba(0, 157, 169, 0.3);
}

.stat-box h5 {
  margin: 0 0 8px 0;
  color: #009da9 !;
  font-size: 14px;
  font-weight: 500;
}

.stat-box p {
  margin: 0;
  color: white !important;
  font-size: 22px;
  font-weight: 600;
}

/* Open button for demo */
#openSidebar {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Demo content */
.demo-content {
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}

/* Main content */
.main-content {
  padding: 40px 0;
}

h1 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-color);
}

p {
  line-height: 1.7;
  font-size: 1.05rem;
}

.demo-box {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Debugging outline - uncomment to visualize layout */
/* 
        .navbar-container {
            outline: 1px solid red;
        }
        .navbar-brand {
            outline: 1px solid blue;
        }
        .navbar-toggler {
            outline: 1px solid green;
        }
        */

/* Responsive adjustments */
@media (max-width: 576px) {
  #sidebar {
    width: 85%;
    padding: 20px;
  }

  .sidebar-header h3 {
    font-size: 1.3rem;
  }
}

.feature-icon {
  flex-shrink: 0;
  margin-right: 15px;
  color: #3cd668;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
.fw-bold {
  font-weight: 500 !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 29px;
  left: 0;
  width: 100%;
  padding-top: 20px !important;
}
.section-title h1 span,
.section-title h2 span {
  font-weight: 700 !important;
  /* background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%); */
  color: #009da9 !important;
  /* background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.h1-size {
  font-size: 57px;
  font-weight: 700 !important;
  line-height: 1.1em !important;
  margin-bottom: 0 !important;
}
.intro-video {
  position: relative;
  background-image: url("/images/hero-bg.jpg") no-repeat center center/cover !important; /* Set your background image */
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.intro-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7);  */
  background: rgb(31 30 30 / 70%);
}

.intro-video h1 {
  position: relative;
  color: #fff; /* Bright text */
  font-size: 57px;
  font-weight: bold;
  z-index: 2;
}
.pricing-title {
  font-weight: 800 !important;
  font-size: 20px !important;
  color: #aad731 !important;
  margin-bottom: 15px !important;
}
.elementor-container {
  max-width: 1244px;
}

.elementor-container {
  max-width: 1140px;
}
.elementor-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.trusted-container {
  overflow: hidden;
  padding: 20px 0;
}

.logo-slider .swiper-slide {
  width: auto; /* Allows automatic width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider img {
  height: 80px; /* Adjust as needed */
  width: auto;
  padding: 10px;
}

.project-card-content {
  margin-bottom: 20px;
  transition: 0.4s;
}

.project-card:hover .project-card-details {
  background-color: rgb(5, 169, 179);
}

.project-card:hover .project-card-icon {
  background-color: rgb(5, 169, 179);
  border-color: white;
}

.project-card:hover .project-card-icon img {
  filter: brightness(99);
  transform: rotateY(180deg);
}

.project-card-icon {
  border: 7px solid #d4cbb9;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: #fff;
  transition: 0.4s;
  transform: translate(-50%, -117px);
  margin: 0 auto;
}

.project-card:hover .box-title a,
.project-card:hover .project-card-content,
.project-card:hover .th-btn.style9 {
  color: white;
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
}

.project-card-details {
  margin: 0 15px;
  padding: 80px 30px 30px;
  filter: drop-shadow(0px 8px 10px rgba(7, 36, 95, 0.08));
  background: #fff;
  clip-path: polygon(100% 0, 100% 75%, 75% 100%, 0 100%, 0 0);
  margin-top: -167px;
  transition: 0.4s;
}

.project-card {
  margin-bottom: 30px;
}

.swiper {
  width: 100%;
}
.main-content {
  min-height: 90vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-banner-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
}
.offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.price-section {
  display: flex;
  align-items: center;
}

.price-current {
  font-size: 28px;

  color: #01b3b8;
  font-weight: 700;
  margin-right: 12px;
}

.price-original {
  font-size: 20px;
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
}

.timer-section {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
}

.countdown {
  background-color: rgba(1, 146, 151, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
}

.action-button {
  background: #01b3b8;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(1, 146, 151, 0.3);
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 146, 151, 0.4);
  background: linear-gradient(45deg, #01a5aa, var(--teal));
  color: white;
}

.highlight-glow {
  position: relative;
}

.highlight-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(45deg, black, #01b3b8);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .offer-container {
    justify-content: center;
    gap: 15px;
  }

  .price-section,
  .timer-section {
    margin-bottom: 10px;
  }
  body {
    margin: 0 !important;
  }
}
.main-container {
  position: relative;
}

.content-box {
  padding: 3rem;
  border-radius: 10px;
}

.main-title {
  color: #aad731;

  font-weight: 700;
  font-size: 45px;
  margin-bottom: 0.5rem;
}

.event-description {
  margin-bottom: 1rem;
}

.date-display {
  color: #009da9;
  font-weight: 800;
  font-size: 1.8rem;
  margin: 1rem 0;
}

.tagline {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.organizer-label {
  font-size: 0.9rem;
}

.organizer-name {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Fix close button position */
.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1050;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .modal-dialog {
    max-width: 95%;
  }
}

.header-container {
  color: white;
  background-color: rgba(0, 0, 0, 0); /* Transparent background */
  text-align: center;
}

.header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
}

.second-line {
  font-size: 60px; /* 60px as requested */
  font-weight: 400;
  line-height: 1.2;
}

.neo-brand {
  background: linear-gradient(
    91deg,
    #76f5bc 4.7%,
    #009da9 30.85%,
    #ebeef9 52.07%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 60px; /* 60px as requested */
  display: inline-block;
  line-height: 1.1;
  position: relative;
  margin-right: 15px;
}

.brand-underline {
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 240px;
}

.fair-text {
  font-size: 60px; /* 60px as requested */
  font-weight: 400;
  line-height: 1.2;
}

.highlight-text {
  color: #009da9;
}

/* NEW VIDEO BACKGROUND STYLES */
.container-flui {
  position: relative;
  overflow: hidden;
  /* height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center; */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.9
  ); /* Increased from 0.7 to 0.9 for very dark overlay */
  z-index: 2;
}
/* Ensure content appears above video */
.content-box,
.header-container {
  position: relative;
  z-index: 2;
}

/* Dark overlay to improve text visibility */

/* Register button styles */
.register-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  z-index: 5;
  position: relative;
}

@media (max-width: 600px) {
  .neo-brand {
    font-size: 38px;
    padding-bottom: 22px;
  }
  .fair-text,
  .second-line {
    font-size: 24px;
    position: relative;
    bottom: 19px;
  }
  .brand-underline {
    max-width: 160px;
  }
}

@media (max-width: 375px) {
  .neo-brand {
    font-size: 28px;
    padding-bottom: 20px;
  }
  .fair-text,
  .second-line {
    font-size: 20px !important;
  }
  .brand-underline {
    max-width: 140px;
  }
}

/* Sticky header base */
.header-sticky {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0 !important; /* Force override */
  }

  .logo {
    height: 50px !important; /* Force smaller logo on mobile */
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navbar-brand {
    position: relative;
    left: 0;
    transform: none;
    margin-left: 100px;
  }

  .navbar-toggler {
    margin-right: 15px;
  }

  .navbar-spacer {
    display: none; /* Hide spacer on mobile */
  }
}

.green-gradient-text {
  background: linear-gradient(
    to bottom,
    #4cf176,
    #009da9
  ); /* lighter to original */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Ensure navbar has proper padding */
.navbar {
  padding: 62px 0; /* Default large padding */
  transition: transform 0.4s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, padding 0.3s ease;
}

/* When scrolled up but not at the top, use compact padding */
.navbar.scrolled-up {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 30px 0; /* Reduced padding when scrolled */
}

/* Keep padding consistent across all viewport sizes */
@media (max-width: 991px) {
  .navbar {
    padding: 62px 0; /* Maintain same padding on mobile/tablet */
  }

  .navbar.scrolled-up {
    padding: 30px 0; /* Maintain reduced padding when scrolled on mobile/tablet */
  }
}

.register-now-btn {
  display: none; /* Hidden by default */
  background: linear-gradient(248deg, #00a3a5 0%, #43d570 50%, #31d75c 100%);
  font-weight: 400 !important;
  border: unset !important;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: 15px;
  position: relative;
  bottom: 30px;
}

/* Apply proper positioning for desktop */
@media (min-width: 992px) {
  /* Button is still hidden by default even on desktop - will be shown via JS only when scrolled up */

  /* Apply different positioning when navbar is scrolled */
  .navbar.scrolled-up .register-now-btn {
    bottom: 0px; /* Adjusted position when navbar is compact */
  }

  .navbar:not(.scrolled-up) .register-now-btn {
    bottom: 30px; /* Default position when navbar is full size */
  }

  .navbar-toggler {
    display: none !important;
  }
}

.swiper-container {
  position: relative;
  overflow: hidden;
  height: 700px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.headline-container {
  position: absolute;
  top: -120px; /* Position above the slider */
  left: 10%;
  z-index: 10;
}

.headline {
  font-size: 5rem;
  font-weight: 700 !important;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}

/* The part that will overlap */
.headline-overlap {
  position: relative;
  z-index: 10;
  margin-top: -120px; /* Adjust this to control how much text appears over the image */
}

.info-box {
  position: absolute;
  top: 160px;
  right: 0;
  width: 300px;
  background-color: white;
  padding: 30px;
  z-index: 2;
}

.info-text {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
}

.read-more {
  color: black;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.read-more-arrow {
  color: #009da9;
  margin-left: 8px;
}

.caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  font-size: 11px;
  max-width: 500px;
  text-align: right;
}

.nav-arrows {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 10;
  width: 100%;
}

.nav-arrow {
  background-color: #009da9;
  border-bottom-right-radius: 1px solid black !important;
  border: none;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-arrow:hover {
  background-color: #009da9;
}

.cart-badge {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 1000;
}

.cart-icon {
  background-color: #009da9;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* For the half text above half text overlap effect */
.main-content {
  position: relative;
  margin-top: 150px; /* Space for the first part of the headline */
}
.countdown-container {
  background: white;
}

.timer-box {
  background-color: black;
  color: white !important;
  border-radius: 18px;
  padding: 15px 10px;
  width: 75px;
  margin: 0 5px;
  min-width: 80px;
  text-align: center;
}
.timer-box-1 {
  background-color: black;
  color: white !important;
  border-radius: 18px;
  padding: 15px 10px;
  width: 100px;
  height: 105px;
  margin: 0 5px;
  min-width: 80px;
  text-align: center;
}

.timer-value {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
.timer-value-1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0;
  font-weight: 700 !important;
}
.timer-label {
  font-size: 10px !important;
  color: #adb5bd;
  text-transform: uppercase;
  margin-bottom: 0;
}
.timer-label-1 {
  font-size: 13px !important;
  color: #adb5bd;
  text-transform: uppercase;
  margin-bottom: 0;
}

.free-tag {
  font-size: 48px;
  font-weight: 700;
  color: #009da9;
  line-height: 1;
}

.original-price {
  text-decoration: line-through;
  color: #615b58;
  font-size: 24px;
}

.feature-box .content {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.mb-31 {
  margin-bottom: 31px;
}
.feature-box .content p {
  color: #a0a0a0 !important;
  font-size: 19px !important;
}
.feature-box .content .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 9px;
  color: #009da9 !important;
}
.feature-box .content .sub {
  font-weight: 600;
  font-size: 12px !important;
  line-height: 19px;
  text-align: center;
  color: #3cd668 !important;
}

.animation-none {
  animation-name: none !important;
  background-size: 100% 100% !important;
}
.section-features .heading-section > .img-bg {
  width: 367px;
}

.heading-section > .img-bg {
  position: absolute;
  top: -172px;
  left: -205px;
  z-index: -1;
}
.item-circle-2 {
  animation: rotate1 10s infinite linear;
  opacity: 0.7;
  filter: blur(1px);
}
.section-features .heading-section > .img-bg {
  width: 367px;
}

.heading-section > .img-bg {
  position: absolute;
  top: -172px;
  left: -205px;
  z-index: -1;
}
.item-circle-2 {
  animation: rotate1 10s infinite linear;
  opacity: 0.7;
  filter: blur(1px);
}
.section-features {
  position: relative;
  overflow: hidden;
}
.section-features .img-item {
  position: absolute;
  right: -232px;
  top: 30%;
  width: 640px;
}

.item-circle-2 {
  animation: rotate1 10s infinite linear;
  opacity: 0.7;
  filter: blur(1px);
}
.feature-box:hover {
  border-color: #009da9;
}
.bg-hover:hover {
  border: 1px solid black;
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.feature-box {
  border-radius: 10px;
  background: #292929b2;
  border: 1px solid #3c3c3c;
  backdrop-filter: blur(4px);
  padding-top: 24px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  overflow: hidden;
  transition: all 0.3s linear;
}
.feature-box .content {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.feature-box.style-row {
  display: flex;
  justify-content: center;
  row-gap: 20px;
}
.heading-section.style-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 15px;
}
.section-packed .packed-wrap .box-icon-item:not(:last-child)::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(94, 94, 94, 0) 0%,
    #5e5e5e 50%,
    rgba(94, 94, 94, 0) 100%
  );
  width: 1px;
  height: 112px;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Feature Banner Styles */
.feature-banner {
  border: 1px solid #0f0f11;
  color: black;
  border-radius: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  margin: 10px 15px;
}

.check-icon {
  color: #4ade80;
  margin-right: 12px;
  font-size: 18px;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
}

/* Button Styles */
.btn-sm-style {
  color: black;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 87px;
  border: none;
  border-radius: 5px;
  margin: 0 auto;
  background: unset;
  background-size: 200% 200%;
  position: relative;
  transition: color 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

/* Hover animation */
.btn-sm-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #009da9, #aad731);
  z-index: -1;
  transition: transform 0.5s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}

/* Hover effect */
.btn-sm-style:hover {
  color: white;
}

.btn-sm-style:hover::before {
  transform: scaleX(1);
}

/* Gradient Line */
.line-row2 {
  width: 100%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    90deg,
    rgba(170, 244, 150, 0) 0%,
    #9df095 50%,
    rgba(143, 236, 147, 0) 100%
  );
  margin-bottom: 20px;
}

/* Custom styles to enhance Bootstrap */
:root {
  --bs-primary: #009da9;
  --bs-primary-rgb: 255, 116, 33;
}

.bg-primary-subtle {
  background-color: #009da9 !important;
  color: white !important;
}

.text-primary {
  color: black !important;
}

/* ABOUT US SECTION STYLING */
.about-us {
  position: relative;
  overflow: hidden;
}

/* List item styling */
.about-us-list li {
  transition: transform 0.3s ease;
}

.about-us-list li:hover {
  transform: translateX(5px);
}

/* Text underline effect */
.text-primary span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(var(--bs-primary-rgb), 0.2);
  z-index: -1;
  border-radius: 10px;
}

/* STATS CARD STYLING */
.stats-card {
  /* background-image: linear-gradient(45deg, #009da9, #015a51); */
  /* background-image: linear-gradient(45deg, #088791, #95c319); */
  background-color: black;

  overflow: hidden;
  position: relative;
}

.stats-card::after .stats-card::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stats-card::after {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
}

.stats-card::before {
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
}

/* CARD ANIMATIONS */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.btn-dark i {
  transition: transform 0.3s ease;
}

.btn-dark:hover i {
  transform: translateX(5px);
}

.service-box {
  color: #ccc;
  padding: 40px 0;
}
.service-item {
  text-align: center;
  padding: 20px;
}
.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}
.service-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.wifi {
  color: #009da9;
} /* Blue */
.tv {
  color: #009da9;
} /* Green */
.phone {
  color: #009da9;
} /* Red */

.card-style {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-white {
  background-color: #fff;
  color: #000;
}

.card-dark {
  background: #3b3b3b45;
  border: 1px solid #3c3c3c;
  color: white;
}

.card-blue {
  background-color: #009da9;
  color: #fff;
}

.cube-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.card-style h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.card-style .superscript {
  font-size: 24px;
  position: relative;
  top: -30px;
}

.card-style h2 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 5px 0;
  color: black;
}

.cardcard-style p {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.3;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: white;
  margin: 10px 0;
}

/* Second card */
.ready-badge {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border-left: 2px solid #fff;
  padding-left: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.seo-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.metrics {
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.metric {
  padding: 20px;
  text-align: center;
  flex: 1;
}

.metric-divider {
  width: 1px;
  background-color: #222;
}

.grade {
  font-size: 60px;
  font-weight: 700;
  color: #62ff8e;
}

.percentage {
  font-size: 36px;
  font-weight: 700;
  color: #62ff8e;
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.gauge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}

/* Third card */
.hexagon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
  position: relative;
  margin-bottom: 20px;
}

.made-by {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.author {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.rating-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px 20px;
  width: fit-content;
  margin: 0 auto;
}

.stars {
  color: #fff;
  margin-right: 10px;
}

.rating-text {
  font-weight: 600;
}

.organiser-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  height: 100%;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  transition: transform 0.3s;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.audience-card:hover {
  transform: translateY(-5px);
}

.icon-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-container i {
  font-size: 35px;
}

h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0;
}

.orange-bg {
  background-color: #009da9;
  color: white;
}

.lime-bg {
  background-color: #aad731;
  color: #333;
}

.blue-bg {
  background-color: #35a7ff;
  color: white;
}

.gray-bg {
  background-color: #5c6571;
  color: white;
}

.white-bg {
  background-color: white;
  color: #333;
}

/* Original row/column setup for desktop */
.organiser-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 20px;
}

.organiser-col {
  padding: 0 7px;
  margin-bottom: 0;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-md-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

@media (max-width: 1500px) {
}
/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .organiser-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }

  .organiser-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }

  /* Fix for the three-column row */
  .organiser-three-col .organiser-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Make the third column start from left */
  .organiser-col-market {
    clear: left;
  }

  .audience-card {
    padding: 15px;
    height: 100%;
    min-height: 120px;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .icon-container {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .icon-container i {
    font-size: 35px;
  }

  /* Hide spacer columns on mobile */
  .organiser-spacer {
    display: none;
  }
}

.organiser-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .organiser-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }

  .organiser-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }

  /* Fix for the three-column row */
  .organiser-three-col .organiser-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Make the third column start from left */
  .organiser-col-market {
    clear: left;
  }

  .card-style {
    height: auto;
    padding: 25px;
  }

  h1,
  h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  p {
    font-size: 16px !important;
    line-height: 22px !important;
  }

  /* Hide spacer columns on mobile */
  .organiser-spacer {
    display: none;
  }
}

.container-2 {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.wrap-grid-box.grid-4 {
  grid-template-columns: repeat(3, 1fr);
}

.wrap-grid-box {
  display: grid;
  gap: 40px 20px;
}
.section-packed .packed-wrap .box-icon-item {
  position: relative;
}
.box-icon-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 34px;
  transition: all 0.5s linear;
}
.box-icon-item p {
  color: #5f5a5a !important;
}
.mb-16 {
  margin-bottom: 16px;
}

.services-container {
  max-width: 1140px;
  margin: 0 auto;
}

.service-subtitle {
  color: #6c757d;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 450px;
}

.service-description {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.service-item-1 {
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.service-icon {
  margin-bottom: 1rem;
  width: 34px;
  height: 34px;
  stroke: #009da9;
  stroke-width: 1;
}

.service-item-title {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-item-title h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0;
  margin-right: 0.5rem;
  color: black !important;
}

.arrow-icon {
  font-size: 12px;
  color: #212529;
}

.service-item-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-buttons {
  text-align: center;
  margin-top: 2rem;
}

.btn-dark {
  background-color: #000;
  border-color: #000;
  border-radius: 30px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
}

.btn-outline {
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #212529;
  border-radius: 30px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
}
/* Base styles (desktop/laptop by default) */
.header-textn {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
}

.service-itemn {
  border-top: 1px solid #cccccc;
  border-radius: 0;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: center;
}

.service-itemn:hover {
  transform: scale(1.02);
  z-index: 10;
}

.service-numbern {
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 0 15px 20px;
  color: black;
}

.service-imagen {
  width: 180px;
  height: 60px;
  border-radius: 32px !important;
  margin-left: 10px;
}

.service-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-titlen {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-weight: 500;
}

.service-titlen span {
  color: #333;
}

.service-descriptionn {
  color: #666666;
  font-size: 19px;
  padding: 5px 0;
}

.arrow-buttonn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #aaaaaa;
  color: black;
  transition: all 0.3s ease;
}

.service-itemn:hover .arrow-buttonn {
  background-color: #009da9;
  border-color: #009da9;
  color: white;
}

.circle-dotn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-dotn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #aaaaaa;
}

.divider {
  height: 1px;
  background-color: #cccccc;
  margin: 20px 0;
}

.py-33 {
  padding: 40px 0 37px 0;
}

.services-background {
  background-color: white;
  padding-bottom: 150px;
  position: relative;
}

.pattern-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Large Desktop Screens (1441px and above) */
@media (min-width: 1441px) {
  .pattern-container {
    max-width: 1400px;
  }

  .header-textn {
    font-size: 3rem;
  }

  .service-titlen {
    font-size: 1.8rem;
  }

  .service-descriptionn {
    font-size: 1.2rem;
  }
}

/* Laptop/Desktop Screens (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .pattern-container {
    max-width: 1000px;
  }

  .header-textn {
    font-size: 2.2rem;
  }

  .service-imagen {
    width: 160px;
    height: 55px;
  }

  .service-titlen {
    font-size: 1.4rem;
  }

  .service-descriptionn {
    font-size: 1rem;
  }

  .arrow-buttonn {
    width: 50px;
    height: 50px;
  }
}

/* Tablet Screens (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pattern-container {
    max-width: 720px;
  }

  .header-textn {
    font-size: 2rem;
  }

  .service-imagen {
    width: 140px;
    height: 50px;
  }

  .service-titlen {
    font-size: 1.2rem;
    margin-left: 20px !important;
  }

  .service-descriptionn {
    font-size: 0.9rem;
  }

  .arrow-buttonn {
    width: 45px;
    height: 45px;
  }

  .py-33 {
    padding: 30px 0;
  }

  /* Adjust columns for tablets */
  .col-1 {
    width: 8%;
  }

  .col-2 {
    width: 16%;
  }

  .col-3 {
    width: 22%;
  }

  .col-4 {
    width: 38%;
  }
}

/* Mobile screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .pattern-container {
    max-width: 540px;
  }

  .header-section .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .header-section .col-lg-2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .header-textn {
    font-size: 1.8rem;
  }

  /* Adjust service item layout */
  .service-itemn {
    padding: 15px;
  }

  .service-itemn .row {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "number image"
      "title title"
      "description description"
      "button button";
    gap: 15px;
  }

  .service-itemn .col-1 {
    grid-area: number;
    width: auto;
  }

  .service-itemn .col-2:first-of-type {
    grid-area: image;
    width: auto;
  }

  .service-itemn .col-3 {
    grid-area: title;
    width: 100%;
  }

  .service-itemn .col-4 {
    grid-area: description;
    width: 100%;
  }

  .service-itemn .col-2:last-of-type {
    grid-area: button;
    width: 100%;
  }

  .service-numbern {
    padding: 5px 0;
  }

  .service-imagen {
    width: 140px;
    height: 50px;
    margin-left: 0;
  }

  .service-titlen {
    margin-left: 0 !important;
    font-size: 1.3rem;
  }

  .service-descriptionn {
    margin-bottom: 10px;
    font-size: 0.85rem;
  }

  .arrow-buttonn {
    width: 45px;
    height: 45px;
    margin-left: 0;
  }

  .py-33 {
    padding: 25px 0;
  }

  /* Fix alignments */
  .service-itemn .justify-content-end {
    justify-content: flex-start !important;
  }
}

/* Small mobile screens (up to 575px) */
@media (max-width: 575px) {
  .header-textn {
    font-size: 1.5rem;
  }

  /* Single column layout for smallest screens */
  .service-itemn .row {
    display: flex;
    flex-direction: column;
  }

  .service-itemn .col-1,
  .service-itemn .col-2,
  .service-itemn .col-3,
  .service-itemn .col-4 {
    width: 100% !important;
    padding: 5px 0;
  }

  .service-numbern {
    padding: 10px 0 5px;
  }

  .service-imagen {
    width: 120px;
    height: 45px;
    margin-left: 0;
  }

  .service-titlen {
    font-size: 1.1rem;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .service-titlen h4 {
    margin-bottom: 5px;
  }

  .service-descriptionn {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }

  .py-33 {
    padding: 20px 10px;
  }

  .arrow-buttonn {
    width: 40px;
    height: 40px;
  }

  /* Align items consistently */
  .service-itemn .justify-content-end {
    justify-content: flex-start !important;
  }

  /* Adjust spacing for better readability */
  .services-background {
    padding-bottom: 80px;
  }

  /* Make sure register button fits */
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
.timeline-container {
  position: relative;
  padding-top: 20px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.horizontal-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #999;
  z-index: 1;
}

.point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  position: relative;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #39d765;
  border-radius: 50%;
  margin-top: -27px;
  margin-bottom: 15px;
  z-index: 2;
}

.point-content {
  text-align: left;
}

.check {
  color: green;
  font-weight: bold;
  font-size: 18px;
  margin-right: 5px;
}

.point-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Feature Banner Styles */
.feature-banner-1 {
  background: linear-gradient(248deg, #00a3a5 0%, #43d570 50%, #31d75c 100%);
  color: black;
  display: flex;
  justify-content: space-around;
  padding: 15px 33px;
  border-radius: 10px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin: 10px 15px;
}

.check-icon {
  color: #009da9;
  margin-right: 12px;
  font-size: 18px;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
}

/* Button Styles */
.btn-sm-style {
  color: black;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 87px;
  border: none;
  border-radius: 5px;
  margin: 0 auto;
  background: unset;
  background-size: 200% 200%;
  position: relative;
  transition: color 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

/* Hover animation */
.btn-sm-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #009da9, #aad731);
  z-index: -1;
  transition: transform 0.5s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}

/* Hover effect */
.btn-sm-style:hover {
  color: white;
}

.btn-sm-style:hover::before {
  transform: scaleX(1);
}

/* Gradient Line */
.line-row2 {
  width: 100%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    90deg,
    rgba(170, 244, 150, 0) 0%,
    #9df095 50%,
    rgba(143, 236, 147, 0) 100%
  );
  margin-bottom: 20px;
}
.header-textn {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
}

.service-itemn {
  border-top: 1px solid #cccccc;
  border-radius: 0;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: center;
}

.service-itemn:hover {
  transform: scale(1.02);
  z-index: 10;
}

.service-numbern {
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 0 15px 20px;
  color: black;
}

.service-imagen {
  width: 180px;
  height: 60px;
  border-radius: 32px 32px 32px 32px;
  overflow: hidden;
  margin-left: 10px;
}

.service-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-titlen {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-weight: 600;
  position: relative;
  left: 10px;
}

.service-titlen span {
  color: #333;
}

.service-descriptionn {
  color: #666666;
  font-size: 0.9rem;
  padding: 5px 0;
}

.arrow-buttonn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #aaaaaa;
  color: black;
  transition: all 0.3s ease;
}

.service-itemn:hover .arrow-buttonn {
  background-color: #009da9;
  border-color: #009da9;
  color: white;
}

.circle-dotn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-dotn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #aaaaaa;
}

.divider {
  height: 1px;
  background-color: #cccccc;
  margin: 20px 0;
}

.py-33 {
  padding: 40px 0 37px 0;
}

.services-background {
  background-color: white;
  padding-bottom: 150px;
  position: relative;
}

.pattern-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-address {
  padding-bottom: 20px;
}
.exclusive-wrap {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 13px;
  max-width: 1182px;
  margin: 0 auto;
}
.exclusive-item {
  flex: 0 0 calc(33.333% - 16px);
  border: 1px solid #2e2e2e;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.exclusive-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #009da9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.exclusive-item .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: black;
}

.ull {
  list-style: none;
  padding-left: 0;
}

.ull li {
  display: flex;
  align-items: flex-start;
}

.badge-icon {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
  margin-right: 20px;
}

.fa-certificate-outline {
  font-size: 33px;
  color: transparent;
  -webkit-text-stroke: 1.5px #333;
}

.badge-circle {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  background-color: #aad731;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-check {
  color: white;
  font-size: 10px;
  position: relative;
  top: 1px;
  left: 1px;
}

.ull p {
  margin-top: 15px;
  font-size: 15px !important;
}

/* Additional styles for Swiper */
.swiper-container {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-slide {
  height: auto;
}

.intro-video {
  position: relative;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  width: 100%;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: 0; /* Keep overlay above background */
}

.content {
  position: relative;
  z-index: 1;
  color: white; /* Ensure text is readable */
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-title span {
  color: #f47425;
}

.stat-card-1 {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* background-color: rgba(48, 48, 48, 0.5); */
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  border: 1px solid #ece1e1;
  height: 315px;
}
.stat-card-11 {
  border-radius: 12px;
  padding: 24px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
  background: #3b3b3b45;
  height: 100%;
  margin-bottom: 0px;
  align-items: center;
  border: 1px solid #3c3c3c;
}

.stat-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.stat-text {
  flex-grow: 1;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #f47425;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.stat-icon img {
  width: 24px;
  height: 24px;
}

.stat-number-1 {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
}
.stat-number-11 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: black;
}

.stat-label {
  font-weight: 500 !important;
  font-size: 19px;
  color: #777;
  margin-bottom: 10px;
  margin-top: 5px;
}

.stat-description {
  font-size: 19px;
  color: black;
  line-height: 1.3;
}

.stat-number-11 {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #3cd668;
}

.stat-description1 {
  font-size: 14px;
  color: white !important;
  line-height: 1.4;
}

.agt-ab-c-item-2 h3 {
  font-size: 33px;
  font-weight: 700;
  padding-bottom: 22px;
  color: var(--agn-clr-black-2);
  border-bottom: 1px solid #514f4f;
  /* font-family: "Kanit", Sans-serif !important; */
}
.agt-ab-c-item-2 p {
  padding-top: 20px;
  font-size: 19px !important;
  color: white !important;
  text-transform: capitalize !important;
  line-height: 1.3;
}
#myVideoDesktop {
  position: relative;
  z-index: 1001 !important;
}

.div-1 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bg-img {
  position: absolute;
  height: 472px;
  width: 410px;
  z-index: 1;
  opacity: 0.1;
}

.img1 {
  top: -135px;
  left: -135px;
  opacity: 0.1;
}

.img2 {
  bottom: -106px; /* half hidden */
  right: -105px; /* half hidden */
  height: 672px;
  width: 610px;
}

.img3 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* background image */
}
.text-green {
  color: #009da9 !important;
}
.text-red-1 {
  color: #3cd668 !important;
}

.font-playfair-display {
  font-family: "Playfair Display" !important;
  font-weight: 400 !important;
}
#image {
  position: absolute;
  right: -232px;
  top: 120px;
  width: 640px;
  z-index: 1;
}

.item-circle-2 {
  animation: rotate1 10s infinite linear;
  opacity: 0.7;
  filter: blur(1px);
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.item-3 {
  position: absolute;
  z-index: 0;
  top: 120px;
  width: 170px;
}
.item-circle-1 {
  animation: 10s linear 0s infinite normal none running moveleft;
}
.mySwiper .swiper-slide .card {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.testimonial-swiper {
  margin-bottom: 20px;
}

.video-swiper {
  height: 200px;
}

.video-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 400px;
  z-index: 1000 !important;
}

.swiper-pagination-bullet-active {
  background: #ff6600; /* Change to your theme's orange color */
}

/* Testimonial card styling */
.testimonial-card-wrapper {
  position: relative;
  padding-top: 32px;
  margin-bottom: 20px;
}

.profile-image-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border: 3px solid white;
  border-radius: 50%;
}

.bg-dark {
  background-color: #1e1e24;
  position: relative;
  overflow: hidden;
}

.bg-dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-image: url("path-to-curved-line.svg");
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 1;
  opacity: 0.4;
}

.text-orange {
  color: #009da9;
}

.btn-orange {
  background-color: #009da9;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

.testimonial-card-wrapper {
  position: relative;
  padding-top: 30px;
}

.profile-image-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.profile-image {
  width: 65px;
  height: 65px;
  border: 3px solid #1e1e24;
}

.card {
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-innerpage .heading-section.center {
  margin-bottom: 49px;
}

.font-playfair-display {
  font-family: "Playfair Display" !important;
}

.section-innerpage .heading-section.center .sub-title {
  margin-bottom: 22px;
}

.heading-section.center .sub-title {
  margin-left: auto;
  margin-right: auto;
}
.heading-section .sub-title {
  margin-bottom: 19px;
}
.box-tag {
  position: relative;
  display: flex;
  gap: 10px;
  width: max-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 17.64px;
  padding: 14px 35px;
  background-color: #000;
  border-radius: 99px;
  border: 1px solid transparent;
  z-index: 2;
}
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.marquee-row {
  display: flex;
  width: fit-content;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-right-to-left {
  animation-name: marqueeRightToLeft;
}

.marquee-left-to-right {
  animation-name: marqueeLeftToRight;
}

.marquee-item {
  flex-shrink: 0;
  width: 420px;
  height: 400px;
  margin: 0 10px;
  border-radius: 8px;
  overflow: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marqueeRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.events-swiper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff6600; /* Change to your theme's orange color */
}

.swiper-pagination-bullet-active {
  background: #ff6600; /* Change to your theme's orange color */
}
.section-faqs .heading-section {
  margin-bottom: 52px;
}

.heading-section {
  margin-bottom: 40px;
  position: relative;
}

.center,
.text-center {
  text-align: center;
}

.heading-section.center .sub-title {
  margin-left: auto;
  margin-right: auto;
}

.heading-section .sub-title {
  margin-bottom: 19px;
}

.box-tag {
  position: relative;
  display: flex;
  gap: 10px;
  width: max-content;
  font-weight: 500;
  font-size: 18px;
  line-height: 17.64px;
  padding: 14px 35px;
  background-color: #000;
  border-radius: 10px;
  border: 1px solid transparent;
  z-index: 2;
}

.box-tag .eff {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100px;
  z-index: 4;
}

/* Apply Playfair Display only to the "Got questions?" text */
.heading-section .heading .animationtext {
  font-weight: 500 !important;
  color: black !important;
}
.custom-gap {
  gap: 4rem;
}

@media (max-width: 576px) {
  .custom-gap {
    gap: 0 !important;
  }
}
.section-title {
  font-size: 19px !important;
  font-weight: 600 !important;
  margin-bottom: 0;
}

.logo-img {
  height: 110px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flex-wrap-mobile {
    flex-wrap: wrap;
  }

  .d-flex.justify-content-between {
    gap: 20px;
  }
}
.contact-container {
  padding-top: 30px;
  margin-top: 100px;
  padding-bottom: 20px;
  border-top: 1px solid #ccc;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.contact-column {
  /* flex: 1; */
  min-width: 0;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.contact-left {
  justify-content: flex-start;
}

.contact-right {
  justify-content: flex-end;
  align-items: center;
}

.contact-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.contact-icon-text i {
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #009da9;
  color: white;
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1rem;
}

.contact-column .heading-section {
  margin-bottom: 0px !important;
}

/* Media queries for better responsiveness */
@media (max-width: 992px) {
  .contact-column {
    flex: 0 0 25%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-column {
    flex: 0 0 50%;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-left,
  .contact-right {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-column {
    flex: 0 0 100%;
    text-align: center;
  }
}
.line-row1 {
  width: 100%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    90deg,
    rgba(170, 244, 150, 0) 0%,
    #9df095 50%,
    rgba(143, 236, 147, 0) 100%
  );
  margin-bottom: 32px;
  /* margin-top: 50px; */
}

.copyright {
  font-weight: 500;
  font-size: 16px;
  color: #a0a0a0;
}

/* 👇 Make it stack on mobile */
@media (max-width: 768px) {
  .flex-wrap-mobile {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .ps-t-10 {
    top: 0 !important;
  }
}
