:root {
  --primary-color: #15161b;
  --primaryOne-color: #EA1347;
  --primaryTwo-color: #ffffff;
  --primaryBTn-color: #ffffff;
  --secondary-color: #f7f8fd;
  --text-color: #b0b2b7;
  --accent-color: #EA1347;
  --primaryBTn-color: #ffffff;
  --primary-color-p: #b0b2b7;
  --white-color: #ffffff;
  --divider-color: #e1e4eb;
  --load-color: #ffffff;
  --error-color: rgb(230, 87, 87);
  --default-font: "Manrope", sans-serif;
}

.dark {
  --primary-color: #ffffff;
  --primaryOne-color: #ffffff;
  --primaryTwo-color: #EA1347;
  --primaryBTn-color: #ffffff;
  --secondary-color: #0a0808;
  --text-color: #cecece;
  --accent-color: #EA1347;
  --primary-color-p: #b9b9bc;
  --white-color: #1a1818;
  --divider-color: #322f2f;
  --error-color: rgb(81, 76, 76);
  --load-color: #1a1818;
  --default-font: "Manrope", sans-serif;
}

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
/************************************/
/*** 	   02. General css		  ***/
/************************************/
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% - var(--gap)));
    -webkit-transform: translateX(calc(100% - var(--gap)));
    -moz-transform: translateX(calc(100% - var(--gap)));
    -ms-transform: translateX(calc(100% - var(--gap)));
    -o-transform: translateX(calc(100% - var(--gap)));
  }
}
* {
  direction: rtl;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  width: 100%;
  overflow-x: clip;
  transition: 0.3s;
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
  color: var(--primary-color-p);
}

h1 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

h2 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

h3 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

h4 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

h5 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

h6 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--primary-color-p);
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}

ul li {
  color: var(--primary-color-p);
}

html {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.container-lg {
  padding-left: 15px;
  padding-right: 15px;
}

.container-md {
  padding-left: 15px;
  padding-right: 15px;
}

.container-sm {
  padding-left: 15px;
  padding-right: 15px;
}

.container-xl {
  padding-left: 15px;
  padding-right: 15px;
}

.container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  right: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(50%, -50%) rotate(-45deg);
  z-index: 1;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  -moz-transform: translate(50%, -50%) rotate(-45deg);
  -ms-transform: translate(50%, -50%) rotate(-45deg);
  -o-transform: translate(50%, -50%) rotate(-45deg);
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
@media (min-width: 768px) {
    * {
      cursor: none;
    }
    .customCursor {
      width: 45px;
      height: 45px;
      border-radius: 100%;
      border: 1px solid var(--primary-color);
      transition: all 120ms ease-out;
      position: fixed;
      pointer-events: none;
      left: 0;
      top: 0;
      transform: translate(calc(-50% + 15px), -50%);
      z-index: 999999;
    }
    .customCursorInner {
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background-color: var(--primaryOne-color);
      position: fixed;
      transform: translate(-50%, -50%);
      pointer-events: none;
      transition: width 0.3s, height 0.3s, opacity 0.3s;
      z-index: 999999;
    }
    .customHover {
      width: 70px;
      height: 70px;
      border-color: transparent;
      background-color: var(--primaryOne-color);
      box-shadow: 0px 0px 30px var(--primaryOne-color);
    }
    .customClick {
      width: 40px;
      height: 40px;
    }
  }
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  display: flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: right;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

.row.no-gutters {
  margin-left: 0px;
  margin-right: 0px;
  padding-right: 0;
  padding-left: 0;
}

.btn-default {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--primaryBTn-color);
  background: var(--accent-color);
  text-transform: capitalize;
  padding: 15px 20px 15px 45px;
  border: 2px solid var(--accent-color);
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-default::before {
  content: "\f062";
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--primaryBTn-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(20px, -50%) rotate(-45deg);
}
.btn-default:hover {
  color: var(--accent-color);
}
.btn-default:hover:before {
  color: var(--accent-color);
  transform: translate(20px, -50%) rotate(-90deg);
}
.btn-default:hover::after {
  width: 100%;
}
.btn-default::after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: var(--white-color);
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  width: 10px !important;
  height: 10px !important;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}

.preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
  margin: 40px auto;
}
.loading-container:hover .loading {
  transition: all 0.5s ease-in-out;
}
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

#loading-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  max-width: 66px;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}

.section-row {
  margin-bottom: 60px;
}

.section-btn {
  text-align: end;
}

.section-title {
  text-align: right;
}
.section-title h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-color);
  margin-bottom: 10px;
}
.section-title h1 {
  font-size: 70px;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 0;
}
.section-title h1 span {
  color: var(--accent-color);
}
.section-title h2 {
  font-size: 70px;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 0;
}
.section-title h2 span {
  color: var(--accent-color);
}

header.main-header {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 100;
}
header.main-header .header-sticky {
  padding: 25px 0;
  position: relative;
  top: 0;
  z-index: 100;
}
header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--divider-color);
}
header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--divider-color);
  transform: translateY(0);
  color: var(--primary-color);
  background: var(--white-color);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.navbar {
  padding: 0;
  align-items: center;
}
.navbar .container {
  gap: 16px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .navbar-brand {
    flex: 1 0 0;
  }
}
.navbar-brand img {
  min-width: 140px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: right;
}
.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}
.main-menu ul li {
  margin: 0 10px;
  position: relative;
}
.main-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 10px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.main-menu ul li a:hover {
  color: var(--accent-color);
}
.main-menu ul li a:focus {
  color: var(--accent-color);
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}
.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-right: 8px;
}
.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 210px;
  border-radius: 15px;
  position: absolute;
  right: 0;
  top: 100%;
  overflow: hidden;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: right;
}
.main-menu ul ul ul {
  right: 100%;
  top: 0;
  text-align: right;
}
.main-menu ul ul li {
  margin: 0;
  padding: 0;
}
.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
}
.main-menu ul ul li a:hover {
  color: var(--primary-color);
  background-color: transparent;
}
.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu {
  display: none;
  top: 20px;
  position: relative;
}

.navbar-toggle {
  display: none;
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(5px, 5px);
  -webkit-transform: rotate(-45deg) translate(5px, 5px);
  -moz-transform: rotate(-45deg) translate(5px, 5px);
  -ms-transform: rotate(-45deg) translate(5px, 5px);
  -o-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);
  -webkit-transform: rotate(45deg) translate(5px, -5px);
  -moz-transform: rotate(45deg) translate(5px, -5px);
  -ms-transform: rotate(45deg) translate(5px, -5px);
  -o-transform: rotate(45deg) translate(5px, -5px);
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 6px 0 0;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 21px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_menu {
  padding: 0;
  background: var(--accent-color);
}
.slicknav_menu ul {
  margin: 5px 0;
}
.slicknav_menu ul ul {
  margin: 0;
}
.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_nav .slicknav_row {
  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;
}
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.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;
}
.slicknav_nav a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_arrow {
  font-size: 0 !important;
}
.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-right: 8px;
  color: var(--white-color);
  position: absolute;
  left: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
}

.hero {
  position: relative;
  background: var(--secondary-color) url(../images/hero-bg.png) no-repeat bottom center;
  padding: 140px 0;
}

.hero-content {
  margin-left: 95px;
}
.hero-content .section-title {
  margin-bottom: 30px;
}

.hero-body {
  width: 100%;
  max-width: 568px;
  margin-bottom: 40px;
}
.hero-body p {
  margin: 0;
}

.hero-image img {
  border-radius: 40px;

}

.hero-video-image {
  position: relative;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 1;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}
.hero-play-button i {
  font-size: 26px;
  background-color: var(--accent-color);
  color: var(--white-color);
  width: 90px;
  height: 90px;
  border: 7px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.hero-slider-image img {
  border-radius: 40px;
}

.hero-slider .swiper-pagination {
  position: relative;
  bottom: 0px;
  margin-top: 20px;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--text-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-layout-2 {
  text-align: center;
}
.hero-layout-2 .hero-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-layout-2 .section-title {
  text-align: center;
}
.hero-layout-2 .section-title h1 {
  font-size: 100px;
}
.hero-layout-2 .hero-body {
  width: 100%;
  max-width: 568px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.hero-layout-2 .hero-footer .btn-default {
  margin-left: 20px;
}
.hero-layout-2 .hero-footer .btn-default:last-child {
  margin-left: 0;
}

.about-us {
  padding: 100px 0;
}

.about-image {
  position: relative;
  padding-left: 70px;
}

.about-img img {
  border-radius: 40px;
}

.about-consultation {
  position: absolute;
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
  z-index: 1;
}
.about-consultation img {
  animation: rotate 30s infinite linear;
}

.about-content ul {
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.about-content ul li {
  width: 48%;
  margin-left: 2%;
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.about-content ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  right: 0;
}

.our-services {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}

.service-item {
  background: var(--white-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primaryOne-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-content-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.service-content-title a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-content-title a:hover {
  background: var(--primaryOne-color);
  transform: scale(1.1);
}

.service-content-title a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.service-price {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider-color);
}

.service-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.service-price .duration {
  font-size: 0.9rem;
  color: var(--primary-color-p);
  margin-right: 0.5rem;
}

.service-image {
  border-radius: 30px;
  overflow: hidden;
}
.service-image img {
  border-radius: 30px;
  transition: all 0.5s ease-out;
}

.our-work {
  padding: 100px 0 70px;
}

.works-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 20px 20px 40px 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  color: #15161b;
}
.works-item:hover .works-image img {
  transform: scale(1.1);
}
.works-item a {
  color: #15161b;
}

.works-image {
  margin-bottom: 30px;
  overflow: hidden;
}
.works-image img {
  border-radius: 30px;
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-out;
}

.works-content {
  padding: 0 20px;
}
.works-content h2 {
  font-size: 26px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.works-content p {
  margin: 0;
}

.why-choose-us {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.why-choose-us-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.why-choose-us-item .icon-box {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.why-choose-us-item:hover .icon-box {
  background: var(--primaryOne-color);
  transform: scale(1.1);
}

.why-choose-us-item .icon-box img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.why-choose-us-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-us-explore-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 70px;
}
.why-us-explore-item .section-title {
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
}

.explore-item-icon {
  position: absolute;
  top: 70px;
  left: 70px;
}

.explore-item-content p {
  margin: 0;
}

.explore-item-tags {
  text-align: end;
}
.explore-item-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.explore-item-tags ul li {
  display: inline-block;
  margin-left: 20px;
}
.explore-item-tags ul li:last-child {
  margin-left: 0;
}
.explore-item-tags ul li .btn-default {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}
.explore-item-tags ul li .btn-default:hover {
  color: var(--white-color);
}
.explore-item-tags ul li .btn-default:hover:before {
  color: var(--white-color);
}
.explore-item-tags ul li .btn-default::before {
  color: var(--primary-color);
}
.explore-item-tags ul li .btn-default::after {
  background: var(--accent-color);
}

.exclusive-partners {
  padding: 100px 0;
}

.partners-logo {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px 50px;
  margin-bottom: 30px;
}

.clients-testimonials {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.testimonial-item {
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 50px;
  height: 100%;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-body {
  display: flex;
  align-items: center;
}
.testimonial-body img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 20px;
}

.testimonial-author-title h2 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.testimonial-author-title p {
  margin: 0;
}

.testimonial-page-slider .swiper-slide {
  flex: 1 0 0 !important;
}

.testimonial-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 30px;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--text-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.latest-news {
  padding: 100px 0 70px;
}

.blog-item {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.blog-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-featured-image {
  border-radius: 40px;
  overflow: hidden;
}
.post-featured-image img {
  border-radius: 40px;
  transition: all 0.5s ease-out;
}

.post-item-body {
  margin: 20px;
}
.post-item-body span {
  color: var(--text-color);
}
.post-item-body h2 {
  display: block;
  line-height: 1.4em;
  font-size: 22px;
}
.post-item-body h2 a {
  color: inherit;
}
.post-item-body p {
  margin-bottom: 15px;
}
.post-item-body p a {
  color: inherit;
}
.post-item-body .btn-readmore {
  position: relative;
  color: var(--accent-color);
  text-transform: capitalize;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.post-item-body .btn-readmore:hover {
  color: var(--primary-color);
}
.post-item-body .btn-readmore:hover:before {
  color: var(--primary-color);
  transform: translate(-20px, -50%) rotate(90deg);
  -webkit-transform: translate(-20px, -50%) rotate(90deg);
  -moz-transform: translate(-20px, -50%) rotate(90deg);
  -ms-transform: translate(-20px, -50%) rotate(90deg);
  -o-transform: translate(-20px, -50%) rotate(90deg);
}
.post-item-body .btn-readmore::before {
  content: "\f062";
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 16px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--accent-color);
  transform: translate(-20px, -50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translate(-20px, -50%) rotate(45deg);
  -moz-transform: translate(-20px, -50%) rotate(45deg);
  -ms-transform: translate(-20px, -50%) rotate(45deg);
  -o-transform: translate(-20px, -50%) rotate(45deg);
}

.main-footer {
  background-color: var(--secondary-color);
  padding: 80px 0 0;
}

/* Footer Widget Styles */
.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-widget p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.social-links a i {
  font-size: 16px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links li a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(-5px);
}

.footer-links li a::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links li a:hover::before {
  width: 10px;
}

/* Contact Info */
.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info p i {
  margin-left: 12px;
  color: var(--accent-color);
  font-size: 16px;
  min-width: 20px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 25px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Responsive Footer */
@media only screen and (max-width: 991px) {
  .main-footer {
    padding: 60px 0 0;
  }

  .footer-widget {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .main-footer {
    padding: 40px 0 0;
  }

  .footer-widget {
    margin-bottom: 25px;
  }

  .footer-widget h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-widget p {
    font-size: 14px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .social-links a i {
    font-size: 14px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .contact-info p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-info p i {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 15px 0;
    margin-top: 30px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

.mega-footer {
  margin-bottom: 40px;
}

.footer-about img {
  margin-bottom: 30px;
  height: 60px;
}
.footer-about ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-about ul li {
  margin-bottom: 15px;
}
.footer-about ul li:last-child {
  margin-bottom: 0;
}
.footer-about ul li a {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links h2 {
  font-size: 22px;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 15px;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.footer-links ul li:hover {
  color: var(--accent-color);
}
.footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-links ul li a {
  color: inherit;
}

.footer-copyright {
  padding: 20px 0;
  border-top: 1px solid var(--divider-color);
}

.footer-copyright-text p {
  margin: 0;
}

.footer-policy-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}
.footer-policy-links ul li {
  display: inline-block;
  text-transform: capitalize;
  margin-left: 30px;
}
.footer-policy-links ul li:last-child {
  margin-left: 0;
}
.footer-policy-links ul li a {
  color: var(--text-color);
}
.footer-policy-links ul li.highlighted {
  font-weight: 700;
}

.page-header {
  position: relative;
  background: var(--secondary-color);
  padding: 180px 0;
}
.page-header::before {
  content: "";
  position: absolute;
  background-image: url("../images/page-header-bg.png");
  background-repeat: no-repeat;
  background-position: top right;
  mix-blend-mode: darken;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-header-box {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header-box h1 {
  font-size: 70px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.page-header-box ol {
  display: inline-flex;
  margin-bottom: 0;
  justify-content: center;
  border: 2px solid var(--accent-color);
  border-radius: 100px;
  padding: 6px 20px;
}
.page-header-box ol li.breadcrumb-item {
  color: var(--accent-color);
  text-transform: capitalize;
}
.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent-color);
  float: right;
  margin: 0 8px;
}

.page-about {
  padding: 100px 0;
}
.page-about .about-content .section-title {
  margin-bottom: 30px;
}

.page-about-image {
  position: relative;
  margin-left: 20px;
  padding-bottom: 75px;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-img-2 img {
  border-radius: 40px;
  border: 5px solid var(--white-color);
}

.about-img-1 img {
  border-radius: 40px;
}

.work-experience {
  position: absolute;
  top: 30px;
  right: -50px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 20px;
}

.work-experience-icon {
  margin-left: 15px;
}

.work-experience-content h3 {
  font-size: 40px;
  color: var(--white-color);
  text-align: right;
  margin-bottom: 5px;
}
.work-experience-content p {
  font-size: 18px;
  color: var(--white-color);
  margin: 0;
}

.overview-company {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}

.counter-box {
  background-color: var(--white-color);
  border-radius: 40px;
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}
.counter-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.7em;
}
.counter-box h3 em {
  font-size: 56px;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.counter-box h3 span {
  font-size: 56px;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.counter-box p {
  margin: 0;
}

.our-team {
  padding: 100px 0 70px;
}

.team-member-item {
  margin-bottom: 30px;
}
.team-member-item .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
}
.team-member-item .team-image img {
  width: 100%;
  border-radius: 40px;
  transition: all 0.5s ease-in-out;
}
.team-member-item:hover .team-image img {
  transform: scale(1.1);
}
.team-member-item:hover .team-image .our-team-social-icon {
  bottom: 0;
  opacity: 1;
}

.team-image .our-team-social-icon {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -30px;
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 2;
}

.our-team-social-icon ul {
  list-style-type: none;
  padding: 0 20px 30px;
  margin: 0;
  text-align: center;
}
.our-team-social-icon ul li {
  display: inline-block;
  text-align: center;
  margin-left: 10px;
}
.our-team-social-icon ul li:last-child {
  margin-left: 0;
}
.our-team-social-icon ul li a {
  display: block;
}
.our-team-social-icon ul li a i {
  background: var(--accent-color);
  border-radius: 8px;
  color: var(--white-color);
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.our-team-social-icon ul li a i:hover {
  background: var(--white-color);
  color: var(--accent-color);
}

.team-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.team-content {
  width: calc(100% - 60px);
}
.team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.team-content p {
  margin: 0;
}

.team-icon a {
  background: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.scrolling-ticker {
  padding: 15px 0;
  color: var(--white-color);
  background-color: var(--accent-color);
}

.scrolling-ticker-box {
  --gap: 20px;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 24s linear infinite;
}
.scrolling-content span {
  display: inline-flex;
  align-items: center;
  font-family: var(--accent-font);
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
}
.scrolling-content span i {
  font-size: 8px;
  color: var(--white-color);
  margin-left: 20px;
}

.clients-testimonials.about-testimonials {
  background-color: var(--white-color);
}
.clients-testimonials.about-testimonials .testimonial-item {
  background-color: var(--secondary-color);
}
.clients-testimonials.about-testimonials .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--text-color);
}
.clients-testimonials.about-testimonials .testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.our-services.page-service {
  background-color: var(--white-color);
}
.our-services.page-service .service-item {
  background-color: var(--secondary-color);
}

.our-services.service-page {
  background-color: var(--white-color);
}
.our-services.service-page .service-item {
  background-color: var(--secondary-color);
}

.our-projects {
  padding: 100px 0 70px;
}

.our-projects-nav {
  margin-bottom: 50px;
}
.our-projects-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.our-projects-nav ul li {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-transform: capitalize;
  padding: 15px 20px 15px 20px;
  margin-left: 20px;
  border-radius: 100px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.our-projects-nav ul li:last-child {
  margin-left: 0;
}
.our-projects-nav ul li:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}
.our-projects-nav ul li a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  color: inherit;
}

.latest-news.our-blog {
  padding: 100px 0;
}

.post-pagination {
  margin-top: 30px;
  text-align: center;
}
.post-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}
.post-pagination ul li a {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease-out;
}
.post-pagination ul li a:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
}
.post-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease-out;
}
.post-pagination ul li.active a {
  background: var(--secondary-color);
  color: var(--accent-color);
}

.contact-information {
  padding: 100px 0 50px;
}

.contact-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 20px;
  height: 100%;
}
.contact-item p {
  width: 100%;
  max-width: 280px;
  margin: 0;
}
.contact-item:hover .contact-image img {
  transform: scale(1.1);
}

.contact-content {
  padding: 20px;
}

.contact-content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.contact-content-title h2 {
  font-size: 26px;
  text-transform: capitalize;
}
.contact-content-title a {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.contact-image {
  border-radius: 30px;
  overflow: hidden;
}
.contact-image img {
  border-radius: 30px;
  transition: all 0.5s ease-out;
}

.contact-us {
  padding: 50px 0;
}

.contact-details .section-title {
  margin-bottom: 30px;
  width: 100%;
  max-width: 525px;
}

.contact-detail-body p {
  margin-bottom: 35px;
}
.contact-detail-body h3 {
  font-size: 40px;
  text-transform: capitalize;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
}
.contact-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-detail-body ul li {
  display: inline-block;
  margin-left: 12px;
}
.contact-detail-body ul li:last-child {
  margin-left: 0;
}
.contact-detail-body ul li a {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.contact-detail-body ul li a:hover {
  background-color: var(--white-color);
}
.contact-detail-body ul li a:hover i {
  color: var(--accent-color);
}
.contact-detail-body ul li a i {
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.contact-form-box {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
}

.contact-form .form-control {
  background-color: var(--white-color);
  border-radius: 10px;
  border: none;
  box-shadow: none;
  padding: 12px 20px;
}
.contact-form .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.contact-form .form-control::placeholder {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.dark .form-control {
  color: #eeeeee;
}
.dark .form-control::-moz-placeholder {
  color: #8b8b8b;
}
.dark .form-control::placeholder {
  color: #8b8b8b;
}

.help-block.with-errors ul {
  margin-bottom: 0;
}
.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.dark .help-block.with-errors ul li {
  color: white;
}

.google-map {
  padding: 50px 0 100px;
}
.google-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  filter: grayscale(100%);
  transition: all 0.3s ease-out;
}
.google-map iframe:hover {
  filter: grayscale(0%);
}

.post-single-meta ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.post-single-meta ul li {
  display: inline-block;
  margin-left: 30px;
}
.post-single-meta ul li:last-child {
  margin-left: 0;
}
.post-single-meta ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-left: 10px;
}

.page-single-post {
  padding: 100px 0 50px;
}

.post-single-image {
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
}
.post-single-image img {
  border-radius: 40px;
}

.post-content {
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
}
.post-entry h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.post-entry ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.post-entry ul li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.post-entry ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.post-entry blockquote {
  background: var(--secondary-color);
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 30px;
}
.post-entry blockquote p {
  background: url(../images/icon-blockquote.svg) no-repeat 0px 6px;
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3em;
  padding-right: 70px;
}
.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.post-tags .btn-default {
  padding: 12px 20px;
  font-weight: 500;
  margin-left: 15px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.post-tags .btn-default:hover {
  color: var(--white-color);
}
.post-tags .btn-default:last-child {
  margin-left: 0;
}
.post-tags .btn-default::before {
  display: none;
}
.post-tags .btn-default::after {
  background-color: var(--accent-color);
}

.post-social-links {
  text-align: left;
}
.post-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-social-links ul li {
  display: inline-block;
  margin-left: 12px;
}
.post-social-links ul li:last-child {
  margin-left: 0;
}
.post-social-links ul li a {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.post-social-links ul li a:hover {
  background-color: var(--white-color);
}
.post-social-links ul li a:hover i {
  color: var(--accent-color);
}
.post-social-links ul li a i {
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.latest-news.related-articles {
  padding: 50px 0 70px;
}

.page-service-single {
  padding: 100px 0;
}

.service-featured-image {
  margin-bottom: 30px;
}
.service-featured-image img {
  border-radius: 40px;
}

.services-list-box {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
}
.services-list-box .icon-box {
  margin-bottom: 20px;
}
.services-list-box h3 {
  font-size: 26px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.services-list-box ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.services-list-box ul li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 20px;
}
.services-list-box ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  right: 0;
}
.services-list-box ul li:last-child {
  margin-bottom: 0;
}
.services-list-box ul li a {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.services-list-box ul li:hover a {
  color: var(--accent-color);
}
.services-list-box .btn-default {
  width: 100%;
}

.why-choose-us.why-services {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}
.why-choose-us.why-services .section-title p {
  margin-bottom: 0;
  margin-top: 30px;
}

.your-choice {
  padding: 100px 0 70px;
}

.your-choice-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.your-choice-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.your-choice-item ul li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 15px;
}
.your-choice-item ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  right: 0;
}
.your-choice-item ul li:last-child {
  margin-bottom: 0;
}
.your-choice-item ul li a {
  color: inherit;
}

.your-choice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.your-choice-title h2 {
  font-size: 26px;
  width: 100%;
  max-width: 200px;
}

.service-faqs {
  padding: 100px 0;
}

.ask-question {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px 30px;
  position: sticky;
  top: 110px;
}

.ask-question-content {
  margin-bottom: 30px;
}
.ask-question-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.ask-question-content p {
  margin: 0;
}

.ask-contact-list {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 20px;
}
.ask-contact-list:last-child {
  margin-bottom: 0;
}
.ask-contact-list .icon-box a {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.ask-contact-list .icon-box a img {
  width: 14px;
}
.ask-contact-list a {
  color: var(--text-color);
  margin: 0;
  font-weight: 700;
  width: calc(100% - 40px);
  margin-right: 10px;
}
.ask-contact-list a span {
  color: var(--primary-color);
}

.page-project-single {
  padding: 100px 0 50px;
}

.project-feature-image {
  margin-bottom: 50px;
}
.project-feature-image img {
  border-radius: 40px;
}

.project-sidebar {
  padding-left: 50px;
  position: sticky;
  top: 120px;
}

.about-project-box {
  background: var(--secondary-color);
  text-align: center;
  padding: 40px;
  border-radius: 30px;
}
.about-project-box h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.project-info-box {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.project-info-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.project-info-box .project-icon {
  margin-bottom: 15px;
}
.project-info-box p {
  margin-bottom: 10px;
}
.project-info-box h3 {
  font-size: 20px;
}

.ad-box {
  margin-top: 40px;
}
.ad-box p {
  margin: 0;
  line-height: 1.6;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-color);
}

.project-entry {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project-entry .entry-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-entry .entry-section .row {
  display: flex;
  gap: 16px;
}
.project-entry .entry-section .row .section-box {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background-color: var(--text-color);
  border-radius: 8px;
  color: #0a0808;
}
.project-entry .entry-section .row .section-box h5 {
  color: #0a0808;
  font-weight: 800;
  font-size: 28px;
  margin: 0;
}
.project-entry .entry-section .row .section-box span {
  font-size: 14px;
  font-weight: normal;
}
.project-entry h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin: 0 !important;
}
.project-entry p {
  margin: 0;
  line-height: 1.6;
}
.project-entry ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-entry ul li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.project-entry ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.project-entry ul li:last-child {
  margin-bottom: 0;
}

.project-details-gallery {
  padding: 50px 0 100px;
}

.project-gallery-items {
  display: flex;
  flex-wrap: wrap;
}
.project-gallery-items .project-gallery-item {
  width: calc(33.33% - 14px);
  margin-left: 20px;
  margin-right: 5px;
}
.project-gallery-items .project-gallery-item:nth-of-type(3n + 3) {
  margin-left: 0;
}
.project-gallery-items .project-gallery-item img {
  width: 100%;
  border-radius: 40px;
}

.faq-section {
  padding: 100px 0;
}

.faq-accordion .accordion-item {
  margin-bottom: 30px;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.accordion-header .accordion-button {
  font-size: 22px;
  font-weight: 700;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 60px 12px 20px;
  border-radius: 15px !important;
  transition: all 0.3s ease-in-out;
}
.accordion-header .accordion-button::after {
  content: "\f106";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  margin-right: 5px;
  color: var(--white-color);
  transform: translate(30px, -50%);
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(30px, -50%);
  -moz-transform: translate(30px, -50%);
  -ms-transform: translate(30px, -50%);
  -o-transform: translate(30px, -50%);
}
.accordion-header .accordion-button.collapsed {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.accordion-header .accordion-button.collapsed::after {
  transform: rotate(-180deg) translate(-30px, 50%);
  color: var(--accent-color);
  -webkit-transform: rotate(-180deg) translate(-30px, 50%);
  -moz-transform: rotate(-180deg) translate(-30px, 50%);
  -ms-transform: rotate(-180deg) translate(-30px, 50%);
  -o-transform: rotate(-180deg) translate(-30px, 50%);
}

.accordion-body {
  padding: 10px 60px 20px 20px;
}
.accordion-body p {
  margin: 0;
}

.error-page {
  text-align: center;
  padding: 100px 0;
}

.error-page-image {
  margin-bottom: 40px;
}

.error-page-content-heading {
  margin-bottom: 40px;
}
.error-page-content-heading h2 {
  font-size: 70px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin-right: 0;
  }
  .service-content-title a {
    width: 60px;
    height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .section-row {
    margin-bottom: 40px;
  }
  .section-title h3 {
    font-size: 18px;
  }
  .section-title h1 {
    font-size: 46px;
  }
  .section-title h2 {
    font-size: 46px;
  }
  .btn-default::before {
    font-size: 16px;
  }
  #magic-cursor {
    display: none !important;
  }
  .slicknav_nav li {
    display: block;
  }
  .slicknav_nav ul {
    display: block;
  }
  .responsive-menu {
    display: block;
  }
  .navbar-toggle {
    display: block;
  }
  header.main-header .header-sticky {
    padding: 20px 0;
  }
  .header-btn .btn-default {
    display: none;
  }
  .hero {
    background-image: none;
    padding: 50px 0;
  }
  .hero-video-image {
    text-align: center;
    margin-top: 40px;
  }
  .hero-play-button {
    right: 50%;
    transform: translate(50%, -50%);
    top: 0;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
  }
  .hero-layout-2 .hero-content {
    margin-bottom: 0px;
    max-width: 100%;
  }
  .hero-layout-2 .section-title h1 {
    font-size: 60px;
  }
  .hero-layout-2 .hero-body {
    margin-bottom: 20px;
  }
  .hero-content .section-title {
    margin-bottom: 20px;
  }
  .hero-body {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .about-us {
    padding: 50px 0;
  }
  .about-image {
    text-align: center;
    margin-bottom: 90px;
    padding-left: 0;
  }
  .about-consultation {
    left: 50%;
    top: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .about-content ul {
    margin: 0 0 10px;
  }
  .about-content ul li {
    font-size: 16px;
  }
  .about-content ul li:before {
    font-size: 18px;
  }
  .our-services {
    padding: 50px 0 20px;
  }
  .service-content {
    padding: 10px 10px 20px;
  }
  .service-content-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .service-content-title h2 {
    font-size: 24px;
    max-width: 180px;
  }
  .service-content-title a {
    width: 50px;
    height: 50px;
  }
  .service-content-title a img {
    width: 18px;
  }
  .our-work {
    padding: 50px 0 20px;
  }
  .works-item {
    padding: 20px 20px 30px 20px;
  }
  .works-image {
    margin-bottom: 20px;
  }
  .works-content {
    padding: 0 0 0 10px;
  }
  .works-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .why-choose-us {
    padding: 50px 0;
  }
  .why-choose-us-item {
    padding: 30px;
  }
  .why-choose-us-item .icon-box {
    margin-bottom: 20px;
  }
  .why-choose-us-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .why-us-explore-item {
    padding: 40px;
  }
  .why-us-explore-item .section-title {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .why-us-section-title {
    padding-left: 20px;
  }
  .explore-item-icon {
    top: 70px;
    left: 10px;
  }
  .explore-item-icon img {
    width: 50px;
  }
  .explore-item-content p {
    margin-bottom: 20px;
  }
  .explore-item-tags {
    text-align: start;
  }
  .exclusive-partners {
    padding: 50px 0 20px;
  }
  .partners-logo {
    padding: 20px 30px;
  }
  .clients-testimonials {
    padding: 50px 0;
  }
  .testimonial-item {
    padding: 30px;
  }
  .testimonial-author-title h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .latest-news {
    padding: 50px 0 20px;
  }
  .post-item-body h2 {
    font-size: 20px;
  }
  .main-footer {
    padding: 40px 0 0;
  }
  .footer-about {
    margin-bottom: 30px;
  }
  .footer-about p {
    margin-bottom: 15px;
  }
  .footer-about img {
    margin-bottom: 15px;
  }
  .footer-about ul li a {
    font-size: 20px;
  }
  .footer-links h2 {
    font-size: 20px;
  }
  .footer-links ul li {
    margin-bottom: 10px;
  }
  .footer-copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-policy-links ul {
    text-align: center;
  }
  .page-header {
    padding: 100px 0;
  }
  .page-header::before {
    background-size: cover;
  }
  .page-header-box h1 {
    font-size: 56px;
    margin-bottom: 10px;
  }
  .page-about {
    padding: 50px 0 20px;
  }
  .page-about-image {
    margin-left: 0;
    padding-bottom: 60px;
    margin-bottom: 20px;
    text-align: center;
  }
  .about-img-2 img {
    width: 300px;
  }
  .work-experience {
    right: 0;
    padding: 15px;
  }
  .work-experience-content h3 {
    font-size: 34px;
  }
  .work-experience-content p {
    font-size: 16px;
  }
  .overview-company {
    padding: 50px 0 20px;
  }
  .counter-box h3 {
    font-size: 24px;
  }
  .counter-box h3 em {
    font-size: 40px;
  }
  .counter-box h3 span {
    font-size: 40px;
  }
  .our-team {
    padding: 50px 0 20px;
  }
  .team-content h3 {
    font-size: 22px;
  }
  .scrolling-content span {
    font-size: 34px;
  }
  .our-projects {
    padding: 50px 0 20px;
  }
  .our-projects-nav {
    margin-bottom: 20px;
  }
  .our-projects-nav ul li {
    margin-bottom: 20px;
  }
  .our-projects-nav ul li:nth-of-type(3n + 3) {
    margin-left: 0px;
  }
}
.latest-news.our-blog {
  padding: 50px 0;
}

.post-pagination {
  margin-top: 10px;
}

.contact-information {
  padding: 50px 0 25px;
}

.contact-item {
  padding: 10px;
}
.contact-item p {
  max-width: 100%;
}

.contact-content {
  padding: 10px 10px 20px;
}

.contact-content-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-content-title h2 {
  font-size: 24px;
}
.contact-content-title a {
  width: 50px;
  height: 50px;
}
.contact-content-title a img {
  width: 18px;
}

.contact-us {
  padding: 25px 0;
}

.contact-details {
  max-width: 100%;
  margin-bottom: 30px;
}
.contact-details .section-title {
  margin-bottom: 20px;
  max-width: 100%;
}

.contact-detail-body p {
  margin-bottom: 20px;
}
.contact-detail-body h3 {
  font-size: 34px;
  margin-bottom: 20px;
}
.contact-detail-body ul li a {
  width: 40px;
  height: 40px;
}
.contact-detail-body ul li a i {
  font-size: 20px;
}

.contact-form-box {
  padding: 30px;
}

.google-map {
  padding: 25px 0 50px;
}
.google-map iframe {
  height: 300px;
}

.page-single-post {
  padding: 50px 0 25px;
}

.post-featured-image {
  max-width: 100%;
  margin-bottom: 20px;
}

.post-content {
  max-width: 100%;
}

.post-entry h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.post-entry blockquote {
  padding: 30px;
}
.post-entry blockquote p {
  font-size: 22px;
}
.post-entry ul li {
  margin-bottom: 15px;
  font-size: 16px;
}
.post-entry ul li:before {
  font-size: 18px;
}

.post-tags {
  margin-bottom: 20px;
}

.post-social-links {
  text-align: right;
}
.post-social-links ul li a {
  width: 40px;
  height: 40px;
}
.post-social-links ul li a i {
  font-size: 20px;
}

.latest-news.related-articles {
  padding: 25px 0 20px;
}

.page-service-single {
  padding: 50px 0;
}

.services-list-box {
  padding: 30px;
}
.services-list-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.services-list-box ul {
  margin: 0 0 20px;
}
.services-list-box ul li {
  margin-bottom: 15px;
}

.why-choose-us.why-services {
  padding: 50px 0 20px;
}

.your-choice {
  padding: 50px 0 20px;
}

.your-choice-item {
  padding: 30px;
}

.your-choice-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.your-choice-title h2 {
  font-size: 24px;
}

.service-faqs {
  padding: 50px 0;
}
.service-faqs .faq-accordion {
  margin-bottom: 30px;
}

.ask-question {
  padding: 30px;
}

.ask-question-content {
  margin-bottom: 20px;
}
.ask-question-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.page-project-single {
  padding: 50px 0 25px;
}

.project-feature-image {
  margin-bottom: 30px;
}

.project-sidebar {
  padding-left: 0;
  margin-bottom: 20px;
}

.about-project-box {
  padding: 30px;
}

.project-info-box {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.project-info-box h3 {
  font-size: 18px;
}
.project-info-box p {
  margin-bottom: 5px;
}

.project-icon img {
  width: 40px;
}

.project-entry h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.project-entry ul li {
  font-size: 16px;
}
.project-entry ul li:before {
  font-size: 18px;
}

.project-details-gallery {
  padding: 25px 0 50px;
}

.faq-section {
  padding: 50px 0;
}

.accordion-header .accordion-button {
  font-size: 20px;
  padding: 12px 40px 12px 20px;
}
.accordion-header .accordion-button::after {
  transform: translate(20px, -50%);
  -webkit-transform: translate(20px, -50%);
  -moz-transform: translate(20px, -50%);
  -ms-transform: translate(20px, -50%);
  -o-transform: translate(20px, -50%);
}

.accordion-body {
  padding: 10px 40px 20px 20px;
}

.error-page {
  padding: 50px 0;
}

.error-page-content-heading {
  margin-bottom: 30px;
}
.error-page-content-heading h2 {
  font-size: 56px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .btn-default {
    font-size: 14px;
  }
  .section-row {
    margin-bottom: 30px;
  }
  .section-row .section-title {
    text-align: center;
  }
  .section-btn {
    text-align: center;
    margin-top: 20px;
  }
  .section-title h3 {
    font-size: 16px;
  }
  .section-title h1 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .hero-content {
    margin-left: 0px;
  }
  .hero-play-button {
    right: 50%;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
  }
  .hero-play-button i {
    font-size: 22px;
    background-color: var(--accent-color);
    color: var(--white-color);
    width: 80px;
    height: 80px;
  }
  .hero-layout-2 .section-title h1 {
    font-size: 40px;
  }
  .hero-layout-2 .hero-footer .btn-default {
    margin-left: 0px;
    margin-bottom: 10px;
  }
  .hero-layout-2 .hero-footer .btn-default:last-child {
    margin-bottom: 0;
  }
  .about-image {
    margin-bottom: 70px;
  }
  .about-consultation img {
    width: 120px;
    height: 120px;
  }
  .about-content ul {
    display: block;
    margin: 0 0 25px;
  }
  .about-content ul li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .service-content-title h2 {
    font-size: 22px;
    max-width: 170px;
  }
  .service-content-title a img {
    width: 16px;
  }
  .works-content h2 {
    font-size: 22px;
  }
  .why-choose-us-item h3 {
    font-size: 22px;
  }
  .why-us-explore-item {
    padding: 20px;
  }
  .why-us-section-title {
    padding-left: 40px;
  }
  .explore-item-icon {
    top: 20px;
    left: 20px;
  }
  .explore-item-icon img {
    width: 40px;
  }
  .explore-item-tags ul li {
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .partners-logo {
    padding: 15px 20px;
  }
  .testimonial-author-title h2 {
    font-size: 18px;
  }
  .post-item-body h2 {
    font-size: 18px;
  }
  .mega-footer {
    margin-bottom: 10px;
  }
  .footer-about ul li a {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer-links {
    margin-bottom: 30px;
  }
  .footer-links .li {
    background-color: red;
  }
  .footer-policy-links ul li {
    margin-left: 10px;
  }
  .page-header {
    padding: 50px 0;
  }
  .page-header-box ol {
    padding: 4px 15px;
    font-size: 14px;
  }
  .page-header-box h1 {
    font-size: 30px;
  }
  .page-about-image {
    padding-bottom: 110px;
    padding-top: 50px;
  }
  .about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .work-experience {
    top: 0;
    right: 60px;
    padding: 10px;
  }
  .work-experience-content h3 {
    font-size: 30px;
  }
  .page-about .about-content .section-title {
    margin-bottom: 20px;
  }
  .counter-box {
    padding: 20px;
  }
  .counter-box h3 {
    font-size: 20px;
  }
  .counter-box h3 em {
    font-size: 30px;
  }
  .counter-box h3 span {
    font-size: 30px;
  }
  .team-content h3 {
    font-size: 20px;
  }
  .scrolling-content span {
    font-size: 28px;
  }
  .our-projects-nav ul li {
    padding: 10px 15px;
    margin-left: 6px;
    margin-bottom: 20px;
  }
  .our-projects-nav ul li:nth-of-type(3n + 3) {
    margin-left: 6px;
  }
  .our-projects-nav a {
    font-size: 14px;
  }
}
.contact-information {
  padding: 50px 0 5px;
}

.contact-item {
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.contact-content-title h2 {
  font-size: 22px;
}

.contact-detail-body h3 {
  font-size: 28px;
}

.contact-form-box {
  padding: 20px;
}

.google-map iframe {
  height: 250px;
}

.post-single-meta ul li {
  margin-left: 15px;
}

.post-entry blockquote {
  padding: 20px;
}
.post-entry blockquote p {
  background: url(../images/icon-blockquote.svg) no-repeat 0px 0px;
  font-size: 20px;
  padding-right: 0px;
  padding-top: 50px;
}

.post-tags .btn-default {
  margin-left: 10px;
  margin-bottom: 10px;
}

.service-featured-image {
  margin-bottom: 20px;
}

.services-list-box {
  padding: 20px;
}
.services-list-box h3 {
  font-size: 22px;
}

.why-choose-us.why-services .section-title p {
  margin-bottom: 0;
  margin-top: 20px;
}

.your-choice-title h2 {
  font-size: 22px;
  max-width: 180px;
}

.ask-question-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ask-contact-list a {
  display: inline-grid;
}

.project-info-box h3 {
  font-size: 16px;
}

.project-entry h2 {
  font-size: 28px;
}

.project-gallery-items .project-gallery-item {
  width: 100%;
  margin-left: 0px;
  margin-bottom: 20px;
}
.project-gallery-items .project-gallery-item:nth-of-type(3n + 3) {
  margin-bottom: 0;
}

.accordion-header .accordion-button {
  font-size: 18px;
}

.error-page-content-heading {
  margin-bottom: 30px;
}
.error-page-content-heading h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.darkMode {
  margin-inline-start: 30px;
}
.darkMode .darkModeToggle {
  border: 0px solid #9c9fa6;
  background-color: #2d3f67;
}

.theme-icon {
  display: none;
}
.theme-icon.show {
  display: flex;
}

.works_link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}
.works_link .Btn_link {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #322f2f;
  background: transparent;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 13px;
}
.works_link .Btn_link img {
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  aspect-ratio: 3/2;
  border-radius: 4px;
}
.works_link .Btn_link:hover {
  background-color: var(--primaryOne-color);
  color: var(--white-color);
}

.dark-mode-toggle {
  margin-inline-start: 30px;
  padding: 6px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.dark-mode-toggle svg {
  height: 35px;
  width: 35px;
}

.hero-circles-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero {
  position: relative;
  z-index: 1;
}
.moving-dot {

  transform-origin: 616px 291px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.dot1 { animation: rotateDot1 4s linear infinite; }
.dot2 { animation: rotateDot2 6s linear infinite; }
.dot3 { animation: rotateDot3 8s linear infinite; }
@keyframes rotateDot1 {
  0%   { transform: rotate(0deg) translate(260px) rotate(0deg);}
  100% { transform: rotate(360deg) translate(260px) rotate(-360deg);}
}
@keyframes rotateDot2 {
  0%   { transform: rotate(0deg) translate(190px) rotate(0deg);}
  100% { transform: rotate(360deg) translate(190px) rotate(-360deg);}
}
@keyframes rotateDot3 {
  0%   { transform: rotate(0deg) translate(120px) rotate(0deg);}
  100% { transform: rotate(360deg) translate(120px) rotate(-360deg);}
}

.hero-bg-animated {
  animation: rotateAnimation 40s linear infinite;
  transform-origin: center center;
}
@keyframes rotateAnimation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Contact Button Styles */
.floating-contact-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  will-change: transform, opacity;
  /* إضافة خصائص إضافية لضمان العمل */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

/* إزالة الكلاسات القديمة لتجنب التضارب */
.floating-contact-btn.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.floating-contact-btn.hide {
  transform: translateY(100px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.floating-btn-main {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 76, 76, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.floating-btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b6b, var(--accent-color));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-btn-main:hover::before {
  opacity: 1;
}

.floating-btn-main:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 76, 76, 0.4);
}

.floating-btn-main i {
  color: white;
  font-size: 24px;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.floating-btn-main:hover i {
  transform: scale(1.1);
}

.floating-btn-text {
  position: absolute;
  right: 70px;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-btn-main:hover .floating-btn-text {
  opacity: 1;
  transform: translateX(0);
}

.floating-btn-options {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-contact-btn:hover .floating-btn-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0;
  animation: slideInOption 0.3s ease forwards;
}

.floating-btn-option:nth-child(1) {
  animation-delay: 0.1s;
}

.floating-btn-option:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes slideInOption {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.floating-btn-option:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.floating-btn-option.whatsapp:hover {
  background: #25d366;
  color: white;
}

.floating-btn-option.phone:hover {
  background: var(--accent-color);
  color: white;
}

.floating-btn-option i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.floating-btn-option:hover i {
  transform: scale(1.2);
}

.floating-btn-option span {
  font-weight: 600;
}

/* Dark mode support */
.dark .floating-btn-option {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.dark .floating-btn-text {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Responsive design */
@media only screen and (max-width: 768px) {
  .floating-contact-btn {
    bottom: 20px;
    left: 20px;
  }

  .floating-btn-main {
    width: 55px;
    height: 55px;
  }

  .floating-btn-main i {
    font-size: 20px;
  }

  .floating-btn-text {
    display: none;
  }

  .floating-btn-options {
    bottom: 65px;
    gap: 12px;
  }

  .floating-btn-option {
    padding: 10px 15px;
    font-size: 13px;
  }

  .floating-btn-option i {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .floating-contact-btn {
    bottom: 15px;
    left: 15px;
  }

  .floating-btn-main {
    width: 50px;
    height: 50px;
  }

  .floating-btn-main i {
    font-size: 18px;
  }

  .floating-btn-options {
    bottom: 60px;
    gap: 10px;
  }

  .floating-btn-option {
    padding: 8px 12px;
    font-size: 12px;
  }

  .floating-btn-option i {
    font-size: 14px;
  }
}

.floating-contact-btn:hover .floating-btn-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-btn.active .floating-btn-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-btn.active .floating-btn-main {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 76, 76, 0.4);
}

.floating-contact-btn.active .floating-btn-main i {
  transform: scale(1.1);
}

/* Additional Creative Effects */
.floating-contact-btn::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--accent-color), #ff6b6b, #25d366, var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: borderRotate 3s linear infinite;
  transition: opacity 0.3s ease;
}

.floating-contact-btn:hover::before {
  opacity: 0.3;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Floating particles effect */
.floating-contact-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 76, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticles 4s ease-in-out infinite;
}

@keyframes floatParticles {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Ripple effect on click */
.floating-btn-main::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.floating-btn-main:active::after {
  width: 100px;
  height: 100px;
}

/* Glow effect for options */
.floating-btn-option {
  position: relative;
  overflow: hidden;
}

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

.floating-btn-option:hover::before {
  left: 100%;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100px) scale(0.3);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
  70% {
    transform: translateY(5px) scale(0.9);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes bounceOut {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100px) scale(0.3);
    opacity: 0;
  }
}

/* Know More Section */
.know-more-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 50px 30px;
  margin-top: 60px;
  border: 2px solid #e9ecef;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.know-more-content h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.know-more-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.know-more-content p {
  color: var(--primary-color-p);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.know-more-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.know-more-buttons .btn-default {
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 180px;
}

.know-more-buttons .btn-default:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.know-more-buttons .btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Dark Mode Support */
.dark .know-more-section {
  background: #2a2a2a;
  border-color: #404040;
}

/* Responsive Design */
@media (max-width: 768px) {
  .know-more-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .know-more-content h3 {
    font-size: 1.6rem !important;
  }

  .know-more-content p {
    font-size: 1rem !important;
  }

  .know-more-buttons {
    flex-direction: column;
    align-items: center;
  }

  .know-more-buttons .btn-default {
    width: 100%;
    max-width: 250px;
    margin: 5px 0 !important;
  }
}

/* Enhanced Contact CTA */
.contact-cta {
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Section Divider for CTA */
.contact-cta .section-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 30px 0;
}

.contact-cta .divider-line {
  height: 2px;
  width: 40px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 15px;
}

.contact-cta .divider-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-cta .divider-icon i {
  color: white;
  font-size: 16px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-buttons .btn-default {
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

.cta-buttons .btn-default:hover::before {
  left: 100%;
}

.cta-buttons .btn-default:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline:hover {
  background: white !important;
  color: var(--primary-color) !important;
}

.cta-buttons .btn-default i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-buttons .btn-default:hover i {
  transform: translateX(3px);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
  .contact-cta {
    padding: 60px 0;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    margin-top: 30px;
  }

  .cta-buttons .btn-default {
    display: block !important;
    margin: 10px auto !important;
    max-width: 250px;
  }
}

/* Blog Styles */
.blog-section {
  padding: 80px 0;
}

.featured-post {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--divider-color);
  cursor: pointer;
  position: relative;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.featured-post a {
  text-decoration: none;
  color: inherit;
}

.featured-post-image {
  position: relative;
  overflow: hidden;
}

.featured-post-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
}

.featured-post-content {
  padding: 30px;
}

.featured-post-content .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-color);
}

.featured-post-content .post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-post-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-post-content h2 a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.featured-post-content h2 a:hover {
  color: var(--accent-color);
}

.featured-post-content p {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--divider-color);
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.3s ease;
}

.blog-card:hover::before {
  background: rgba(255, 76, 76, 0.05);
}

.blog-card .blog-content {
  position: relative;
  z-index: 2;
}

.blog-card .read-more {
  position: relative;
  z-index: 3;
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-color);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h4 a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.blog-content h4 a:hover {
  color: var(--accent-color);
}

.blog-content p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.read-more:hover {
  color: var(--primary-color);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white-color);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--divider-color);
}

.sidebar-widget h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Search Widget */
.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 2px solid var(--divider-color);
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--white-color);
}

.search-form input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.search-form button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-form button:hover {
  color: var(--primary-color);
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: var(--secondary-color);
  border-radius: 8px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.categories-list li a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateX(-5px);
}

.categories-list li a span {
  background: var(--accent-color);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.categories-list li a:hover span {
  background: white;
  color: var(--accent-color);
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.recent-post-item:hover {
  background: var(--secondary-color);
  transform: translateX(-5px);
}

.recent-post-item a {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.recent-post-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.3s ease;
}

.recent-post-item:hover::before {
  background: rgba(255, 76, 76, 0.05);
}

.recent-post-item .recent-post-content {
  position: relative;
  z-index: 2;
}

.recent-post-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h6 {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.recent-post-content h6 a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
  color: var(--accent-color);
}

.recent-post-content span {
  font-size: 11px;
  color: var(--text-color);
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tag:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
}

.newsletter-widget h4,
.newsletter-widget h4::after {
  color: var(--primary-color);
}

.newsletter-widget p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--divider-color);
  border-radius: 25px;
  font-size: 14px;
  background: var(--white-color);
}

.newsletter-form button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-color);
  color: white;
}

/* Author Widget */
.author-widget {
  text-align: center;
}

.author-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.author-info h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.author-info p {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.5;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* Single Post Styles */
.post-single-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-single-meta ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.post-single-meta ul li i {
  color: var(--accent-color);
}

.post-intro .lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-section {
  margin-bottom: 30px;
}

.post-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.post-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.post-quote {
  margin: 30px 0;
}

.post-quote blockquote {
  background: var(--secondary-color);
  border-right: 4px solid var(--accent-color);
  padding: 25px;
  border-radius: 8px;
  margin: 0;
}

.post-quote blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.post-quote blockquote cite {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
}

.feature-list {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.feature-list h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list ul li {
  padding: 8px 0;
  padding-right: 20px;
  position: relative;
  color: var(--text-color);
}

.feature-list ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 8px;
  color: var(--accent-color);
  font-weight: bold;
}

.post-extra-info {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 40px;
}

.post-tags h5,
.post-social-links h5 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.post-social-links ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.post-social-links ul li a.facebook {
  background: #1877f2;
  color: white;
}

.post-social-links ul li a.twitter {
  background: #1da1f2;
  color: white;
}

.post-social-links ul li a.linkedin {
  background: #0077b5;
  color: white;
}

.post-social-links ul li a.whatsapp {
  background: #25d366;
  color: white;
}

.post-social-links ul li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Articles */
.related-articles {
  padding: 80px 0;
  background: var(--secondary-color);
}

.related-articles .blog-item {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--divider-color);
  cursor: pointer;
  position: relative;
}

.related-articles .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-articles .blog-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.related-articles .blog-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.3s ease;
}

.related-articles .blog-item:hover::before {
  background: rgba(255, 76, 76, 0.05);
}

.related-articles .blog-item .post-item-body {
  position: relative;
  z-index: 2;
}

/* Click Animation */
@keyframes clickPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.blog-card:active,
.featured-post:active,
.recent-post-item:active,
.related-articles .blog-item:active {
  animation: clickPulse 0.2s ease;
}

/* Focus States for Accessibility */
.blog-card:focus,
.featured-post:focus,
.recent-post-item:focus,
.related-articles .blog-item:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Loading State */
.blog-card.loading,
.featured-post.loading,
.recent-post-item.loading,
.related-articles .blog-item.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Success State */
.blog-card.success,
.featured-post.success,
.recent-post-item.success,
.related-articles .blog-item.success {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(255, 76, 76, 0.2);
}

/* Pagination */
.pagination-wrapper {
  margin-top: 50px;
}

.pagination {
  gap: 5px;
}

.pagination .page-link {
  border: none;
  color: var(--primary-color);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--white-color);
}

.pagination .page-link:hover {
  background: var(--accent-color);
  color: white;
}

.pagination .page-item.active .page-link {
  background: var(--accent-color);
  color: white;
}

.pagination .page-item.disabled .page-link {
  color: var(--text-color);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }

  .featured-post-content h2 {
    font-size: 20px;
  }

  .post-section h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 60px 0;
  }

  .featured-post-content {
    padding: 20px;
  }

  .featured-post-content h2 {
    font-size: 18px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-content h4 {
    font-size: 14px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .post-single-meta ul {
    gap: 15px;
  }

  .post-single-meta ul li {
    font-size: 12px;
  }

  .post-intro .lead {
    font-size: 16px;
  }

  .post-section h2 {
    font-size: 18px;
  }

  .post-quote blockquote {
    padding: 20px;
  }

  .post-quote blockquote p {
    font-size: 16px;
  }

  .related-articles {
    padding: 60px 0;
  }
}
