/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Milkzen - Dairy Farm & Milk HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. Intro Video css
10. What We Do css
11. Our Facts css
12. Our Potential css
13. Our Testimonials css
14. Our Goals css
15. Our FAQs css
16. Our Blog css
17. Footer css
18. About Us Page css 
19. Services Page css 
20. Service Single css 
21. Blog Archive css 
22. Blog Single css 
23. Our Products css
24. Product Single css
25. Team Page css 
26. Team Single css 
27. Testimonials Page css 
28. Image Gallery css 
29. Video Gallery css 
30. FAQs Page css 
31. Contact Us Page css 
32. 404 Error Page css 
33. Responsive css 
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #2f3678;
  --bg-color: #ffffff;
  --text-color: #2f3678;
  --accent-color: #ef3b45;
  --white-color: #ffffff;
  --divider-color: #2f367824;
  --dark-divider-color: #2f36781a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Anek Bangla", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  color: #000;
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2em;
  color: #000;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  background: transparent;
  border-radius: 10px;
  padding: 17px 55px 17px 20px;
  border: 2px solid var(--primary-color);
  overflow: hidden;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 6px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  background-color: var(--accent-color);
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default.btn-highlighted {
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
  border-color: var(--white-color);
}

.btn-default.btn-highlighted::after {
  background: var(--white-color);
}

.readmore-btn {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 28px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
  color: var(--accent-color);
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("../images/arrow-accent.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: translate(-3px, -50%);
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translate(0px, -50%);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dark-section {
  background-color: var(--white-color);
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  background-image: url("../images/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 30px;
  margin-bottom: 10px;
}

.section-title h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: #000;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--dark-divider-color);
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
  padding: 0 15px;
}

.navbar {
  padding: 6px 0;
  align-items: center;
  background-color: white;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
  padding: 14px 10px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color);
  padding: 6px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--white-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 2px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--white-color);
}

.slicknav_menu ul ul li a {
  padding: 2px 20px 2px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 230px 0 115px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      0deg,
      rgba(47, 54, 120, 0.04) 60%,
      rgba(47, 54, 120, 0.45) 100%
    ),
    linear-gradient(
      90deg,
      rgba(47, 54, 120, 0.75) 20%,
      rgba(47, 54, 120, 0.08) 100%
    );
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .section-title h3,
.hero .section-title h1,
.hero .section-title h2,
.hero .section-title p {
  color: #ffffff;
}

.hero-content .section-title p {
  width: 100%;
  max-width: 750px;
}

.hero-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
  margin: 60px 0;
}

.hero-btn .readmore-btn {
  color: var(--white-color);
}

.hero-btn .readmore-btn:hover {
  color: var(--accent-color);
}

.hero-btn .readmore-btn::before {
  background-image: url("../images/arrow-white.svg");
}

.hero-content-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.satisfy-client-img {
  position: relative;
  display: inline-block;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
  margin-left: -16px;
  z-index: 1;
}

.satisfy-client-img:first-child {
  margin: 0;
}

.satisfy-client-img figure {
  display: block;
}

.satisfy-client-img img {
  max-width: 50px;
  border-radius: 50%;
}

.hero-counter-box h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.hero-counter-box p {
  color: var(--white-color);
  margin: 0;
}

.hero-counter-box p i {
  color: var(--accent-color);
}

.hero-counter-box p span {
  font-weight: 600;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
  position: relative;
  background-color: #ef3b4596;
  padding: 25px 0;
  z-index: 1;
}

.scrolling-ticker-box {
  --gap: 30px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 50s linear infinite;
}

.scrolling-content span {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  color: white;
}

.scrolling-content span img {
  width: 100%;
  max-width: 30px;
  margin-right: 30px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/************************************/
/***   	   06. About Us css       ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-us-img-box {
  border-radius: 20px;
  overflow: hidden;
}

.about-us-img-box img {
  height: auto;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.about-us-images {
  position: relative;
  padding: 90px 195px 150px 20px;
  margin-right: 50px;
}

.about-image-1 figure,
.about-image-2 figure,
.about-image-3 figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.about-image-1 figure img,
.about-image-2 figure img,
.about-image-3 figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-1 {
  transform: rotate(-7deg);
}

.about-image-1 figure img {
  aspect-ratio: 1 / 1.265;
}

.about-image-2 {
  position: absolute;
  top: 10px;
  right: 5px;
  width: 100%;
  max-width: 340px;
  transform: rotate(5deg);
}

.about-image-2 figure img {
  aspect-ratio: 1 / 0.521;
}

.about-image-3 {
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 100%;
  max-width: 255px;
  transform: rotate(9deg);
}

.about-image-3 figure img {
  aspect-ratio: 1 / 1.199;
}

.about-image-circle {
  position: absolute;
  top: -90px;
  left: 50px;
}

.about-image-circle a,
.about-image-circle a img {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.about-image-circle a img {
  width: 100%;
  max-width: 140px;
  animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-image-circle a:hover img {
  animation-play-state: paused;
}

.about-us-list,
.about-us-body {
  margin-bottom: 40px;
}

.about-us-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-us-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-us-list ul li:last-child {
  margin-bottom: 0;
}

.about-us-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-body-image {
  width: calc(52% - 15px);
}

.about-body-content {
  width: calc(48% - 15px);
}

.about-body-image figure {
  display: block;
  border-radius: 20px;
}

.about-body-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.33;
  border-radius: 20px;
}

.about-body-content h3 {
  font-size: 22px;
  line-height: 1.4em;
}

.about-body-content h3 span {
  color: var(--accent-color);
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}

.contact-now-box {
  display: flex;
  align-items: center;
}

.contact-now-box .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.contact-now-box .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.contact-now-box:hover .icon-box::before {
  transform: scale(1);
}

.contact-now-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 25px;
  z-index: 1;
}

.contact-now-box-content p {
  margin-bottom: 5px;
}

.contact-now-box-content h3 {
  font-size: 20px;
}

.contact-now-box-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
  color: var(--accent-color);
}

/************************************/
/***   	 07. Our Services css     ***/
/************************************/

.our-services {
  padding: 100px 0;
}

.our-service-content {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.service-item {
  position: relative;
  background-color: var(--dark-divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 999px 999px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
  height: 100%;
  border-radius: 0;
}

.service-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-bottom: 40px;
  z-index: 1;
}

.service-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item.active .icon-box::before,
.service-item:hover .icon-box::before {
  transform: scale(1);
}

.service-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.service-item-content {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.service-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.service-item-content h3 a {
  color: inherit;
}

.service-item-content p {
  margin-bottom: 0;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
  color: var(--primary-color);
}

.service-readmore-btn {
  position: relative;
  color: var(--accent-color);
  z-index: 1;
}

.service-readmore-btn a {
  color: var(--accent-color);
}

.service-readmore-btn a::before {
  background-image: url("../images/arrow-accent.svg");
}

.service-item.active .service-readmore-btn a,
.service-item:hover .service-readmore-btn a {
  color: var(--primary-color);
}

.service-item.active .service-readmore-btn a::before,
.service-item:hover .service-readmore-btn a::before {
  filter: brightness(0.9) invert(1);
}

.service-cta-box {
  position: relative;
  background: url("../images/service-cta-box-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  align-content: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-cta-box-info,
.service-cta-box .contact-now-box {
  position: relative;
  z-index: 1;
}

.service-cta-box-info {
  margin-bottom: 30px;
}

.service-cta-box-info h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.service-cta-box-info h2 {
  font-size: 30px;
  color: var(--white-color);
}

.service-cta-box .contact-now-box-content p,
.service-cta-box .contact-now-box-content h3 {
  color: var(--white-color);
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  margin-bottom: 0;
}

.dark-section .section-footer-text p {
  color: var(--white-color);
}

.section-footer-text span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1em;
  display: inline-block;
  text-transform: capitalize;
  color: var(--primary-color);
  background: var(--accent-color);
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 12px;
}

.section-footer-text p a {
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}

/************************************/
/***   	 08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
}

.why-choose-box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px;
}

.why-choose-content {
  width: calc(55% - 15px);
}

.why-choose-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-content-box {
  width: calc(55% - 15px);
}

.why-choose-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
  padding-right: 3.646vw;
}

.why-choose-item .icon-box {
  margin-bottom: 20px;
}

.why-choose-item .icon-box img {
  width: 100%;
  max-width: 40px;
}

.why-choose-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.why-choose-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-choose-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.why-choose-list ul li:last-child {
  margin-bottom: 0;
}

.why-choose-list ul li:before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.why-choose-btn {
  margin-top: 60px;
}

.why-choose-body-img {
  width: calc(45% - 15px);
}

.why-choose-body-img figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.why-choose-body-img img {
  width: 100%;
  aspect-ratio: 1 / 1.405;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-image {
  width: calc(45% - 15px);
  position: relative;
  padding: 0 50px 50px 0;
}

.why-choose-img figure {
  display: block;
  border-radius: 20px;
}

.why-choose-img img {
  width: 100%;
  aspect-ratio: 1 / 1.333;
  object-fit: cover;
  border-radius: 20px;
}

.company-experience-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;
  height: 140px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.company-experience-box:hover {
  background: var(--primary-color);
}

.company-experience-box h3 {
  font-size: 30px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.company-experience-box p {
  line-height: 1.3em;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.company-experience-box:hover h3,
.company-experience-box:hover p {
  color: var(--white-color);
}

/************************************/
/***   	 09. Intro Video css      ***/
/************************************/

.intro-video {
  position: relative;
  padding: 29.167vw 0 100px;
  background: url("../images/intro-video-bg.jpg");
  background-position: center center;
  background-size: cover;
}

.intro-video::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 85, 92, 0) 27.11%,
    var(--primary-color) 100%
  );
  width: 100%;
  height: 100%;
}

.intro-video .container {
  position: relative;
  z-index: 1;
}

.intro-video .section-title {
  margin-bottom: 0;
}

.intro-video .section-title h2 {
  color: var(--white-color);
}

.video-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button a {
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: none;
}

.video-play-button a i {
  font-size: 20px;
  color: var(--primary-color);
  margin-left: 2px;
}

.video-play-button p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin: 0;
}

.intro-video-list {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.intro-video-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.intro-video-list ul li {
  position: relative;
  width: calc(25% - 22.5px);
  color: var(--white-color);
  line-height: 1.4em;
  padding-left: 30px;
}

.intro-video-list ul li:after {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

/************************************/
/***   	  10. What We Do css      ***/
/************************************/

.what-we-do {
  position: relative;
  padding: 80px 0;
}

.what-we-do-content {
  margin-right: 30px;
}

.what-we-do-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.what-we-do-list {
  width: calc(100% - 210px);
}

.what-we-do-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.what-we-do-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.what-we-do-list ul li:last-child {
  margin-bottom: 0;
}

.what-we-do-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.what-we-do-body .about-image-circle {
  position: initial;
}

.what-we-do-body .about-image-circle a img {
  position: initial;
  align-content: center;
  max-width: 180px;
}

.what-we-do-images {
  position: relative;
  padding: 15px 255px 155px 25px;
}

.what-we-do-img-1 {
  transform: rotate(-6.46deg);
  border-radius: 20px;
  overflow: hidden;
}

.what-we-do-img-2 {
  position: absolute;
  top: 15px;
  right: 25px;
  transform: rotate(10.67deg);
  width: 100%;
  max-width: 265px;
}

.what-we-do-img-2::before {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 20px;
  background: url("../images/what-we-do-image-bg.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  height: 125px;
  width: 95px;
  transform: translateY(100%);
}

.what-we-do-img-2,
.what-we-do-img-3 {
  border: 9px solid var(--bg-color);
  border-radius: 20px;
}

.what-we-do-img-3 {
  position: absolute;
  bottom: 20px;
  left: 10px;
  transform: rotate(-7.87deg);
  width: 100%;
  max-width: 370px;
}

.what-we-do-img-1 figure {
  display: block;
}

.what-we-do-img-2 figure,
.what-we-do-img-3 figure {
  display: block;
  border-radius: 12px;
}

.what-we-do-img-1 img,
.what-we-do-img-2 img,
.what-we-do-img-3 img {
  width: 100%;
  object-fit: cover;
}

.what-we-do-img-1 img {
  aspect-ratio: 1 / 1.48;
}

.what-we-do-img-2 img {
  aspect-ratio: 1 / 1.405;
}

.what-we-do-img-3 img {
  aspect-ratio: 1 / 0.644;
}

.client-review-box {
  position: absolute;
  bottom: 45px;
  right: 0;
  display: block;
  width: 100%;
  max-width: 215px;
  background: var(--primary-color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 0px 11.8px 0px rgba(0, 0, 0, 0.12);
  animation: experienceobject 3s infinite linear alternate;
}

@keyframes experienceobject {
  50% {
    right: 40px;
  }
}

.client-review-images {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-review-image {
  display: inline-block;
  margin-left: -14px;
  overflow: hidden;
}

.client-review-image:first-child {
  margin: 0;
}

.client-review-image figure {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

.client-review-image img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.client-review-image.add-more {
  width: 40px;
  height: 40px;
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.client-review-image.add-more p {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.client-review-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.client-review-content p i {
  color: var(--accent-color);
  margin: 0 5px;
}

/************************************/
/***   	  11.  Our Facts css      ***/
/************************************/

.our-facts {
  padding: 50px 0;
}

.our-facts-image {
  margin-right: 65px;
  align-content: end;
  height: 100%;
}

.our-facts-image img {
  width: 100%;
  aspect-ratio: 1 / 1.55;
  object-fit: cover;
  margin-bottom: -50px;
}

.our-facts-content {
  height: 100%;
  align-content: center;
}

.facts-counter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--dark-divider-color);
  border-bottom: 1px solid var(--dark-divider-color);
  padding: 40px 0;
  margin: 40px 0;
}

.fact-counter-item {
  position: relative;
  width: calc(33.33% - 20px);
}

.fact-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.fact-counter-item:nth-child(3n + 3):before,
.fact-counter-item:last-child:before {
  display: none;
}

.fact-counter-item h2 {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.fact-counter-item p {
  color: var(--white-color);
  margin: 0;
}

.our-facts-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.our-facts-list ul li {
  position: relative;
  width: calc(50% - 15px);
  color: var(--white-color);
  font-weight: 600;
  line-height: 1.4em;
  padding-left: 30px;
}

.our-facts-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.our-facts-btn {
  margin-top: 40px;
}

/************************************/
/***   	 12. Our Potential css    ***/
/************************************/

.our-potential {
  padding: 100px 0;
}

.our-potential-content {
  height: 100%;
}

.our-potential-counter {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.potential-counter-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.potential-counter-item .counter-circle {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 20px;
}

.potential-counter-item .counter-circle h2 {
  font-size: 30px;
  font-weight: 700;
}

.potential-counter-content {
  width: calc(100% - 130px);
}

.potential-counter-content h3 {
  font-size: 20px;
}

.potential-body-content {
  margin-bottom: 20px;
}

.potential-body-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.potential-body-content p:last-child {
  margin-bottom: 0;
}

.potential-body-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.potential-body-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.potential-body-list ul li:last-child {
  margin-bottom: 0;
}

.potential-body-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.our-potential-img {
  margin-left: 15px;
  height: 100%;
}

.our-potential-img figure {
  display: block;
  border-radius: 20px;
}

.our-potential-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.32;
  border-radius: 20px;
}

/************************************/
/***   	13. Our Testimonial css   ***/
/************************************/

.our-testimonial {
  background-image: url("../images/testimonial-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
}

.our-testimonial-image {
  margin-right: 15px;
}

.our-testimonial-image figure {
  display: block;
  border-radius: 20px;
}

.our-testimonial-image img {
  width: 100%;
  aspect-ratio: 1 / 0.992;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i {
  color: #e5e455;
}

.testimonial-content {
  margin-bottom: 100px;
}

.testimonial-content p {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  margin: 0;
}

.testimonial-body {
  display: flex;
  align-items: center;
}

.testimonial-body .author-image {
  margin-right: 15px;
}

.testimonial-body .author-image figure {
  border-radius: 10px;
}

.testimonial-body .author-image img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.testimonial-body .author-content {
  width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
  font-size: 20px;
  color: var(--accent-color);
  text-transform: capitalize;
  margin-bottom: 2px;
}

.testimonial-body .author-content p {
  color: var(--text-color);
  margin: 0;
}

.testimonial-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 30px;
  z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.testimonial-slider .testimonial-button-next {
  margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
  background: var(--bg-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat;
  background-position: center center;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
  transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before {
  filter: brightness(0) invert(0);
}

.testimonial-company-slider {
  border-top: 1px solid var(--divider-color);
  padding-top: 80px;
  margin-top: 80px;
}

.testimonial-company-slider .company-logo {
  text-align: center;
}

.testimonial-company-slider .company-logo img {
  width: 100%;
}

/************************************/
/***   	   14. Our Goals css      ***/
/************************************/

.our-goals {
  padding: 100px 0;
}

.goals-content-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.goals-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.goals-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 999px 999px 0 0;
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.goals-item.active:before,
.goals-item:hover:before {
  height: 100%;
  border-radius: 0;
}

.goals-item .icon-box {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.goals-item .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.goals-item.active .icon-box img,
.goals-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.goals-item-content {
  position: relative;
  z-index: 1;
}

.goals-item-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.goals-item-content p {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.goals-item.active .goals-item-content h3,
.goals-item:hover .goals-item-content h3,
.goals-item.active .goals-item-content p,
.goals-item:hover .goals-item-content p {
  color: var(--white-color);
}

.goals-content-footer {
  display: flex;
  align-items: center;
  gap: 20px 30px;
  margin-top: 60px;
}

.our-goals-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.goals-image-box {
  width: calc(50% - 5px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.goals-image-box figure {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.goals-image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.goals-img-2,
.goals-img-1,
.goals-img-4,
.goals-img-3 {
  width: 100%;
}

.goals-img-1 img {
  aspect-ratio: 1 / 0.9672;
}

.goals-img-2 img {
  aspect-ratio: 1 / 1.068;
}

.goals-img-3 img {
  aspect-ratio: 1 / 1.2;
}

.goals-img-4 img {
  aspect-ratio: 1 / 1.085;
}

.our-goals-images .about-image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/************************************/
/***   	   15. Our FAQs css       ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.our-faqs-content {
  position: sticky;
  top: 40px;
  margin-right: 30px;
}

.faq-cta-box {
  position: relative;
  display: inline-flex;
  background: var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.faq-cta-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: var(--white-color);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.faq-cta-box:hover:before {
  height: 100%;
}

.faq-cta-box .icon-box {
  position: relative;
  margin-right: 20px;
  z-index: 1;
}

.faq-cta-box .icon-box img {
  max-width: 60px;
}

.faq-cta-box .faq-cta-content {
  position: relative;
  width: calc(100% - 80px);
  z-index: 1;
}

.faq-cta-content p {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.faq-cta-content p:last-child {
  margin-bottom: 0;
}

.faq-cta-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.faq-cta-content p a:hover {
  color: var(--accent-color);
}

.faq-cta-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--white-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--white-color);
  padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
  padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
  padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
  margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

/************************************/
/***   	   16. Our Blogs css      ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.post-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.post-featured-image a {
  cursor: none;
  display: block;
  overflow: hidden;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-body {
  padding: 20px;
}

.post-item-content {
  margin-bottom: 20px;
}

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.post-item-content h2 a {
  display: inline-block;
  color: inherit;
}

/************************************/
/***   	    17. Footer css        ***/
/************************************/

footer.main-footer {
  background: var(--white-color);
}

/* ── Contact Section (light) ── */
.footer-contact-section {
  padding: 90px 0 80px;
  background: #f9f8f6;
}

/* Badge */
.footer-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: var(--accent-color);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

/* Heading */
.footer-contact-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2em;
  color: #000;
  margin-bottom: 18px;
}

.footer-contact-heading span {
  color: #000;
}

/* Subtitle */
.footer-contact-desc {
  font-size: 17px;
  color: #000;
  line-height: 1.7em;
  margin-bottom: 40px;
}

/* Contact info items */
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.footer-info-item:last-child {
  margin-bottom: 0;
}

.footer-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.footer-info-icon i {
  font-size: 18px;
  color: var(--primary-color);
}

.footer-info-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-info-content p {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.6em;
}

.footer-info-content p a {
  color: #000;
  transition: color 0.3s ease-in-out;
}

.footer-info-content p a:hover {
  color: var(--accent-color);
}

/* Map right column */
.footer-map-right {
  padding-left: 40px;
}

.footer-map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.footer-map-embed iframe {
  display: block;
}

/* ── Dark copyright bar ── */
.footer-bottom-bar {
  background: var(--primary-color);
  padding: 22px 0;
}

.footer-copyright-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 15px;
}

.footer-copyright-text strong {
  color: var(--white-color);
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-menu ul li {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 30px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 4px;
  width: 4px;
  transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
  display: none;
}

.footer-menu ul li:hover {
  color: var(--accent-color);
}

.footer-menu ul li a {
  color: inherit;
}

/* Responsive footer */
@media (max-width: 991px) {
  .footer-map-right {
    padding-left: 15px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .footer-contact-heading {
    font-size: 30px;
  }

  .footer-menu ul {
    text-align: left;
    margin-top: 10px;
  }
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/page-header-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 225px 0 110px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      0deg,
      rgba(24, 85, 92, 0) 87.63%,
      rgba(24, 85, 92, 0.6) 100.45%
    ),
    linear-gradient(
      90deg,
      rgba(24, 85, 92, 0.9) 24.36%,
      rgba(24, 85, 92, 0) 100%
    );
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-box {
  position: relative;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 70px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  padding: 100px 0;
}

.approach-goal-item {
  position: relative;
  margin-bottom: 20px;
}

.approach-goal-img figure {
  display: block;
  border-radius: 20px;
}

.approach-goal-img figure:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 81, 74, 0) 37.39%,
    rgba(38, 81, 74, 0.8) 93.02%
  );
  z-index: 1;
}

.approach-goal-img img {
  width: 100%;
  aspect-ratio: 1 / 0.32;
  object-fit: cover;
}

.approach-goal-content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.approach-goal-content h3,
.mission-vision-item h3 {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--white-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.approach-goal-content h3::before,
.mission-vision-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}

.approach-goal-content h2 {
  font-size: 22px;
  color: var(--white-color);
  text-transform: capitalize;
}

.our-approach-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mission-vision-item {
  position: relative;
  width: calc(50% - 15px);
  background: url("../images/mission-vision-item-bg.html") no-repeat;
  background-position: top left;
  background-size: auto;
  background: var(--bg-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.mission-vision-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 999px 999px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.mission-vision-item.active::before,
.mission-vision-item:hover::before {
  height: 100%;
  border-radius: 0;
}

.mission-vision-item.active h3::before,
.mission-vision-item:hover h3::before {
  filter: brightness(0) invert(0);
}

.mission-vision-item h3,
.mission-vision-item h2,
.mission-vision-item p {
  position: relative;
  z-index: 1;
}

.mission-vision-item h3 {
  color: var(--primary-color);
  margin-bottom: 40px;
}

.mission-vision-item h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.mission-vision-item p {
  color: var(--primary-color);
  margin: 0;
}

.our-features {
  padding: 100px 0;
}

.our-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.our-features-item {
  width: calc(33.33% - 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.our-features-item:nth-child(even) {
  flex-direction: column-reverse;
}

.our-features-image figure {
  display: block;
  border-radius: 20px;
}

.our-features-image img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  border-radius: 20px;
}

.our-features-content {
  display: flex;
  gap: 15px;
}

.our-features-body {
  width: calc(100% - 95px);
}

.our-features-body h2 {
  font-size: 50px;
  margin-bottom: 25px;
}

.our-features-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.our-features-body p {
  margin: 0;
}

.our-features-content .icon-box img {
  width: 100%;
  max-width: 80px;
}

.our-team {
  padding: 100px 0 70px;
}

.team-item {
  height: calc(100% - 30px);
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.team-image {
  position: relative;
}

.team-image a {
  display: block;
  cursor: none;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-item:hover .team-social-icon {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.team-social-icon ul li a {
  width: 30px;
  height: 30px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.team-social-icon ul li a i {
  color: inherit;
  font-size: 16px;
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content h3 a {
  display: inline-block;
  color: inherit;
}

.team-content p {
  text-transform: capitalize;
  margin: 0;
}

.our-expertise {
  padding: 100px 0;
}

.our-expertise-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.our-expertise-body ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 30px;
}

.our-expertise-body ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.skills-progress-bar {
  margin-bottom: 30px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  color: var(--primary-color);
  text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  background: var(--divider-color);
  border-radius: 100px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 100px;
}

.expertise-image {
  position: relative;
  padding: 0 0 60px 80px;
  overflow: hidden;
  margin-left: 15px;
}

.expertise-img figure {
  display: block;
  border-radius: 20px;
}

.expertise-img img {
  width: 100%;
  aspect-ratio: 1 / 0.891;
  object-fit: cover;
  border-radius: 20px;
}

.expertise-image-list {
  max-width: 216px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1;
}

.expertise-list-img {
  border: 6px solid var(--bg-color);
  border-radius: 20px;
  overflow: hidden;
}

.expertise-list-img img {
  width: 100%;
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
}

.expertise-image .about-image-circle {
  top: auto;
  left: auto;
  right: 180px;
  bottom: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.page-services .service-item {
  background: var(--primary-color);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 15px;
}

.page-category-list {
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-category-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  background: var(--accent-color);
  padding: 26px 40px;
}

.page-category-list ul {
  background-color: var(--primary-color);
  list-style: none;
  margin: 0;
  padding: 40px;
}

.page-category-list ul li {
  text-transform: capitalize;
  line-height: 1.5em;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  color: var(--white-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.page-category-list ul li:hover a {
  color: var(--accent-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/arrow-white.svg") no-repeat;
  background-size: cover;
  background-position: center center;
  width: 22px;
  height: 22px;
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/sidebar-cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.sidebar-cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sidebar-cta-logo,
.cta-contact-item,
.sidebar-cta-image {
  position: relative;
  z-index: 1;
}

.sidebar-cta-logo {
  margin-bottom: 20px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 168px;
}

.cta-contact-item {
  background: var(--dark-divider-color);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.cta-contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cta-contact-header img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.cta-contact-header p {
  color: var(--white-color);
  margin-bottom: 0;
}

.cta-contact-item-content h3 {
  font-size: 24px;
  color: var(--white-color);
}

.cta-contact-item-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.cta-contact-item-content h3 a:hover {
  color: var(--accent-color);
}

.sidebar-cta-image {
  border-radius: 20px;
  overflow: hidden;
}

.sidebar-cta-image figure {
  display: block;
}

.sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 0.483;
  object-fit: cover;
}

.page-single-image {
  margin-bottom: 40px;
}

.page-single-image figure {
  display: block;
  border-radius: 20px;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
  border-radius: 20px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  padding-left: 30px;
}

.service-entry ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.service-deliver-box,
.service-quality-box,
.service-caring-box {
  margin-top: 60px;
}

.service-deliver-image-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-deliver-image,
.service-deliver-content {
  width: calc(50% - 15px);
}

.service-deliver-image figure {
  display: block;
  border-radius: 20px;
  height: 100%;
}

.service-deliver-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 20px;
}

.service-deliver-item {
  display: flex;
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
}

.service-deliver-item:last-child {
  margin-bottom: 0;
}

.service-deliver-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.service-deliver-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-deliver-item:hover .icon-box::before {
  transform: scale(1);
}

.service-deliver-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-deliver-item-content {
  width: calc(100% - 70px);
}

.service-deliver-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.service-deliver-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.service-quality-list,
.page-single-image-video {
  margin-top: 40px;
}

.page-single-image-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.page-single-image-video figure {
  display: block;
  border-radius: 20px;
}

.page-single-image-video figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 70%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-single-image-video img {
  width: 100%;
  aspect-ratio: 1 / 0.35;
  object-fit: cover;
  border-radius: 20px;
}

.page-single-image-video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.page-single-image-video .video-play-button a {
  width: 50px;
  height: 50px;
  margin: 0;
}

.page-single-image-video .video-play-button a:before,
.page-single-image-video .video-play-button a:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  opacity: 30%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.page-single-image-video .video-play-button a:after {
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.service-caring-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-caring-item {
  position: relative;
  width: calc(50% - 15px);
  display: flex;
  border-left: 4px solid var(--accent-color);
  background: var(--primary-color);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.service-caring-item:hover {
  background: transparent;
}

.service-caring-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.service-caring-item:hover::before {
  width: 100%;
}

.service-caring-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  z-index: 1;
}

.service-caring-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.service-caring-item:hover .icon-box::before {
  transform: scale(1);
}

.service-caring-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-caring-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.service-caring-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
}

.service-caring-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.service-caring-item:hover .service-caring-item-content h3,
.service-caring-item:hover .service-caring-item-content p {
  color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item {
  border-bottom-color: var(--divider-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
  color: var(--primary-color);
}

.page-single-faqs
  .faq-accordion
  .accordion-item
  .accordion-button.collapsed::after {
  color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-body p {
  color: var(--text-color);
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--divider-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-single-meta {
  margin-top: 5px;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.1em;
  margin: 0 0 0.4em;
}

.post-entry h1 {
  font-size: 70px;
}

.post-entry h2 {
  font-size: 50px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--primary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--accent-color);
  color: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	 23. Our Products css	  ***/
/************************************/

.page-product {
  padding: 100px 0;
}

.our-product-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-item {
  width: calc(25% - 22.5px);
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}

.product-image {
  margin-bottom: 15px;
}

.product-image img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.product-rating {
  margin-bottom: 15px;
}

.product-rating i {
  color: var(--accent-color);
}

.product-item-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-item-content h2 a {
  color: inherit;
}

.product-item-content h3 {
  font-size: 20px;
  color: var(--accent-color);
}

.product-item-content h3 span {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--primary-color);
  opacity: 30%;
}

.page-product .page-pagination {
  margin-top: 60px;
}

.product-slider {
  position: relative;
  display: block;
  padding: 0 40px;
}

.product-slider .swiper {
  overflow: hidden;
}

.product-slider .swiper-slide {
  height: auto;
}

.product-slider .product-item {
  width: 100%;
  height: 100%;
}

.product-slider-pagination {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  line-height: 0;
}

.product-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d9d9d9;
}

.product-slider-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.product-slider .product-slider-button-next,
.product-slider .product-slider-button-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-slider .product-slider-button-next:hover,
.product-slider .product-slider-button-prev:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.product-slider .product-slider-button-next::after,
.product-slider .product-slider-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s ease;
}

.product-slider .product-slider-button-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.product-slider .product-slider-button-next:hover::after,
.product-slider .product-slider-button-prev:hover::after {
  border-color: var(--white-color);
}

.product-slider .product-slider-button-prev {
  left: -6px;
}

.product-slider .product-slider-button-next {
  right: -6px;
}

/* Dhoop Cones Slider */
.dhoop-cones-slider {
  position: relative;
  display: block;
  padding: 0 40px;
}

.dhoop-cones-slider .swiper {
  overflow: hidden;
}

.dhoop-cones-slider .swiper-slide {
  height: auto;
}

.dhoop-cones-slider .product-item {
  width: 100%;
  height: 100%;
}

.dhoop-cones-pagination {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  line-height: 0;
}

.dhoop-cones-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d9d9d9;
}

.dhoop-cones-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.dhoop-cones-slider .dhoop-cones-button-next,
.dhoop-cones-slider .dhoop-cones-button-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dhoop-cones-slider .dhoop-cones-button-next:hover,
.dhoop-cones-slider .dhoop-cones-button-prev:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.dhoop-cones-slider .dhoop-cones-button-next::after,
.dhoop-cones-slider .dhoop-cones-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s ease;
}

.dhoop-cones-slider .dhoop-cones-button-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.dhoop-cones-slider .dhoop-cones-button-next:hover::after,
.dhoop-cones-slider .dhoop-cones-button-prev:hover::after {
  border-color: var(--white-color);
}

.dhoop-cones-slider .dhoop-cones-button-prev {
  left: -6px;
}

.dhoop-cones-slider .dhoop-cones-button-next {
  right: -6px;
}

/* Dhoop Sticks Slider */
.dhoop-sticks-slider {
  position: relative;
  display: block;
  padding: 0 40px;
}

.dhoop-sticks-slider .swiper {
  overflow: hidden;
}

.dhoop-sticks-slider .swiper-slide {
  height: auto;
}

.dhoop-sticks-slider .product-item {
  width: 100%;
  height: 100%;
}

.dhoop-sticks-pagination {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  line-height: 0;
}

.dhoop-sticks-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d9d9d9;
}

.dhoop-sticks-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.dhoop-sticks-slider .dhoop-sticks-button-next,
.dhoop-sticks-slider .dhoop-sticks-button-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dhoop-sticks-slider .dhoop-sticks-button-next:hover,
.dhoop-sticks-slider .dhoop-sticks-button-prev:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.dhoop-sticks-slider .dhoop-sticks-button-next::after,
.dhoop-sticks-slider .dhoop-sticks-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s ease;
}

.dhoop-sticks-slider .dhoop-sticks-button-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.dhoop-sticks-slider .dhoop-sticks-button-next:hover::after,
.dhoop-sticks-slider .dhoop-sticks-button-prev:hover::after {
  border-color: var(--white-color);
}

.dhoop-sticks-slider .dhoop-sticks-button-prev {
  left: -6px;
}

.dhoop-sticks-slider .dhoop-sticks-button-next {
  right: -6px;
}

/************************************/
/*** 	 24. Product Single css	  ***/
/************************************/

.page-product-single {
  padding: 100px 0;
}

.product-about-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}

.product-single-content,
.team-member-image {
  width: calc(50% - 30px);
}

.team-member-image {
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  align-content: center;
  padding: 100px 40px;
}

.team-member-image figure img {
  width: 100%;
  max-width: 400px;
}

.customer-rating-box {
  margin-bottom: 30px;
}

.customer-rating-box i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 2px;
}

.customer-rating-box i:last-child {
  margin-right: 0;
}

.customer-rating-box span {
  font-size: 14px;
  color: var(--primary-color);
  margin-left: 5px;
}

.product-single-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.product-single-content h3 span {
  font-size: 20px;
  color: var(--primary-color);
  opacity: 0.3;
  text-decoration: line-through;
}

.product-single-content h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.product-single-content p {
  margin-bottom: 20px;
}

.product-single-content ul {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 0 0 20px 0;
}

.product-single-content ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.product-single-content ul li:last-child {
  margin-bottom: 0;
}

.product-cart-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product-cart-btn input {
  display: block;
  width: 50px;
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  text-align: center;
  padding: 5px;
}

.product-cart-btn input:focus-visible {
  outline: none;
}

.product-cart-btn .btn-default {
  padding: 17px 20px;
}

.product-cart-btn .btn-default::before {
  display: none;
}

.product-single-info {
  margin-top: 100px;
}

.product-step-nav {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border: none;
}

.product-step-nav ul li {
  width: auto;
}

.product-step-nav ul li .nav-link {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  padding: 0;
  border-radius: 0;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
  background: transparent;
  color: var(--accent-color);
}

.product-step-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: auto;
  bottom: -32px;
  right: 0;
  background: var(--primary-color);
  width: 0;
  height: 2px;
  transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.product-tab-item-box h3 {
  font-size: 20px;
  margin-top: 20px;
}

.product-tab-item-box h2 {
  font-size: 46px;
  margin-top: 20px;
}

.product-tab-item-box p {
  margin: 20px 0 0 0;
}

.product-tab-item-box ul {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.product-tab-item-box ul li:last-child {
  margin-bottom: 0;
}

.product-review-from-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.review-form,
.customer-review-list {
  width: calc(50% - 30px);
}

.customer-review-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.customer-review-item:last-child {
  margin-bottom: 0;
}

.customer-review-item .icon-box {
  margin-right: 20px;
}

.customer-review-item .icon-box img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}

.customer-review-item-body {
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.customer-review-item-content p {
  margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
  margin-bottom: 0;
}

.customer-review-item-content p span {
  color: var(--primary-color);
  font-weight: 600;
}

.customer-review-item-rating i {
  color: var(--accent-color);
  font-size: 16px;
}

.review-form-content {
  margin-bottom: 30px;
}

.review-form-content h3 {
  font-size: 20px;
  margin: 0;
}

.review-form-content p {
  margin: 15px 0 0 0;
}

.review-form .form-control {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.445em;
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.review-form .form-control::placeholder {
  color: var(--primary-color);
}

.review-form-note {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.review-form-note .form-label {
  margin: 0;
}

.review-form .btn-default {
  width: 100%;
  padding: 17px;
  margin-top: 20px;
}

.review-form .btn-default::before {
  display: none;
}

.related-products-box {
  margin-top: 100px;
}

.related-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.related-products-box .section-title {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-single-image {
  margin-bottom: 60px;
}

.team-single-image figure {
  display: block;
  border-radius: 20px;
}

.team-single-image img {
  width: 100%;
  aspect-ratio: 1 / 1.58;
  object-fit: cover;
  border-radius: 20px;
}

.team-sidebar-category-box {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

.team-sidebar-category-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.team-sidebar-category-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.team-sidebar-category-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.team-category-info {
  display: flex;
  align-items: center;
}

.team-category-info img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.team-category-info p {
  margin-bottom: 0;
}

.team-sidebar-category-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-sidebar-category-item ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.team-sidebar-category-item ul li:last-child {
  margin-right: 0;
}

.team-sidebar-category-item ul li a {
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-sidebar-category-item ul li:hover a {
  background-color: var(--accent-color);
}

.team-sidebar-category-item ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.team-sidebar-category-item ul li:hover a i {
  color: var(--primary-color);
}

.team-member-about,
.team-member-service,
.team-skills-box {
  margin-bottom: 60px;
}

.team-member-about .section-title {
  margin-bottom: 0;
}

.member-service-list,
.member-service-counters {
  margin-top: 40px;
}

.member-service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-service-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.member-service-list ul li:last-child {
  margin-bottom: 0;
}

.member-service-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.member-service-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.member-service-counter-item {
  position: relative;
  width: calc(33.33% - 20px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px 35px;
  overflow: hidden;
}

.member-service-counter-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 500px 500px 0 0;
  transition: all 0.4s ease-in-out;
}

.member-service-counter-item:hover:before {
  height: 100%;
  border-radius: 0;
}

.member-service-counter-item h2,
.member-service-counter-item p {
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.member-service-counter-item h2 {
  font-size: 50px;
  margin-bottom: 5px;
}

.member-service-counter-item:hover h2 {
  color: var(--accent-color);
}

.member-service-counter-item p {
  margin-bottom: 0;
}

.member-service-counter-item:hover p {
  color: var(--white-color);
}

.team-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 40px;
}

.team-skills-list .skills-progress-bar {
  width: calc(50% - 15px);
  margin-bottom: 0;
}

.team-skills-list .skills-progress-bar .skill-data .skill-title,
.team-skills-list .skills-progress-bar .skill-data .skill-no {
  color: var(--text-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress {
  background: var(--divider-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress .count-bar {
  background: var(--primary-color);
}

/************************************/
/***  27. Testimonials Page css	  ***/
/************************************/

.page-testimonials {
  padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
  background-color: var(--primary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-content {
  margin-bottom: 40px;
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs Page css		  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.page-faqs .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0;
}

.contact-us-content {
  margin-right: 20px;
}

.contact-info-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item .icon-box {
  position: relative;
  background-color: var(--accent-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  height: 100%;
  height: 100%;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.contact-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.contact-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-item-content p {
  margin: 0;
}

.contact-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
  color: var(--primary-color);
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.contact-social-links h3 {
  font-size: 20px;
}

.contact-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-social-links ul li:last-child {
  margin-right: 0;
}

.contact-social-links ul li a {
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.contact-social-links ul li:hover a {
  background-color: var(--accent-color);
}

.contact-social-links ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a i {
  color: var(--primary-color);
}

.contact-us-form {
  position: relative;
  border-radius: 20px;
  padding: 40px;
}

.contact-form .form-control {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.445em;
  color: var(--white-color);
  background-color: var(--dark-divider-color);
  border: none;
  border-radius: 20px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--white-color);
}

.contact-form .btn-default {
  width: 100%;
  padding: 17px;
}

.contact-form .btn-default::before {
  display: none;
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe {
  height: 700px;
}

.google-map-iframe iframe {
  width: 100%;
  height: 700px;
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
  filter: grayscale(0);
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 45%;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  .btn-default {
    font-size: 16px;
    padding: 14px 50px 14px 15px;
  }

  .btn-default::before {
    width: 35px;
    height: 35px;
  }

  .navbar {
    padding: 20px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-row .section-title.section-title-center {
    max-width: 100%;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    padding-left: 25px;
    background-size: 18px auto;
  }

  .section-title h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .hero {
    padding: 170px 0 80px;
  }

  .hero-content .section-title p {
    max-width: 100%;
  }

  .hero-btn {
    margin: 0 0 30px;
  }

  .our-scrolling-ticker {
    padding: 20px 0;
  }

  .scrolling-ticker-box {
    --gap: 20px;
  }

  .scrolling-content span {
    font-size: 24px;
  }

  .scrolling-content span img {
    max-width: 26px;
    margin-right: 20px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us::before {
    bottom: 40px;
    width: 170px;
    height: 170px;
    opacity: 20%;
  }

  .about-us-images {
    max-width: 70%;
    margin: 0 auto 30px;
  }

  .about-image-circle {
    top: -65px;
  }

  .about-image-circle a img {
    max-width: 120px;
  }

  .about-us-list,
  .about-us-body {
    margin-bottom: 30px;
  }

  .about-us-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .about-us-footer {
    gap: 20px 30px;
  }

  .our-services {
    padding: 50px 0;
  }

  .service-item,
  .service-cta-box {
    padding: 30px;
  }

  .service-item .icon-box {
    height: 50px;
    width: 50px;
    margin-bottom: 30px;
  }

  .service-item .icon-box img {
    max-width: 26px;
  }

  .service-item-content {
    margin-bottom: 20px;
  }

  .service-item-content h3 {
    margin-bottom: 10px;
  }

  .service-cta-box-info {
    margin-bottom: 20px;
  }

  .service-cta-box-info h2 {
    font-size: 26px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-content,
  .why-choose-image {
    width: 100%;
  }

  .why-choose-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    padding-right: 0;
  }

  .why-choose-item-content h3 {
    font-size: 20px;
  }

  .why-choose-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .why-choose-btn {
    margin-top: 30px;
  }

  .why-choose-body-img img {
    aspect-ratio: 1 / 0.9;
    object-position: top center;
  }

  .why-choose-image {
    padding: 0 0 50px 0;
  }

  .why-choose-image img {
    aspect-ratio: 1 / 0.8;
    object-position: top center;
  }

  .company-experience-box h3 {
    font-size: 26px;
  }

  .intro-video {
    padding: 250px 0 50px;
  }

  .intro-video-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .intro-video-list ul {
    gap: 15px 20px;
  }

  .intro-video-list ul li {
    width: calc(50% - 10px);
    padding-left: 25px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-do-body {
    margin-bottom: 30px;
  }

  .what-we-do-list {
    width: calc(100% - 170px);
  }

  .what-we-do-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .what-we-do-body .about-image-circle a img {
    max-width: 140px;
  }

  .what-we-do-images {
    max-width: 80%;
    padding: 15px 240px 140px 25px;
    margin: 0 auto;
  }

  .what-we-do-img-1 img {
    aspect-ratio: 1 / 1.34;
  }

  .what-we-do-img-2 {
    top: 5px;
    right: 15px;
    max-width: 240px;
  }

  .what-we-do-img-2::before {
    right: 30px;
    height: 110px;
    width: 70px;
  }

  .what-we-do-img-2 img {
    aspect-ratio: 1 / 1.32;
  }

  .what-we-do-img-3 {
    max-width: 330px;
  }

  .what-we-do-img-3 img {
    aspect-ratio: 1 / 0.62;
  }

  .client-review-box {
    padding: 15px;
  }

  .our-facts-image {
    max-width: 60%;
    height: auto;
    margin: 0 auto;
  }

  .facts-counter-box {
    padding: 30px 0;
    margin: 30px 0;
  }

  .fact-counter-item h2 {
    font-size: 34px;
  }

  .our-facts-content {
    height: auto;
    margin-bottom: 30px;
  }

  .our-facts-list ul {
    gap: 15px 30px;
  }

  .our-facts-list ul li {
    padding-left: 25px;
  }

  .our-facts-btn {
    margin-top: 30px;
  }

  .our-potential {
    padding: 50px 0;
  }

  .our-potential-content {
    height: auto;
    margin-bottom: 30px;
  }

  .our-potential-counter {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .potential-counter-item .counter-circle {
    width: 100px;
    height: 100px;
  }

  .potential-counter-item .counter-circle h2 {
    font-size: 26px;
  }

  .potential-counter-content {
    width: calc(100% - 120px);
  }

  .potential-body-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .potential-body-content h3 {
    margin-bottom: 15px;
  }

  .our-potential-img {
    margin-left: 0px;
  }

  .our-potential-img img {
    aspect-ratio: 1 / 0.9;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .our-testimonial-image {
    margin: 0 0 30px;
  }

  .our-testimonial-image img {
    aspect-ratio: 1 / 0.8;
  }

  .testimonial-rating {
    margin-bottom: 10px;
  }

  .testimonial-content {
    margin-bottom: 50px;
  }

  .testimonial-content p {
    font-size: 18px;
  }

  .testimonial-slider .testimonial-button-next,
  .testimonial-slider .testimonial-button-prev {
    width: 40px;
    height: 40px;
  }

  .testimonial-slider .testimonial-button-next::before,
  .testimonial-slider .testimonial-button-prev::before {
    background-size: 20px auto;
  }

  .testimonial-company-slider {
    padding-top: 40px;
    margin-top: 40px;
  }

  .our-goals {
    padding: 50px 0;
  }

  .our-goals-content {
    margin-bottom: 30px;
  }

  .goals-item {
    padding: 20px;
  }

  .goals-item .icon-box {
    margin-bottom: 30px;
  }

  .goals-content-footer {
    margin-top: 30px;
  }

  .our-goals-images {
    margin-left: 0px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .our-faqs-content {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-cta-box {
    padding: 20px;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-item-content {
    margin-bottom: 15px;
  }

  footer.main-footer {
    padding: 50px 0 0 0;
  }

  .footer-newsletter-box {
    margin-bottom: 30px;
  }

  .newsletter-form .form-group {
    width: 100%;
  }

  .newsletter-form .form-group .form-control {
    padding: 12px 15px;
  }

  .newsletter-form .form-group .newsletter-btn i {
    font-size: 24px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-cta-box {
    margin-top: 30px;
    padding: 30px;
  }

  .footer-contact-item {
    padding-right: 20px;
    margin-right: 20px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  .footer-menu ul li {
    margin-right: 20px;
  }

  .footer-menu ul li::before {
    right: -14px;
  }

  .page-header {
    padding: 170px 0 80px;
  }

  .page-header-box h1 {
    font-size: 50px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .approach-goal-img img {
    aspect-ratio: 1 / 0.42;
  }

  .approach-goal-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .approach-goal-content h3,
  .mission-vision-item h3 {
    padding-left: 25px;
  }

  .approach-goal-content h3::before,
  .mission-vision-item h3::before {
    width: 18px;
    height: 18px;
  }

  .approach-goal-content h3 {
    margin-bottom: 10px;
  }

  .approach-goal-content h2 {
    font-size: 20px;
  }

  .mission-vision-item {
    padding: 20px;
  }

  .mission-vision-item h3 {
    margin-bottom: 30px;
  }

  .mission-vision-item h2 {
    margin-bottom: 15px;
  }

  .our-features {
    padding: 50px 0;
  }

  .our-features-item {
    width: 100%;
    align-items: center;
    gap: 20px 30px;
  }

  .our-features-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .our-features-image,
  .our-features-content {
    width: calc(50% - 15px);
  }

  .our-features-image img {
    aspect-ratio: 1 / 0.72;
  }

  .our-features-body {
    width: calc(100% - 75px);
  }

  .our-features-body h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .our-features-content .icon-box img {
    max-width: 60px;
  }

  .our-team {
    padding: 50px 0;
  }

  .team-image img {
    aspect-ratio: 1 / 0.98;
  }

  .our-expertise {
    padding: 50px 0;
  }

  .our-expertise-content {
    margin-bottom: 30px;
  }

  .our-expertise-body ul {
    margin: 0 0 30px;
  }

  .our-expertise-body ul li {
    padding-left: 25px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .expertise-image {
    margin-left: 0;
  }

  .expertise-image-list {
    max-width: 190px;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }

  .page-category-list {
    margin-bottom: 30px;
  }

  .page-category-list h3 {
    padding: 20px;
  }

  .page-category-list ul {
    padding: 30px;
  }

  .page-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .page-category-list ul li a {
    padding-right: 25px;
  }

  .page-category-list ul li a::before {
    width: 20px;
    height: 20px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo {
    margin-bottom: 15px;
  }

  .cta-contact-item {
    padding: 15px 20px;
    margin-bottom: 20px;
  }

  .cta-contact-item-content h3 {
    font-size: 22px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.35;
  }

  .page-single-image {
    margin-bottom: 30px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 10px 20px;
  }

  .service-entry ul li {
    padding-left: 25px;
  }

  .service-deliver-box,
  .service-quality-box,
  .service-caring-box {
    margin-top: 40px;
  }

  .service-deliver-image-content {
    margin-top: 30px;
  }

  .service-deliver-item {
    padding: 20px;
  }

  .service-quality-list,
  .page-single-image-video {
    margin-top: 30px;
  }

  .service-caring-item-list {
    gap: 20px;
    margin-top: 30px;
  }

  .service-caring-item {
    width: calc(50% - 10px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.42em;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    gap: 10px;
  }

  .post-tags .tag-links a {
    padding: 10px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-product {
    padding: 50px 0;
  }

  .product-slider {
    padding: 0 26px 42px;
  }

  .product-slider .product-slider-button-prev,
  .product-slider .product-slider-button-next {
    width: 36px;
    height: 36px;
  }

  .product-item {
    width: calc(50% - 15px);
    padding: 20px;
  }

  .product-image img {
    width: 200px;
    height: 200px;
  }

  .page-product .page-pagination {
    margin-top: 40px;
  }

  .page-product-single {
    padding: 50px 0;
  }

  .product-single-content,
  .team-member-image {
    width: 100%;
  }

  .team-member-image {
    padding: 30px;
  }

  .customer-rating-box {
    margin-bottom: 20px;
  }

  .product-single-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .product-single-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .product-single-content p {
    margin-bottom: 15px;
  }

  .product-single-content ul li {
    margin-bottom: 10px;
  }

  .product-cart-btn {
    margin-top: 20px;
  }

  .product-cart-btn .btn-default {
    padding: 15px;
  }

  .product-single-info {
    margin-top: 50px;
  }

  .product-step-nav {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-step-nav ul li .nav-link {
    font-size: 16px;
  }

  .product-step-nav ul li .nav-link::before {
    bottom: -21px;
  }

  .product-tab-item-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .product-tab-item-box p {
    margin: 15px 0 0 0;
  }

  .product-tab-item-box ul li {
    margin-top: 10px;
  }

  .review-form,
  .customer-review-list {
    width: 100%;
  }

  .customer-review-item {
    margin-bottom: 30px;
  }

  .customer-review-item-content p {
    margin: 0 0 5px 0;
  }

  .review-form .form-control {
    font-size: 16px;
    padding: 12px 15px;
  }

  .related-products-box {
    margin-top: 50px;
  }

  .related-products-box .section-title {
    margin: 0 auto 30px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-single-image {
    margin-bottom: 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.8;
  }

  .team-sidebar-category-box {
    padding: 30px;
  }

  .team-sidebar-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .team-sidebar-category-item ul li {
    margin-right: 10px;
  }

  .team-member-about,
  .team-member-service,
  .team-skills-box {
    margin-bottom: 40px;
  }

  .member-service-list,
  .member-service-counters {
    margin-top: 30px;
  }

  .member-service-list ul li {
    margin-bottom: 10px;
  }

  .member-service-counter-item {
    padding: 30px 25px;
  }

  .member-service-counter-item h2 {
    font-size: 38px;
  }

  .team-skills-list {
    gap: 30px;
    margin-top: 30px;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .page-testimonials .testimonial-item .testimonial-content {
    margin-bottom: 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .contact-us-content {
    margin: 0 0 30px;
  }

  .contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-social-links {
    margin-top: 20px;
    padding-top: 20px;
  }

  .contact-us-form {
    padding: 30px;
  }

  .contact-form .form-control {
    border-radius: 14px;
    padding: 13px 15px;
  }

  .contact-form .btn-default {
    padding: 14px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero::before {
    background:
      linear-gradient(
        0deg,
        rgba(24, 85, 92, 0.6) 87.63%,
        rgba(24, 85, 92, 0.6) 100.45%
      ),
      linear-gradient(
        90deg,
        rgba(24, 85, 92, 0.9) 24.36%,
        rgba(24, 85, 92, 0) 100%
      );
  }

  .hero-btn {
    gap: 20px;
  }

  .hero-counter-box h3 {
    font-size: 18px;
  }

  .our-scrolling-ticker {
    padding: 15px 0;
  }

  .scrolling-ticker-box {
    --gap: 15px;
  }

  .scrolling-content span {
    font-size: 20px;
  }

  .scrolling-content span img {
    max-width: 22px;
    margin-right: 15px;
  }

  .about-us-images {
    max-width: 100%;
    padding: 80px 90px 130px 16px;
  }

  .about-image-2 {
    max-width: 240px;
  }

  .about-image-3 {
    max-width: 190px;
  }

  .about-image-circle a img {
    max-width: 100px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-image,
  .about-body-content {
    width: 100%;
  }

  .about-body-content h3 {
    font-size: 18px;
  }

  .about-us-footer {
    gap: 15px 20px;
  }

  .contact-now-box .icon-box {
    width: 44px;
    height: 44px;
    margin-right: 5px;
  }

  .contact-now-box .icon-box img {
    max-width: 20px;
  }

  .contact-now-box-content p {
    margin-bottom: 2px;
  }

  .contact-now-box-content h3 {
    font-size: 18px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item .icon-box {
    margin-bottom: 20px;
  }

  .service-item-content h3 {
    font-size: 18px;
  }

  .service-cta-box {
    padding: 40px 20px;
  }

  .service-cta-box .contact-now-box .icon-box {
    margin-right: 15px;
  }

  .service-cta-box-info h3 {
    font-size: 18px;
  }

  .service-cta-box-info h2 {
    font-size: 22px;
  }

  .why-choose-content-box,
  .why-choose-body-img {
    width: 100%;
  }

  .why-choose-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .why-choose-item .icon-box {
    margin-bottom: 15px;
  }

  .why-choose-item-content h3 {
    font-size: 18px;
  }

  .why-choose-btn {
    margin-top: 20px;
  }

  .why-choose-img img {
    object-position: center center;
  }

  .company-experience-box {
    width: 110px;
    height: 110px;
    padding: 15px;
  }

  .company-experience-box h3 {
    font-size: 22px;
  }

  .company-experience-box p {
    font-size: 14px;
  }

  .intro-video .section-title {
    margin-bottom: 30px;
  }

  .video-play-button {
    justify-content: left;
  }

  .intro-video-list ul {
    gap: 10px;
  }

  .intro-video-list ul li {
    width: 100%;
  }

  .what-we-do-body {
    gap: 20px;
  }

  .what-we-do-list {
    width: 100%;
  }

  .what-we-do-body .about-image-circle a img {
    max-width: 100px;
  }

  .what-we-do-images {
    max-width: 100%;
    padding: 10px 150px 100px 15px;
  }

  .what-we-do-img-1 img {
    aspect-ratio: 1 / 1.45;
  }

  .what-we-do-img-2,
  .what-we-do-img-3 {
    border-width: 4px;
  }

  .what-we-do-img-2 figure,
  .what-we-do-img-3 figure {
    border-radius: 16px;
  }

  .what-we-do-img-2 {
    max-width: 150px;
  }

  .what-we-do-img-2::before {
    right: 18px;
    height: 80px;
    width: 40px;
  }

  .what-we-do-img-2 img {
    aspect-ratio: 1 / 1.4;
  }

  .what-we-do-img-3 {
    bottom: 10px;
    max-width: 180px;
  }

  .client-review-box {
    bottom: 10px;
    max-width: 140px;
    padding: 10px;
  }

  .client-review-images {
    margin-bottom: 5px;
  }

  .client-review-image {
    margin-left: -6px;
  }

  .client-review-image figure,
  .client-review-image.add-more {
    width: 30px;
    height: 30px;
  }

  .client-review-image.add-more p {
    font-size: 10px;
  }

  .client-review-content p {
    font-size: 12px;
  }

  .facts-counter-box {
    gap: 20px;
    padding: 20px 0;
    margin: 20px 0;
  }

  .fact-counter-item {
    width: calc(33.33% - 13.33px);
  }

  .fact-counter-item::before {
    right: -10px;
  }

  .fact-counter-item h2 {
    font-size: 28px;
  }

  .our-facts-list ul {
    gap: 10px;
  }

  .our-facts-list ul li {
    width: 100%;
  }

  .our-facts-image {
    max-width: 100%;
  }

  .our-facts-image img {
    aspect-ratio: 1 / 1.29;
    object-fit: contain;
  }

  .our-potential-counter {
    gap: 20px;
  }

  .potential-counter-item {
    width: 100%;
  }

  .potential-counter-item .counter-circle {
    border-width: 6px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  .potential-counter-content {
    width: calc(100% - 90px);
  }

  .potential-counter-item .counter-circle h2 {
    font-size: 20px;
  }

  .potential-counter-content h3 {
    font-size: 18px;
  }

  .potential-body-content h3 {
    font-size: 18px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .testimonial-body .author-content h3 {
    font-size: 18px;
  }

  .testimonial-btn {
    position: initial;
    justify-content: center;
  }

  .testimonial-company-slider {
    padding-top: 30px;
    margin-top: 30px;
  }

  .goals-item {
    width: 100%;
  }

  .goals-item .icon-box {
    margin-bottom: 20px;
  }

  .goals-item .icon-box img {
    max-width: 40px;
  }

  .goals-item-content h3 {
    font-size: 18px;
  }

  .goals-content-footer {
    gap: 15px;
  }

  .faq-cta-box .icon-box {
    margin-right: 10px;
  }

  .faq-cta-box .icon-box img {
    max-width: 45px;
  }

  .faq-cta-box .faq-cta-content {
    width: calc(100% - 55px);
  }

  .faq-cta-content p {
    margin-bottom: 5px;
  }

  .faq-cta-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding-right: 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 16px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding-right: 0px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-link-list {
    justify-content: initial;
    gap: 30px 60px;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-links ul li {
    margin-bottom: 5px;
  }

  .footer-cta-box {
    padding: 20px;
  }

  .footer-logo,
  .footer-contact-box {
    width: 100%;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-contact-box {
    justify-content: left;
  }

  .footer-contact-item {
    padding-right: 10px;
    margin-right: 10px;
  }

  .footer-contact-item::before {
    right: -10px;
  }

  .footer-contact-item:nth-of-type(2n + 2)::before {
    display: none;
  }

  .footer-contact-item p {
    margin-bottom: 5px;
  }

  .footer-contact-item h3 {
    font-size: 16px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .footer-copyright-text {
    margin-bottom: 5px;
    text-align: center;
  }

  .footer-menu ul {
    text-align: center;
  }

  .page-header-box h1 {
    font-size: 30px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .approach-goal-img img {
    aspect-ratio: 1 / 0.82;
  }

  .approach-goal-content {
    right: 15px;
    bottom: 20px;
    left: 15px;
  }

  .approach-goal-content h2 {
    font-size: 18px;
  }

  .our-approach-content {
    gap: 20px;
  }

  .mission-vision-item {
    width: 100%;
  }

  .mission-vision-item h3 {
    margin-bottom: 15px;
  }

  .mission-vision-item h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .our-features-item:nth-child(even) {
    flex-direction: column;
  }

  .our-features-image,
  .our-features-content {
    width: 100%;
  }

  .our-features-image img {
    aspect-ratio: 1 / 0.67;
  }

  .our-features-body {
    width: calc(100% - 60px);
  }

  .our-features-body h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .our-features-body h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .our-features-content .icon-box img {
    max-width: 45px;
  }

  .team-content {
    padding: 15px;
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .our-expertise-body ul {
    gap: 10px;
  }

  .our-expertise-body ul li {
    width: 100%;
  }

  .skills-progress-bar .skillbar .skill-progress {
    height: 14px;
  }

  .expertise-image {
    padding: 0 0 50px 40px;
  }

  .expertise-img figure,
  .expertise-img img {
    border-radius: 20px;
  }

  .expertise-image-list {
    max-width: 120px;
  }

  .expertise-list-img {
    border-width: 3px;
    border-radius: 12px;
  }

  .expertise-image .about-image-circle {
    right: 80px;
  }

  .page-category-list h3 {
    font-size: 18px;
    padding: 15px 20px;
  }

  .page-category-list ul {
    padding: 20px;
  }

  .sidebar-cta-box {
    padding: 20px;
  }

  .cta-contact-header {
    margin-bottom: 5px;
  }

  .cta-contact-item-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.5;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .service-deliver-image-content {
    gap: 20px;
  }

  .service-deliver-image,
  .service-deliver-content {
    width: 100%;
  }

  .service-deliver-image figure,
  .service-deliver-image img {
    height: auto;
  }

  .service-deliver-item {
    margin-bottom: 20px;
  }

  .service-deliver-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .page-single-image-video img {
    aspect-ratio: 1 / 0.6;
  }

  .service-caring-item {
    width: 100%;
    padding: 15px;
  }

  .service-caring-item-content h3 {
    font-size: 18px;
  }

  .page-single-faqs .faq-accordion .accordion-item .accordion-body figure,
  .page-single-faqs .faq-accordion .accordion-item .accordion-body p {
    width: 100%;
  }

  .post-single-meta ol li {
    font-size: 16px;
  }

  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .product-item {
    width: 100%;
  }

  .product-slider {
    padding: 0 0 38px;
  }

  .product-slider .product-slider-button-prev,
  .product-slider .product-slider-button-next {
    display: none;
  }

  .product-image img {
    width: 180px;
    height: 180px;
  }

  .product-item-content h3,
  .product-item-content h2 {
    font-size: 18px;
  }

  .customer-rating-box i {
    font-size: 16px;
  }

  .product-single-content h3 {
    font-size: 24px;
  }

  .product-single-content h3 span {
    font-size: 18px;
  }

  .product-single-content h2 {
    font-size: 26px;
  }

  .product-step-nav .nav-tabs {
    gap: 20px;
  }

  .product-tab-item-box h2 {
    font-size: 26px;
  }

  .customer-review-item .icon-box {
    margin-right: 10px;
  }

  .customer-review-item .icon-box img {
    max-width: 50px;
  }

  .customer-review-item-body {
    width: calc(100% - 60px);
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.05;
  }

  .team-sidebar-category-box {
    padding: 20px;
  }

  .team-sidebar-category-item h3 {
    font-size: 18px;
  }

  .member-service-counters {
    gap: 20px;
  }

  .member-service-counter-item {
    width: calc(50% - 10px);
    padding: 15px;
  }

  .member-service-counter-item h2 {
    font-size: 26px;
  }

  .team-skills-list {
    gap: 20px;
  }

  .team-skills-list .skills-progress-bar {
    width: 100%;
  }

  .contact-info-item .icon-box {
    margin-right: 10px;
  }

  .contact-item-content {
    width: calc(100% - 60px);
  }

  .contact-item-content h3,
  .contact-social-links h3 {
    font-size: 18px;
  }

  .contact-social-links {
    gap: 10px;
  }

  .contact-social-links ul li {
    margin-right: 5px;
  }

  .contact-social-links ul li a {
    width: 36px;
    height: 36px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}

.why-choose {
  background: #e9dede;
  padding: 80px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  width: 200px;
}

.stat-box i {
  font-size: 45px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.counter {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 22px;
}

@media (max-width: 768px) {
  .stats-container {
    gap: 40px;
  }
}

.quality-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.quality-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 70px;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.feature-icon {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: var(--primary-color);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feedback {
  background-color: var(--accent-color);
  color: var(--white-color) !important;
  padding: 4px 15px;
  padding-bottom: 10px !important;
  border-radius: 4px;
  border-color: var(--primary-color);
}

#mybutton {
  position: fixed;
  bottom: 50%;
  right: -50px;
  z-index: 99999;
  cursor: pointer;
  transform: rotate(-90deg);
}

.main-heading h2 {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(47, 54, 120, 0.35);
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

#callme {
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 70px;
  height: 70px;
  cursor: pointer;

  z-index: 99990;
}
#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(40 167 69);
  width: 60px;
  height: 60px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -6px;
  left: -6px;
  background-image: url(../images/mini.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes zcwmini {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}
@-moz-keyframes zcwmini {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}
@keyframes zcwmini {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}
@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}
@-moz-keyframes zcwmini2 {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}
@keyframes zcwmini2 {
  0% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 0 rgba(0, 0, 0, 0),
      0 0 0 0 rgba(207, 8, 8, 0);
  }
  10% {
    box-shadow:
      0 0 8px 6px,
      0 0 12px 10px rgba(0, 0, 0, 0),
      0 0 12px 14px;
  }
  100% {
    box-shadow:
      0 0 8px 6px rgba(207, 8, 8, 0),
      0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 40px rgba(207, 8, 8, 0);
  }
}

.gellery-block img {
  width: 100%;
  height: 250px; /* or any fixed height you prefer */
  object-fit: cover; /* keeps aspect ratio without distortion */
}

.gallery-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.gallery-img img {
  width: 100%;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-img:hover img {
  transform: scale(1.1);
}

/* Modal Image Zoom Animation */
.modal-img {
  width: 100%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Custom Close Button */
.custom-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ffffff;
  opacity: 1;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.custom-close:hover {
  background-color: #000;
  filter: invert(1);
}
