/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #192324;
  --secondery-color: #f8f8f8;
  --text-color: #283132;
  --accent-color: #1a438b;
  --white-color: #ffffff;
  --divider-color: #eaf0ec;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Hanken Grotesk", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  background-color: #ffffff;
  background-image: none !important;
  color: var(--text-color);
}

p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  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;
}

.image-anime2 {
  position: relative;
  overflow: hidden;
}

.image-anime2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.image-anime2:hover::before {
  -webkit-animation: circle 1s;
  animation: circle 1s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background-color: #1a438b;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  padding: 17px 46px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.btn-default:hover {
  background: transparent;
  color: var(--white-color);
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  transform: translate(-18px, -50%);
}

.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

.btn-default.btn-highlighted {
  background-color: #1a438b;
  color: white;
}

.btn-default.btn-highlighted:hover {
  color: var(--white-color);
}

.btn-default.btn-highlighted::before {
  background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
  filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
  background-color: var(--accent-color);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--accent-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(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
  margin-right: 30px;
}

.section-btn {
  text-align: end;
}

.section-title-content {
  margin-left: 120px;
}

.section-title-content p {
  margin: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-left: 35px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 24px;
  height: 5px;
}

.section-title h1 {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}

.section-title p {
  margin-top: 25px;
  margin-bottom: 15px; /* Added spacing for better flow */
  font-size: 17px; /* Optimized for readability */
  font-weight: 300; /* Balanced thickness */
  font-family: "Oswald", sans-serif; /* Elegant, readable font */
  line-height: 1.8; /* Improved spacing between lines */
  color: #444; /* Softer contrast for readability */
  text-align: justify; /* Makes text more structured */
  letter-spacing: 0.5px; /* Subtle refinement */
}

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
  color: var(--white-color);
}

.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: relative; */
  /* z-index: 100; */
  /* background-color:transparent; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
}

header.main-header .header-sticky {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

header.main-header .header-sticky .navbar {
  transition: padding 0.3s ease-in-out;
  padding: 20px 0; /* original full height at top of page */
}

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: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.main-header .header-sticky.active .main-menu ul li a {
  color: var(--primary-color);
  padding: 4px 10px !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

/* Plain navigation bar (un-scrolled): keep original styling */
header.main-header .header-sticky:not(.active) .main-menu ul li a:hover,
header.main-header .header-sticky:not(.active) .main-menu ul li a:focus,
header.main-header .header-sticky:not(.active) .main-menu ul li a.active,
header.main-header .header-sticky:not(.active) .main-menu ul li a.active:hover {
  color: #dfdfdf !important;
}

/* Sticky white navigation bar: Logo Blue (#1a438b) hover & active selection effect */
header.main-header .header-sticky.active .main-menu ul li a:hover,
header.main-header .header-sticky.active .main-menu ul li a:focus,
header.main-header .header-sticky.active .main-menu ul li a.active,
header.main-header .header-sticky.active .main-menu ul li a.active:hover,
header.main-header .header-sticky.active .main-menu ul li.active > a {
  color: #1a438b !important;
}

.navbar {
  align-items: center;
  border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
  border-bottom: none;
  padding: 4px 0; /* slim height on white sticky navbar */
  min-height: auto;
}
header.main-header .header-sticky.active .navbar-brand img {
  width: 110px;
  height: auto;
  object-fit: contain;
  transition: width 0.3s ease-in-out;
}


.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 160px;
  height: auto;
  transition: width 0.3s ease-in-out;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: end;
  margin-left: 40px;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 6px;
  position: relative;
}

.main-menu ul li a {
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 800;
  padding: 15px 14px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 6px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: #ffffff !important;
  border: 1px solid rgba(26, 67, 139, 0.25) !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 10px !important;
  outline: none !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}

.slicknav_btn:focus,
.slicknav_btn:active,
.slicknav_btn.slicknav_collapsed,
.slicknav_btn.slicknav_collapsed:focus,
.slicknav_btn.slicknav_collapsed:active {
  background: #ffffff !important;
  border-color: rgba(26, 67, 139, 0.25) !important;
  outline: none !important;
}

.slicknav_btn.slicknav_open {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.slicknav_icon {
  width: 20px;
  height: 14px;
  position: relative;
  margin: 0 auto;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  height: 2px !important;
  width: 20px !important;
  background-color: var(--accent-color) !important;
  border-radius: 4px;
  margin: 0 !important;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.slicknav_icon .slicknav_icon-bar:nth-child(1) {
  top: 0;
}

.slicknav_icon .slicknav_icon-bar:nth-child(2) {
  top: 6px;
}

.slicknav_icon .slicknav_icon-bar:nth-child(3) {
  top: 12px;
}

/* Open State - Perfect White Symmetrical Cross (X) */
.slicknav_btn.slicknav_open .slicknav_icon-bar,
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar {
  background-color: #ffffff !important;
}

.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(1),
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}

.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(2),
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0 !important;
}

.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(3),
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

/* Collapsed State - Royal Blue 3 Bars */
.slicknav_btn.slicknav_collapsed .slicknav_icon-bar,
.navbar-toggle a.slicknav_btn.slicknav_collapsed .slicknav_icon span.slicknav_icon-bar {
  background-color: var(--accent-color) !important;
  opacity: 1 !important;
  transform: none !important;
}

.main-header .navbar {
  position: relative !important;
}

.slicknav_menu {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0 !important;
}

.slicknav_nav {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: var(--accent-color) !important;
  padding: 10px 0 !important;
  z-index: 9999 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.slicknav_nav.slicknav_hidden {
  display: none !important;
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 25px !important;
  color: var(--white-color) !important;
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--primary-color);
}



/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 280px 0 250px;
  min-height: 100vh;
  margin-top: -118px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 35, 36, 0.748) 0%,
    rgba(25, 35, 36, 0.534) 80.94%
  );
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero.hero-slider-layout {
  background: none;
  padding: 0;
  margin-top: 0;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide {
  height: 100vh;
  min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero.hero-slider-layout .hero-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 35, 36, 0.364) 0%,
    rgba(25, 35, 36, 0.512) 80.94%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 25px;
  text-align: left;
  padding-left: calc(((100vw - 1300px) / 2));
  z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
  color: var(--white-color);
}

.hero-content .section-title p {
  font-size: 22px;
  color: var(--white-color);
  width: 100%;
  max-width: 700px;
}

.hero-content .section-title h3::before {
  filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
  margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0 35px;
}

@media only screen and (min-width: 992px) {
  .about-us .row {
    align-items: flex-start !important;
  }
  .about-us-images {
    margin-top: 18px;
    padding-bottom: 0;
  }
  .about-img-2 {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
  }
  .about-img-2 figure {
    height: 390px !important;
    margin: 0;
  }
  .about-img-2 img {
    height: 390px !important;
    width: 100%;
    object-fit: cover;
    aspect-ratio: unset !important;
  }
}

.about-us-images {
  position: relative;
  background-image: url("../images/about-us-bg-shape.svg");
  background-repeat: no-repeat;
  background-position: left 60px bottom 40px;
  background-size: auto;
  padding-right: 0;
  padding-bottom: 0;
  margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
  display: block;
}

.about-img-1 img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.76;
}

.about-img-2 {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.about-img-2 img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.76;
}

.experience-counter {
  position: absolute;
  top: 50%;
  left: 0;
  height: 152px;
  width: 152px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: 6px solid var(--white-color);
  transform: translate(-65%, -50%);
  border-radius: 50%;
}

.experience-counter h3 {
  font-size: 34px;
  color: var(--white-color);
  text-align: center;
  width: 100%;
  margin-bottom: 5px;
}

.experience-counter p {
  font-weight: 300;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 0;
}

.about-us-content-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.about-us-content-body::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  border: 1px solid var(--divider-color);
  width: 1px;
  height: 100%;
}

.about-us-content-info {
  width: calc(50% - 40px);
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eaf0ec;
  border-bottom: 1px solid #eaf0ec;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.15;
  pointer-events: none;
}

.why-choose-us .section-title h2 {
  color: #0f172a !important;
}

.why-choose-us .section-title h2 span {
  color: #1a438b !important;
}

.why-choose-us .section-title p {
  color: #334155 !important;
}

.why-choose-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
  margin-top: 0;
  padding-left: 75px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 0;
}

.why-choose-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(26, 67, 139, 0.12);
  border-color: #1a438b;
}

.why-choose-item .icon-box {
  position: relative;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  flex: 0 0 45px;
  aspect-ratio: 1 / 1;
  background-color: #eef3fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
  background-color: #1a438b;
}

.why-choose-item .icon-box img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
  z-index: 1;
  filter: none;
  transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.why-choose-item-content {
  width: calc(100% - 60px);
}

.why-choose-item-content h2 {
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  line-height: 1.3em;
  color: #0f172a !important;
}

.why-choose-item-content p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.row.align-items-center {
  align-items: center; /* stop vertical centering against whole column */
}

.why-choose-images {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 75%;      /* takes a defined share of the row instead of shrinking to content */
  max-width: 75%;
  margin-left: 100px;   /* gap between text and image */
  padding-top: 0;      /* remove the old 90px push that may be misaligning it */

  }

/* .why-choose-img-box-1 { */
  /* display: flex; */
  /* gap: 20px; */
  /* width: 100%; /~ was 90% — let it use the full column width ~/ */
/* } */

/* .why-choose-img-1 figure { */
  /* display: block; */
/* } */

/* .why-choose-img-1 { */
  /* width: 100%; */
/* } */

/* .why-choose-img-1 img { */
 /* width: 100%; /~ was 90% — matches wrapper now ~/ */
  /* aspect-ratio: 4 / 3; /~ was 1 / 0.85 — less tall/cropped, shows more of the image ~/ */
  /* object-fit: cover; */
  /* border-radius: 10px; /~ optional, matches the rounded look in your screenshot ~/ */
/* } */
.why-choose-content-box .row,
.what-we-offer .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.why-choose-img-box-1 {
  width: 100%;
}

.why-choose-img-1 {
  width: 100%;
}

.why-choose-img-1 figure {
  display: block;
  width: 100%;
  margin: 0;
}

.why-choose-img-1 img {
  display: block;
  width: 100% !important;   /* force override any conflicting width rule */
  height: 400px !important; /* fixed height instead of aspect-ratio — avoids the shrink bug entirely */
  object-fit: cover;
  border-radius: 10px;
}
.why-choose-content-box .row ,
 .what-we-offer .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
/* .why-choose-img-box-1, */
/* .why-choose-img-box-2 { */
  /* display: flex; */
  /* gap: 20px; */
  /* width: 100%; */
/* } */

/* .why-choose-img-1 figure, */
/* .why-choose-img-2 figure, */
/* .why-choose-img-3 figure, */
/* .why-choose-img-4 figure { */
  /* display: block; */
/* } */

/* .why-choose-img-1 { */
  /* width: calc(57% - 10px); */
/* } */

/* .why-choose-img-1 img { */
  /* width: 100%; */
  /* aspect-ratio: 1 / 0.756; */
  /* object-fit: cover; */
/* } */

/* .why-choose-img-2 { */
  /* width: calc(43% - 10px); */
/* } */

/* .why-choose-img-2 img { */
  /* width: 100%; */
  /* aspect-ratio: 1 / 1.01; */
  /* object-fit: cover; */
/* } */

/* .why-choose-img-3 { */
  /* width: calc(67% - 10px); */
/* } */

/* .why-choose-img-3 img { */
  /* width: 100%; */
  /* aspect-ratio: 1 / 0.746; */
  /* object-fit: cover; */
/* } */

/* .why-choose-img-4 { */
  /* width: calc(33% - 10px); */
/* } */

/* .why-choose-img-4 img { */
  /* width: 100%; */
  /* aspect-ratio: 1 / 1.55; */
  /* object-fit: cover; */
/* } */

/* /~ Video section ~/ */
/* .video-section { */
  /* padding: 100px 0; */
  /* background-repeat: no-repeat; */
  /* background-position: center center; */
  /* background-size: cover; */
/* } */

/* .video-section .fullscreen-video-carousel { */
  /* height: 70vh; */
  /* width: 100%; */
  /* overflow: hidden; */
  /* position: relative; */
  /* background-color: #000; */
/* } */

/* .video-section .carousel-item { */
  /* height: 70vh; */
  /* position: relative; */
/* } */

/* .video-section .carousel-item video { */
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
/* } */

/* /~ Custom play/pause button ~/ */
/* .video-section .video-control-btn { */
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  /* width: 80px; */
  /* height: 80px; */
  /* background: rgba(255, 255, 255, 0.2); */
  /* border-radius: 50%; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* backdrop-filter: blur(5px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* transition: all 0.3s ease; */
  /* opacity: 0.8; */
  /* cursor: pointer; */
  /* z-index: 10; */
/* } */

/* .video-section .video-control-btn:hover { */
  /* background: rgba(255, 255, 255, 0.3); */
  /* opacity: 1; */
  /* transform: translate(-50%, -50%) scale(1.05); */
/* } */

/* .video-section .video-control-btn i { */
  /* font-size: 2rem; */
  /* color: var(--accent-color); */
  /* /~ margin-left: 5px; ~/ */
  /* font-weight: bold; */
/* } */

/* .video-section .video-control-btn .fa-play { */
  /* margin-left: 5px; */
/* } */

/* /~ Hide play button when video is playing ~/ */
/* .video-section .carousel-item.playing .fa-play { */
  /* display: none; */
/* } */

/* /~ Show pause button when video is playing ~/ */
/* .video-section .carousel-item.playing .fa-pause { */
  /* display: block !important; */
/* } */

/* .video-section .fa-pause { */
  /* display: none; */
/* } */

/* /~ Custom navigation buttons ~/ */
/* .video-section .custom-carousel-control { */
  /* width: 60px; */
  /* height: 60px; */
  /* background: rgba(255, 255, 255, 0.2); */
  /* border-radius: 50%; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* backdrop-filter: blur(5px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* transition: all 0.3s ease; */
  /* opacity: 0.7; */
/* } */

/* .video-section .custom-carousel-control:hover { */
  /* background: rgba(255, 255, 255, 0.3); */
  /* opacity: 1; */
/* } */

/* .video-section .custom-carousel-control i { */
  /* font-size: 1.5rem; */
  /* color: var(--accent-color); */
  /* font-weight: bold; */
/* } */

/* /~ Rounded indicators ~/ */
/* .video-section .carousel-indicators { */
  /* bottom: 30px; */
  /* margin: 0; */
  /* justify-content: center; */
/* } */

/* .video-section .carousel-indicators [data-bs-target] { */
  /* width: 12px; */
  /* height: 12px; */
  /* border-radius: 50%; */
  /* margin: 0 8px; */
  /* background-color: rgba(255, 255, 255, 0.5); */
  /* border: none; */
  /* transition: all 0.3s ease; */
/* } */
/* .video-section .carousel-indicators [data-bs-target].active { */
  /* background-color: var(--accent-color); */
  /* transform: scale(1.2); */
/* } */

/* /~ Video controls bar ~/ */
/* .video-section .video-controls { */
  /* position: absolute; */
  /* bottom: 80px; */
  /* left: 0; */
  /* right: 0; */
  /* padding: 0 20px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* opacity: 0; */
  /* transition: opacity 0.3s ease; */
  /* z-index: 10; */
/* } */

/* .video-section .carousel-item:hover .video-controls { */
  /* opacity: 1; */
/* } */

/* .video-section .progress-container { */
  /* width: 80%; */
  /* height: 4px; */
  /* background: rgba(255, 255, 255, 0.2); */
  /* border-radius: 2px; */
  /* margin: 0 15px; */
  /* cursor: pointer; */
/* } */

/* .video-section .progress-bar { */
  /* height: 100%; */
  /* background: var(--accent-color); */
  /* border-radius: 2px; */
  /* width: 0%; */
/* } */

/* Video section */
.video-section {
  padding: 30px 0 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

/* Full screen video player */
.fullscreen-video-player {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  background-color: #000;
}

.fullscreen-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom play/pause button — white circle, blue icon */
.video-control-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.video-control-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.video-control-btn i {
  font-size: 2rem;
  color: #0d6efd; /* blue icon — swap for your brand blue / var(--accent-color) if it's blue */
  font-weight: bold;
}

.video-control-btn .fa-play {
  margin-left: 5px;
}

.video-control-btn .fa-pause {
  display: none;
}

.video-control-btn.playing .fa-play {
  display: none;
}

.video-control-btn.playing .fa-pause {
  display: block;
}

/* Prev / Next buttons — white circle, blue icon */
.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

.video-nav-btn i {
  font-size: 1.3rem;
  color: #0d6efd;
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Progress bar */
.video-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.fullscreen-video-player:hover .video-controls {
  opacity: 1;
}

.progress-container {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 1px;
  cursor: pointer;
  padding: 6px 0;         /* invisible touch area without visual thickness */
  box-sizing: content-box;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: #ffffff;
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
}

/* YouTube-style thumbnail strip below the video */
.video-thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow-x: auto;
  padding: 25px 0 10px;
  scrollbar-width: thin;
}

.video-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb .thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb .thumb-play-icon i {
  color: #0d6efd;
  font-size: 0.85rem;
  margin-left: 2px;
}

.video-thumb:hover .thumb-play-icon {
  opacity: 1;
}

.video-thumb.active {
  border-color: #0d6efd;
}

.video-thumb.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Instagram More Channel Button - High Attraction Animations */
@keyframes ytPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6), 0 3px 10px rgba(225, 48, 108, 0.25);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(225, 48, 108, 0), 0 3px 10px rgba(225, 48, 108, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 48, 108, 0), 0 3px 10px rgba(225, 48, 108, 0.25);
  }
}

@keyframes ytSheenSweep {
  0% { transform: translateX(-140%) rotate(25deg); }
  30% { transform: translateX(250%) rotate(25deg); }
  100% { transform: translateX(250%) rotate(25deg); }
}

@keyframes ytFloatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.more-youtube-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 90px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #fafafa);
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #192324;
  text-decoration: none !important;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 800;
  gap: 6px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Metallic Glossy Sheen Sweep Overlay */
.more-youtube-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%) rotate(25deg);
  animation: ytSheenSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}

.more-youtube-btn .yt-badge {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  animation: ytPulseGlow 2s infinite;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.more-youtube-btn .yt-text-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-youtube-btn .yt-arrow-icon {
  font-size: 11px;
  color: #e1306c;
  transition: transform 0.3s ease;
}

.more-youtube-btn:hover {
  background: linear-gradient(145deg, #fff0f5, #ffffff);
  border-color: #e1306c !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.2);
  color: #e1306c !important;
}

.more-youtube-btn:hover .yt-badge {
  transform: scale(1.18) rotate(6deg);
}

.more-youtube-btn:hover .yt-arrow-icon {
  transform: translateX(4px);
}

/* Responsive video section layout: Title Left & 3 Thumbnails Right below video on Desktop */
@media only screen and (min-width: 992px) {
  .video-section {
    padding-top: 20px;
  }
  .fullscreen-video-player {
    height: calc(100vh + 60px);
    max-height: calc(100vh + 60px);
  }
  .video-top-title {
    display: none !important;
  }
  .video-bottom-title {
    display: block !important;
  }
  .video-bottom-content {
    padding-top: 30px;
  }
  .video-bottom-content .section-title {
    margin-bottom: 0;
    text-align: left;
  }
  .video-bottom-content .section-title h2 {
    font-size: 38px;
    line-height: 1.35;
  }
  .video-bottom-thumbs .video-thumbnails {
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    overflow: visible;
    gap: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us {
    padding: 40px 0 25px !important;
  }
  .about-us-images {
    margin: 20px 0 0 0 !important;
    padding-bottom: 0 !important;
  }
  .video-section {
    padding-top: 25px !important;
  }
  .video-top-title {
    display: none !important;
  }
  .video-bottom-title {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
  }
  .video-bottom-content {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .video-bottom-thumbs .video-thumbnails {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 4px !important;
    padding: 8px 0 !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
  }
  .video-nav-btn {
    width: 42px !important;
    height: 42px !important;
  }
  .video-nav-btn i {
    font-size: 1rem !important;
  }
  .video-control-btn {
    width: 52px !important;
    height: 52px !important;
  }
  .video-control-btn i {
    font-size: 1.25rem !important;
  }
  .video-thumb {
    flex: 0 0 24% !important;
    max-width: 24% !important;
    height: 50px !important;
    border-radius: 6px !important;
  }
  .more-youtube-btn {
    flex: 0 0 22% !important;
    max-width: 22% !important;
    height: 50px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    gap: 1px !important;
    padding: 5px 0 5px !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  .more-youtube-btn .yt-badge {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    margin: 2px auto 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .more-youtube-btn .yt-text-wrap {
    margin-top: 0 !important;
    margin-bottom: 2px !important;
    line-height: 1 !important;
  }
  .more-youtube-btn .yt-badge i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .more-youtube-btn .yt-arrow-icon {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fullscreen-video-player {
    height: 65vh;
  }
  .prev-btn { left: 12px !important; }
  .next-btn { right: 12px !important; }
}

@media (max-width: 480px) {
  .video-nav-btn {
    width: 38px !important;
    height: 38px !important;
  }
  .video-nav-btn i {
    font-size: 0.9rem !important;
  }
  .video-control-btn {
    width: 46px !important;
    height: 46px !important;
  }
  .video-control-btn i {
    font-size: 1.1rem !important;
  }
  .video-bottom-thumbs .video-thumbnails {
    gap: 6px !important;
  }
  .video-thumb {
    width: 90px !important;
    height: 56px !important;
  }
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
  padding: 100px 0;
  background-color: var(--secondery-color);
}

/* .flip-card { */
  /* background-color: transparent; */
  /* width: 100%; */
  /* height: 280px; */
  /* perspective: 1000px; */
/* } */

/* .flip-card-inner { */
  /* position: relative; */
  /* width: 100%; */
  /* height: 100%; */
  /* text-align: center; */
  /* transition: transform 0.6s; */
  /* transform-style: preserve-3d; */
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
/* } */

/* .flip-card:hover .flip-card-inner { */
  /* transform: rotateY(180deg); */
/* } */

/* .flip-card-front, */
/* .flip-card-back { */
  /* position: absolute; */
  /* width: 100%; */
  /* height: 100%; */
  /* -webkit-backface-visibility: hidden; */
  /* backface-visibility: hidden; */
  /* border-radius: 10px; */
/* } */

/* .flip-card-front { */
  /* color: white; */
/* } */

/* .flip-card-back { */
  /* background-color: var(--accent-color); */
  /* color: white; */
  /* transform: rotateY(180deg); */
  /* height: 100%; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center; */
/* } */

/* .flip-card-back .card-text { */
  /* width: 80%; */
  /* margin: auto; */
/* } */

.service-item {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  border-radius: 12px;
  z-index: 1;
}

.service-item:hover::before {
  opacity: 0;
}

.service-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  text-align: left;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.service-item:hover .service-item-content {
  opacity: 0;
  transform: translateY(15px);
}

.service-item-content h3 {
  margin-bottom: 8px;
}

.service-item-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.all-services-btn {
  text-align: center;
  margin-top: 70px;
}

.flip-card-2 {
  background-color: transparent;
  width: 100%;
  height: 280px;
  perspective: 1000px;
}

.flip-card-inner-2 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-2:hover .flip-card-inner-2 {
  transform: rotateY(180deg);
}

.flip-card-front-2,
.flip-card-back-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card-front-2 {
  /* color: white; */
  background-color: var(--accent-color);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back-2 {
  transform: rotateY(180deg);
}

.flip-card-front-2 .card-text-2 {
  width: 80%;
  margin: auto;
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

/* Arkitek Reference Model Redesign for .our-project Section */
.our-project {
  position: relative;
  padding: 40px 0 35px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  border-top: 1px solid rgba(13, 110, 253, 0.12);
}

.our-Project-nav {
  text-align: center;
  margin-bottom: 60px;
}

.our-Project-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 30px;
  padding: 0;
  margin: 0;
}

.our-Project-nav ul li a {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform-origin: bottom right;
  transition: transform 0.4s ease-in-out;
  transform: scaleX(0);
}

.our-Project-nav ul li a:after {
  top: -8px;
  bottom: auto;
  left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.project-item {
  position: relative;
  height: 100%;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
}

.project-featured-image figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.project-featured-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.project-item:hover .project-featured-image figure::before {
  opacity: 0;
}

.project-featured-image figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-item:hover .project-featured-image figure img {
  transform: scale(1.05);
}

.project-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(20px);
  border-radius: 50%;
  transform: translate(-50%, -30%);
  transition: all 0.3s ease-in-out;
  z-index: 3;
}

.project-item:hover .project-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.project-btn a {
  width: 100px;
  height: 100px;
  background: var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.project-btn img {
  max-width: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
  background: var(--accent-color);
}

.project-btn a:hover img {
  transform: rotate(0deg);
}

.project-content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.project-item:hover .project-content {
  opacity: 0;
  transform: translateY(15px);
}

.project-content h3,
.project-content h2 {
  color: var(--white-color);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.project-content h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.project-content h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.28;
}

.project-content h2 a {
  color: inherit;
}

.our-project .all-services-btn {
  margin-top: 25px;
  text-align: center;
}

/* Hide Lightbox2 arrows */
.lb-prev,
.lb-next {
  display: none !important;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

/* .how-we-work { */
  /* background: var(--accent-color); */
    /* padding: 100px 0; */
          /* padding-top: 100px;(already commanded)
             padding-bottom: 50px; */
/* } */

/* .how-we-work-list { */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 30px; */
/* } */

.how-we-work {
  padding: 90px 0;
  background-color: #f7f9fc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  border-top: 1px solid rgba(13, 110, 253, 0.1);
  border-bottom: 1px solid rgba(13, 110, 253, 0.1);
  position: relative;
  overflow: hidden;
}

.how-we-work .row {
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.how-we-work .col-lg-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.story-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 35px rgba(11, 28, 56, 0.1);
}

.story-img-frame figure.image-anime {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.story-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.5s ease;
}

.image-anime img,
.image-anime2 img {
  opacity: 1 !important;
  visibility: visible !important;
}

.story-img-frame:hover img {
  transform: scale(1.03);
}

.how-we-work .section-title {
  padding-left: 30px;
}

.story-stats-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
}

.story-stat-card {
  flex: 1 1 0px;
  min-width: 0;
  background: #ffffff;
  padding: 24px 12px;
  min-height: 125px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 67, 139, 0.12);
  border-color: #1a438b;
}

.story-stat-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a438b;
  margin-bottom: 6px;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

.story-stat-card h3::before {
  display: none !important;
  content: none !important;
}

.story-stat-card p {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  margin: 0;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
  word-break: normal;
}

@media (max-width: 991px) {
  .how-we-work .section-title {
    padding-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .story-stats-grid {
    gap: 10px;
  }
  .story-stat-card {
    padding: 18px 8px !important;
    min-height: 92px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
  }
  .story-stat-card h3 {
    font-size: 21px !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
  }
  .story-stat-card p {
    font-size: 12px !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .story-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .story-stat-card {
    padding: 20px 16px !important;
    min-height: 85px !important;
  }
  .story-stat-card h3 {
    font-size: 24px !important;
  }
  .story-stat-card p {
    font-size: 14px !important;
  }
}

.how-we-work .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #192324 !important;
  margin-bottom: 18px;
}

.how-we-work .section-title h2 span {
  color: #1a438b !important;
}

.how-we-work .section-title p {
  color: #4a5568 !important;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.story-stat-card {
  background: #ffffff;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-stat-card:hover {
  transform: translateY(-3px);
  border-color: #1a438b;
  box-shadow: 0 8px 20px rgba(26, 67, 139, 0.08);
}

.story-stat-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a438b;
  margin-bottom: 4px;
}

.story-stat-card p {
  font-size: 13px;
  font-weight: 500;
  color: #64748b !important;
  margin-bottom: 0 !important;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .how-we-work {
    padding: 50px 0;
  }
  .story-title-mobile {
    text-align: center !important;
  }
  .story-title-mobile .section-title h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    color: #192324 !important;
    margin-bottom: 0;
    text-align: center !important;
  }
  .story-title-mobile .section-title h2 span {
    color: #1a438b !important;
  }
  .how-we-work .section-title {
    padding-left: 0;
    margin-top: 20px;
  }
  .how-we-work .section-title h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  .story-img-frame img {
    height: 280px;
  }
  .story-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .story-stat-card {
    padding: 10px 4px !important;
    border-radius: 10px;
    text-align: center !important;
  }
  .story-stat-card h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a438b !important;
    margin-bottom: 2px;
    text-align: center !important;
  }
  .story-stat-card p {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .story-stats-grid {
    gap: 5px;
  }
  .story-stat-card {
    padding: 8px 3px !important;
    text-align: center !important;
  }
  .story-stat-card h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
  }
  .story-stat-card p {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    text-align: center !important;
  }
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

/* .our-skill { */
  /* padding: 100px 0; */
  /* background: url("../images/section-bg-shape-2.svg"); */
  /* background-repeat: no-repeat; */
  /* background-position: center center; */
  /* background-size: contain; */
/* } */

/* .skills-progress-bar { */
  /* margin-bottom: 20px; */
/* } */

/* .skills-progress-bar:last-child { */
  /* margin-bottom: 0; */
/* } */

/* .skillbar .skill-data { */
  /* display: flex; */
  /* justify-content: space-between; */
  /* margin-bottom: 10px; */
/* } */

/* .skill-title { */
  /* font-size: 19px; */
  /* text-transform: capitalize; */
  /* color: var(--primary-color); */
/* } */

/* .skill-data .skill-no { */
  /* font-size: 16px; */
  /* color: var(--primary-color); */
  /* margin-left: 20px; */
/* } */

/* .our-skill-image { */
  /* position: relative; */
  /* padding-bottom: 155px; */
  /* margin-left: 65px; */
/* } */

/* .our-skill-img-1 { */
  /* width: 333px; */
  /* position: relative; */
  /* background: url("../images/our-skill-img-bg-dot.svg"); */
  /* background-repeat: no-repeat; */
  /* background-position: top left; */
  /* background-size: 84px auto; */
  /* padding: 30px 0 0 30px; */
/* } */

/* .our-skill-img-1 figure, */
/* .our-skill-img-2 figure, */
/* .our-skill-img-3 figure { */
  /* display: block; */
/* } */

/* .our-skill-img-1 img { */
  /* width: 100%; */
  /* aspect-ratio: 1/1.37; */
  /* object-fit: cover; */
/* } */

/* .our-skill-img-2 { */
  /* width: 202px; */
  /* position: absolute; */
  /* top: 70px; */
  /* right: 0; */
/* } */

/* .our-skill-img-2 img { */
  /* width: 100%; */
  /* aspect-ratio: 1/0.93; */
  /* object-fit: cover; */
/* } */

/* .our-skill-img-3 { */
  /* width: 333px; */
  /* position: absolute; */
  /* bottom: 0; */
  /* right: 0; */
/* } */

/* .our-skill-img-3 img { */
  /* width: 100%; */
  /* aspect-ratio: 1/0.97; */
  /* object-fit: cover; */
/* } */
/* Only show one content block at a time */
.skills-progress-bar {
  display: none;
  cursor: pointer;
}

.skills-progress-bar.active {
  display: block;
}

.skill-title {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #444 !important;
  letter-spacing: 0.5px;
  text-align: justify !important;
  margin-top: 15px;
}

.skill-title span.skill-label {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #192324;
  display: inline;
  margin-right: 6px;
  letter-spacing: 0.5px;
}

.skill-image-stage {
  width: 100%;
  max-width: 100%;
  height: 480px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
}

.skill-image-stage figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.skill-slide-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease-in-out;
}

.skill-slide-img.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2;
}

@media (max-width: 991px) {
  .skill-image-stage,
  .skill-slide-img {
    height: 360px;
  }
  .skill-title span.skill-label {
    font-size: 18px !important;
    line-height: 1.35 !important;
    display: inline-block;
    margin-bottom: 6px;
  }
  .skill-title {
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: justify !important;
  }
}

@media (max-width: 480px) {
  .skill-image-stage,
  .skill-slide-img {
    height: 280px;
  }
  .skill-title span.skill-label {
    font-size: 16.5px !important;
    line-height: 1.3 !important;
  }
  .skill-title {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
  }
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
  background: var(--secondery-color);
}

.our-testimonials .container-fluid {
  padding: 0;
}

.our-testimonials .row.no-gutters {
  align-items: stretch;
}

.our-testimonials-image {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-image-slider {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-image-slider .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-image-slider .swiper-wrapper {
  height: 100%;
}

.testimonial-image-slider .swiper-slide {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-image-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.testimonial-image-item figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: auto;
}

.testimonial-image-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-image-item:hover figure img {
  transform: scale(1.035);
}

/* Floating Project Pill Badge */
.testimonial-project-pill {
  position: absolute;
  bottom: 26px;
  left: 26px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 21, 29, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial-project-pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color, #c5a880);
  box-shadow: 0 0 10px var(--primary-color, #c5a880);
  display: inline-block;
  flex-shrink: 0;
}

.testimonial-project-pill .pill-client {
  color: #ffffff;
  font-weight: 600;
}

.testimonial-project-pill .pill-sep {
  opacity: 0.45;
  font-size: 11px;
}

.testimonial-project-pill .pill-location {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.our-testimonial-content {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.our-testimonial-content .section-title {
  background: url("../images/testimonial-quote.svg") no-repeat;
  background-position: top right;
  background-size: 130px auto;
  margin-bottom: 20px;
}

.testimonial-slider {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.testimonial-rating {
  margin-top: 4px;
  margin-bottom: 4px;
  display: flex;
  gap: 3px;
  align-items: center;
}

.testimonial-rating i,
.testimonial-rating .fas,
.testimonial-rating .far,
.testimonial-rating .fa-star,
.testimonial-rating .fa-star-half-alt {
  font-size: 17px !important;
  color: #f59e0b !important;
  margin-right: 2px;
}

.testimonial-content {
  margin-top: 6px;
  margin-bottom: 0;
}

.testimonial-content p {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 !important;
  font-style: italic;
  text-align: justify !important;
}

.testimonial-arrows-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px !important;
  margin-bottom: 12px !important;
  width: 100%;
}

/* Testimonial Footer Widget (Fills Blank Space) */
.testimonial-footer-widget {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tf-rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tf-score {
  font-size: 24px;
  font-weight: 800;
  color: #1a438b;
  line-height: 1;
}

.tf-stars {
  display: flex;
  gap: 2px;
}

.tf-stars i {
  font-size: 13px;
  color: #f59e0b;
}

.tf-stat-info {
  display: flex;
  flex-direction: column;
}

.tf-count {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.tf-label {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.tf-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1a438b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tf-nav-btn:hover {
  background: #1a438b !important;
  border-color: #1a438b !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 67, 139, 0.25) !important;
}

@media (min-width: 992px) {
  .testimonial-body {
    display: flex !important;
    align-items: center !important;
    gap: 26px !important;
  }

  .testimonial-body .author-image {
    width: 170px !important;
    height: 170px !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
}

.testimonial-body .author-image {
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 4px solid #1a438b !important;
  box-shadow: 0 10px 28px rgba(26, 67, 139, 0.25) !important;
  background: transparent !important;
  padding: 0 !important;
  position: relative !important;
}

.testimonial-body .author-image img,
.testimonial-avatar {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

/* Face Focus Zoom Classes for Standing/Full-Body Photos */
.avatar-focus-faisal {
  transform: scale(2.2);
  transform-origin: 50% 12%;
}

.avatar-focus-divya {
  transform: none !important;
  object-position: center !important;
}

.avatar-focus-abdul {
  transform: scale(2.0);
  transform-origin: 35% 25%;
}

@media (max-width: 991px) {
  .our-testimonial-content {
    padding: 30px 18px !important;
  }

  .testimonial-item {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .testimonial-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .testimonial-body .author-image {
    width: 145px !important;
    height: 145px !important;
    margin: 0 auto 12px auto !important;
    align-self: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    float: none !important;
  }

  .testimonial-body .author-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .testimonial-body .author-image img,
  .testimonial-avatar {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
  }

  .author-header-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 6px !important;
    width: 100% !important;
  }

  .testimonial-rating {
    justify-content: center !important;
  }

  .testimonial-body .author-content h3 {
    font-size: 19px !important;
    text-align: center !important;
  }

  .testimonial-content p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    text-align: justify !important;
  }
  
  .testimonial-footer-widget {
    padding: 16px 12px !important;
    margin-top: 15px !important;
  }
  
  .tf-stat-box {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }
  
  .tf-rating-badge {
    justify-content: center !important;
  }
  
  .tf-stat-info {
    align-items: center !important;
    text-align: center !important;
  }

  .tf-count {
    font-size: 13.5px !important;
  }

  .tf-label {
    font-size: 11.5px !important;
  }
  
  .tf-nav-buttons {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 14px !important;
  }
  
  .tf-nav-btn {
    width: 38px !important;
    height: 38px !important;
  }
}

.testimonial-body .author-image img,
.testimonial-avatar {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

/* Face Focus Zoom Classes for Standing/Full-Body Photos */
.avatar-focus-faisal {
  transform: scale(2.2);
  transform-origin: 50% 12%;
}

.avatar-focus-divya {
  transform: none !important;
  object-position: center !important;
}

.avatar-focus-abdul {
  transform: scale(2.0);
  transform-origin: 35% 25%;
}

.testimonial-body .author-content {
  flex-grow: 1 !important;
  width: auto !important;
}

.author-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.author-header-row h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1a438b !important;
  margin: 0 !important;
}

.testimonial-body .author-content h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a438b !important;
  text-transform: capitalize;
  margin-bottom: 4px !important;
}

.testimonial-body .author-content p {
  text-transform: capitalize;
  margin: 0;
}

.testimonial-rating-counter {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
  font-size: 58px;
}

.testimonial-client-rating {
  display: inline-block;
  background: var(--accent-color);
  padding: 0px 5px 3px 5px;
  line-height: 1em;
}

.testimonial-client-rating i {
  font-size: 10px;
  color: var(--white-color);
}

.testimonial-rating-content p {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0;
}
.testimonial-item .testimonial-body {
  margin-bottom: 20px;
  align-items: flex-start;
}

.testimonial-body .author-content .testimonial-rating {
  margin-bottom: 0;
}

.our-workflow {
  padding: 60px 0 80px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.our-workflow .section-title {
  margin-bottom: 10px;
  text-align: center;
}

/* 3-column content row */
.workflow-content-row {
  margin-top: 10px;
}

/* Center image column */
.workflow-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.workflow-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* ===== Quote Cards ===== */
.workflow-quotes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.wf-quote-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 20px 18px;
  border-left: 4px solid #1a438b;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wf-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(26, 67, 139, 0.12);
  border-color: #153770;
}

/* Icon circle */
.wf-quote-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a438b 0%, #153770 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 67, 139, 0.22);
}

.wf-quote-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: #1a438b;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wf-quote-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5e6668;
  margin-bottom: 0;
}

/* Right quotes: mirror the border accent */
.workflow-quotes-right .wf-quote-card {
  border-left: none;
  border-right: 4px solid #1a438b;
}

/* ===== Workflow Responsive ===== */

/* Tablet */
@media only screen and (max-width: 991px) {
  .our-workflow {
    padding: 50px 0 60px;
  }

  .workflow-content-row {
    flex-direction: column;
    align-items: center;
  }

  .workflow-quotes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }

  .workflow-quotes-right {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .wf-quote-card {
    flex: 1 1 calc(33.33% - 16px);
    min-width: 200px;
    border-left: 4px solid #1a438b;
    border-right: none;
  }

  .workflow-quotes-right .wf-quote-card {
    border-right: none;
    border-left: 4px solid #1a438b;
  }

  .workflow-image {
    max-width: 360px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .our-workflow {
    padding: 40px 0 50px;
  }

  .workflow-quotes {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .workflow-quotes-right {
    margin-top: 24px;
  }

  .wf-quote-card {
    flex: 1 1 100%;
    padding: 16px 14px;
  }

  .wf-quote-card h4 {
    font-size: 15px;
  }

  .wf-quote-card p {
    font-size: 12.5px;
  }

  .workflow-image {
    max-width: 280px;
  }
}
/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 20px;
}



.post-featured-image figure,
.post-featured-image a {
  display: block;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
  cursor: pointer;
}

.post-item-content {
  margin-bottom: 15px;
}

.post-item-content h3 {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.4em;
}

.post-item-content h3 a {
  color: inherit;
}

.post-item-btn a {
  position: relative;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: capitalize;
  padding-right: 25px;
}

.post-item-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0px, -50%);
  width: 17px;
  height: 16px;
  background: url("../images/arrow-dark.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
  transform: translate(2px, -50%);
}

.our-blog-footer {
  margin-top: 20px;
  text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/
footer {
  background: linear-gradient(135deg, #0b1c38 0%, #153770 100%);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.04;
  pointer-events: none;
}

footer h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
}

footer .footer-logo {
  width: 180px;
  margin-top: -26px;
}

footer .quick-links ul li a {
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer .quick-links ul li a:hover {
  color: #4e95ff !important;
}

footer .quick-links ul li .active {
  color: #ffffff !important;
  font-weight: 500 !important;
}

footer .address a {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

footer .address a:hover {
  color: #4e95ff !important;
}

footer .social-media a {
  color: var(--primary-color);
}

footer .icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--divider-color);
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}

footer .social-media .icon-container:hover {
  background-color: var(--accent-color);
  cursor: pointer;
}

.footer-copyright {
  text-align: center;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.footer-copyright-text p a {
  color: var(--white-color);
}

.footer-copyright-text p a:hover {
  color: var(--primary-color);
}
.footer-map-box {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-map-box iframe {
  width: 100%;
  height: 100%;
}
footer .social-media {
  margin-bottom: 25px;
}

footer .social-media + h3,
footer .social-media + h4,
footer .social-media + p {
  margin-top: 25px;
}


/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

/* .page-header { */
  /* position: relative; */
  /* background: url("../images/175.jpg"); */
  /* background-repeat: no-repeat; */
  /* background-position: center center; */
  /* background-size: cover; */
  /* padding: 160px 0 110px; */
  /* margin-top: -118px; */
/* } */
.page-header {
  position: relative;
  background: url("../images/minimalist-interior-design.webp");
  background-repeat: no-repeat;
  background-position: center 12%;
  background-size: cover;
  padding: 245px 0 65px;
  margin-top: -118px;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 35, 36, 0.45) 0%,
    rgba(25, 35, 36, 0.22) 50%,
    rgba(25, 35, 36, 0.32) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.about-us.page-about-us {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 40px;
}

.about-facility-list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-facility-item {
  width: calc(33.33% - 20px);
  display: flex;
}

.about-facility-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.about-facility-item .icon-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-facility-item:hover .icon-box:before {
  transform: scale(1);
}

.about-facility-item .icon-box img {
  max-width: 34px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.about-facility-content {
  width: calc(100% - 80px);
}

.about-facility-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.about-facility-content p {
  margin-bottom: 0;
}

.vision-mission {
  position: relative;
  padding: 100px 0 50px;
  background-image: linear-gradient(
      180deg,
      rgba(9, 13, 22, 0.60) 0%,
      rgba(15, 23, 42, 0.75) 60%,
      var(--white-color) 40%
    ),
    url("../images/768.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.vision-mission .section-title h3 {
  color: #60a5fa !important;
}

.vision-mission .section-title h2 {
  color: #ffffff !important;
}

.vision-mission-box {
  background-color: var(--secondery-color);
  padding: 45px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 150px;
}

.vision-mission-item {
  position: relative;
  width: calc(50% - 75px);
}

.vision-mission-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: -75px;
  bottom: 0;
  background-color: var(--divider-color);
  z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
  display: none;
}

.vision-mission-item .icon-box {
  position: relative;
  width: 95px;
  height: 95px;
  background: var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
  transform: scale(1);
}

.vision-mission-item .icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.vision-mission-content p {
  text-align: justify !important;
  margin-bottom: 0;
}

.vm-more-text.collapse.show,
.vm-more-text.collapsing {
  display: inline !important;
  text-align: justify !important;
}

.read-more-btn {
  color: #1a438b !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 8px !important;
}

.read-more-btn:hover,
.read-more-btn:focus,
.read-more-btn:active {
  color: #0284c7 !important;
  text-decoration: none !important;
}

.read-more-btn .arrow-icon {
  font-size: 12px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .vm-more-text.collapse:not(.show) {
    display: inline !important;
    height: auto !important;
    visibility: visible !important;
  }
  .read-more-btn {
    display: none !important;
  }
}

.our-faqs {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.our-faqs-content {
  margin-right: 70px;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.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: 300;
  line-height: 1.2em;
  color: var(--primary-color);
  align-items: start;
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
  margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-color);
  text-align: right;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-accordion .accordion-body {
  padding-right: 35px;
}

.faq-accordion .accordion-body p {
  margin: 0;
}

.our-faqs-image {
  text-align: right;
}

.our-faqs-image figure {
  display: block;
}

.our-faqs-image img {
  width: 100%;
  aspect-ratio: 1 / 1.26;
  object-fit: cover;
}

.our-clients {
  /* margin-top: 100px; */
  background-color: var(--secondery-color);
  padding: 100px 0;
}

.our-clients .our-clients-box {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.our-client-slider .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.our-client-slider .client-logo img {
  max-height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block; /* Removes extra space below image */
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
  padding: 35px 0 90px;
}

.service-fullscreen-stage {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  left: 0;
  right: 0;
  height: 520px;
  margin-bottom: 45px;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: hidden;
  perspective: 1400px;
}

.service-stage-swiper {
  width: 100%;
  height: 100%;
  padding: 8px 0 !important;
  perspective: 1400px;
}

.service-stage-swiper .swiper-wrapper {
  height: 100%;
  align-items: center;
  transform-style: preserve-3d;
}

/* Base slide styling with 3D depth and clean spacing */
.service-stage-swiper .swiper-slide {
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.96) translateZ(-30px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
              filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.5s ease, 
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.44) saturate(0.85);
  opacity: 0.86;
  will-change: transform, filter;
}

/* Semi-transparent dark overlay for side (half portion) slides */
.service-stage-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  border-radius: 8px;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
}

/* Center Active Slide: lifts forward (translateZ 0), flat, full brightness & clarity */
.service-stage-swiper .swiper-slide-active {
  transform: scale(1) translateZ(0) rotateY(0deg) !important;
  filter: brightness(1) saturate(1) contrast(1) !important;
  opacity: 1 !important;
  z-index: 10 !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16) !important;
}

.service-stage-swiper .swiper-slide-active::after {
  opacity: 0;
}

/* Left (Prev) Slide: subtle 3D curved gallery wall perspective */
.service-stage-swiper .swiper-slide-prev {
  transform: scale(0.96) translateZ(-30px) rotateY(3.5deg) !important;
  transform-origin: right center !important;
  z-index: 4;
}

/* Right (Next) Slide: subtle 3D curved gallery wall perspective */
.service-stage-swiper .swiper-slide-next {
  transform: scale(0.96) translateZ(-30px) rotateY(-3.5deg) !important;
  transform-origin: left center !important;
  z-index: 4;
}

.service-stage-swiper .stage-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
}

.service-stage-swiper .stage-img-box figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Parallax zoom effect: image inside slide zooms from 1.06 down to 1.0 when entering center */
.service-stage-swiper .stage-img-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
  border-radius: 8px;
  display: block;
  transform: scale(1.06);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  will-change: transform;
}

.service-stage-swiper .swiper-slide-active .stage-img-box figure img {
  transform: scale(1.0);
}

.service-stage-swiper .swiper-slide-active:hover .stage-img-box figure img {
  transform: scale(1.03);
}

/* Title Tag: standard architectural badge with spring-ease entrance */
.service-stage-swiper .stage-img-title-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-stage-swiper .swiper-slide-active .stage-img-title-tag {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.12s;
}

/* Fullscreen Hover Overlay */
.service-stage-swiper .stage-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  z-index: 5;
}

.service-stage-swiper .swiper-slide-active:hover .stage-img-overlay {
  opacity: 1;
}

.view-img-btn {
  padding: 10px 22px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(8px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.service-stage-swiper .swiper-slide-active:hover .view-img-btn {
  transform: translateY(0) scale(1);
}

.view-img-btn:hover {
  background: #ffffff;
  color: #1a438b;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Standard Circular Navigation Arrows */
.service-fullscreen-stage .gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a438b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer !important;
  pointer-events: auto !important;
  user-select: none !important;
  touch-action: manipulation !important;
  opacity: 1 !important;
  z-index: 1005 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-fullscreen-stage .gallery-nav-btn i {
  pointer-events: none !important;
}

.service-fullscreen-stage .gallery-nav-btn.prev-btn {
  left: 36px;
}

.service-fullscreen-stage .gallery-nav-btn.next-btn {
  right: 36px;
}

.service-fullscreen-stage .gallery-nav-btn:hover {
  background: #1a438b;
  color: #ffffff;
  border-color: #1a438b;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(26, 67, 139, 0.4);
}

/* Standard Counter Tag */
.service-fullscreen-stage .gallery-counter-tag {
  position: absolute;
  bottom: 20px;
  right: 32px;
  padding: 7px 16px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 1px;
  z-index: 15;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-current-num {
  display: inline-block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Fullscreen Lightbox Modal */
.service-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close-btn {
  position: absolute;
  top: -55px;
  right: 0px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a438b;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 20;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.1) rotate(90deg);
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1322;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-lightbox-modal.active .lightbox-img-wrapper img {
  transform: scale(1);
}

.page-service-single {
  padding: 35px 0 90px;
  position: relative;
  background-color: #f8fafc;
  background-repeat: repeat;
  background-size: 380px 380px;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Description Intro Card Below Full-Width Slider (100% Glass Transparent - Only Box Lines) */
.service-intro-card {
  position: relative;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 42px 48px;
  border-radius: 24px;
  border: 1.5px solid rgba(26, 67, 139, 0.22);
  margin-bottom: 50px;
  box-shadow: none;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(26, 67, 139, 0.08);
  color: #1a438b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(26, 67, 139, 0.12);
}

.service-intro-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #192324;
  margin-bottom: 20px;
}

.service-intro-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 16px;
}

.service-intro-desc {
  position: relative;
}

.service-readmore-btn {
  display: none !important;
}

.service-intro-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-hl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  min-width: auto;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-hl-item:hover {
  transform: translateY(-3px);
}

.hl-number {
  font-size: 28px;
  font-weight: 800;
  color: #1a438b;
  line-height: 1.2;
  margin-bottom: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-hl-item:hover .hl-number {
  transform: scale(1.12);
  color: #2563eb;
}

.hl-text {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.hero-hl-item:hover .hl-text {
  color: #0f172a;
}

@media (max-width: 768px) {
  .page-service-single {
    padding: 20px 0 60px;
  }
  .service-fullscreen-stage {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 320px;
    margin-bottom: 25px;
    border-radius: 0;
    background: transparent !important;
  }
  .service-stage-swiper .swiper-slide {
    border-radius: 8px;
  }
  .service-stage-swiper .stage-img-box,
  .service-stage-swiper .stage-img-box figure img {
    border-radius: 8px;
  }
  .service-fullscreen-stage .gallery-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .service-fullscreen-stage .gallery-nav-btn.prev-btn { left: 8px; }
  .service-fullscreen-stage .gallery-nav-btn.next-btn { right: 8px; }
  .stage-img-title-tag {
    bottom: 10px !important;
    left: 10px !important;
    padding: 5px 12px !important;
    font-size: 11.5px !important;
    border-radius: 5px !important;
    max-width: calc(100% - 90px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .service-fullscreen-stage .gallery-counter-tag {
    padding: 5px 12px !important;
    font-size: 11px !important;
    border-radius: 5px !important;
    bottom: 10px !important;
    right: 10px !important;
  }
  .service-intro-card {
    padding: 24px 18px;
  }
  .service-intro-card h2 {
    font-size: 22px;
  }
  /* Mobile Read More / Read Less for Lengthy Descriptions */
  .service-intro-desc {
    position: relative;
    max-height: 115px;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-intro-desc::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.88) 65%, #f8fafc 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .service-intro-desc.expanded {
    max-height: 1400px;
  }

  .service-intro-desc.expanded::after {
    opacity: 0;
  }

  .service-readmore-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(26, 67, 139, 0.08);
    color: #1a438b;
    border: 1px solid rgba(26, 67, 139, 0.22);
    padding: 7px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(26, 67, 139, 0.08);
    transition: all 0.25s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .service-readmore-btn:hover,
  .service-readmore-btn:active {
    background: #1a438b;
    color: #ffffff;
    border-color: #1a438b;
  }

  .service-readmore-btn i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-readmore-btn.expanded i {
    transform: rotate(180deg);
  }
  .service-intro-highlights {
    gap: 15px 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    padding-top: 16px;
  }
  .hero-hl-item {
    flex: 1 1 28%;
    min-width: 85px;
    padding: 0;
  }
  .hl-number {
    font-size: 20px;
  }
  .hl-text {
    font-size: 9.5px;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .service-entry-list-image {
    padding: 0 !important;
    gap: 25px !important;
  }
  .service-entry-list ul li {
    padding-left: 32px !important;
    font-size: 14px !important;
  }
}

.service-entry {
  margin-bottom: 30px;
}

.service-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.service-entry h2 span {
  color: var(--accent-color);
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

/* Bottom Container - Clean Layout without Outer Box Lines & Equal Height Image (Like About Page) */
.service-entry-list-image {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
  margin-top: 50px;
}

.service-entry-image {
  position: relative;
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-entry-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(26, 67, 139, 0.15);
}

.service-entry-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
}

.service-entry-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-entry-image:hover figure img {
  transform: scale(1.04);
}

.service-entry-list {
  flex: 1 1 480px;
}

.service-entry-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry-list ul li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #334155;
  padding-left: 36px;
  margin-bottom: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  cursor: pointer;
}

.service-entry-list ul li:last-child {
  margin-bottom: 0;
}

.service-entry-list ul li::before {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #1a438b;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

.service-entry-list ul li:hover {
  transform: translateX(8px);
  color: #1a438b;
}

.service-entry-list ul li:hover::before {
  transform: scale(1.3);
  color: #2563eb;
  filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.4));
}

.image-switch-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
}

.image-switch-icon:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.service-entry-image,
.service-entry-list {
  width: calc(50% - 15px);
}

.service-entry-image figure {
  display: block;
}

.service-entry-image img {
  width: 100%;
  aspect-ratio: 1 / 0.615;
  object-fit: cover;
}

.service-entry-list ul {
  margin-bottom: 0;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

/* ===== Blog Alternating Layout ===== */
.blog-alternating {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.blog-alternating .blog-row {
  margin-bottom: 60px;
  padding: 0;
}

.blog-alternating .blog-row:last-child {
  margin-bottom: 0;
}

/* Reverse layout: image goes right, content goes left */
.blog-alternating .blog-row-reverse {
  flex-direction: row-reverse;
}

/* Image wrapper with curved edges */
.blog-alternating .blog-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-alternating .blog-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.blog-alternating .blog-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-alternating .blog-image-wrapper:hover img {
  transform: scale(1.04);
}

.blog-alternating .blog-image-link {
  text-decoration: none;
  display: block;
}

/* Content wrapper */
.blog-alternating .blog-content-wrapper {
  padding: 20px 30px;
}

.blog-alternating .blog-content-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--accent-color, #1a1a2e);
}

.blog-alternating .blog-content-wrapper h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.blog-alternating .blog-content-wrapper h3 a:hover {
  color: var(--primary-color, #2563eb);
}

.blog-alternating .blog-content-wrapper p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

/* Read More button */
.blog-alternating .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color, #2563eb);
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--primary-color, #2563eb);
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-alternating .blog-read-more:hover {
  background: var(--primary-color, #2563eb);
  color: #fff;
  transform: translateX(4px);
}

.blog-alternating .blog-read-more i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.blog-alternating .blog-read-more:hover i {
  transform: translateX(4px);
}

/* ===== Blog Alternating Responsive ===== */

/* Tablet */
@media only screen and (max-width: 991px) {
  .blog-alternating .blog-content-wrapper {
    padding: 20px 15px;
  }

  .blog-alternating .blog-content-wrapper h3 {
    font-size: 20px;
  }

  .blog-alternating .blog-image-wrapper img {
    height: 280px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .blog-alternating .blog-row,
  .blog-alternating .blog-row-reverse {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .blog-alternating .blog-image-col {
    margin-bottom: 20px;
  }

  .blog-alternating .blog-content-wrapper {
    padding: 10px 5px;
  }

  .blog-alternating .blog-content-wrapper h3 {
    font-size: 18px;
  }

  .blog-alternating .blog-image-wrapper img {
    height: 220px;
  }

  .blog-alternating .blog-read-more {
    font-size: 13px;
    padding: 8px 18px;
  }
}

.page-pagination {
  margin-top: 20px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
}

.post-image figure,
.post-image img {
  /* aspect-ratio: 1 / 0.5; */
  object-fit: cover;
  height: 100%;
}

.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.2em;
  margin: 0 0 0.6em;
}

.post-entry h1 {
  font-size: 80px;
  letter-spacing: -0.02em;
}

.post-entry h2 {
  font-size: 46px;
  letter-spacing: -0.02em;
}

.post-entry h3 {
  font-size: 46px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 300;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url(../images/icon-blockquote.svg), var(--accent-color);
  background-repeat: no-repeat;
  background-position: 35px 30px;
  background-size: 58px;
  border-radius: 0;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 0;
  padding: 6px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: 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(--accent-color);
  color: var(--white-color);
  border-radius: 0;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
  padding: 100px 0 70px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
  padding: 100px 0;
}

.project-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 30px;
}

.project-detail-list {
  border: 1px solid var(--divider-color);
  padding: 30px;
  margin-bottom: 60px;
}

.project-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.project-detail-item:last-child {
  margin-bottom: 0;
}

.project-detail-item .icon-box {
  position: relative;
  background-color: var(--divider-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
  transform: scale(1);
}

.project-detail-item .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.project-detail-item:hover .icon-box i {
  color: var(--white-color);
}

.project-detail-content {
  width: calc(100% - 70px);
}

.project-detail-content h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.project-detail-content p {
  color: var(--accent-color);
  text-transform: capitalize;
  margin-bottom: 0;
}

.project-single-image {
  margin-bottom: 40px;
}

.project-single-image figure {
  display: block;
}

.project-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
}

.project-info,
.project-design-info {
  margin-bottom: 60px;
}

.project-entry h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.project-entry p {
  margin-bottom: 20px;
}

.project-entry p:last-child {
  margin-bottom: 0;
}

.project-entry ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.project-entry ul li {
  position: relative;
  font-weight: 500;
  color: var(--text-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.project-entry ul li:last-child {
  margin-bottom: 0;
}

.project-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  top: 2px;
  left: 0;
}

.project-gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.project-gallery-img {
  width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
  display: block;
  cursor: pointer;
}

.project-gallery-img figure img {
  width: 100%;
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
}

/* philosophy */
.our-blog .row.section-row {
  align-items: flex-start; /* image top aligns with heading, not centered against whole column */
}

.our-blog .section-title-content {
  padding-top: 6px; /* fine-tune so image top lines up with heading top */
}

.our-blog .section-title-content .reveal {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.our-blog .section-title-content figure img { 
  height: 480px;      /* set explicit height so it doesn't stretch full column */
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media only screen and (min-width: 992px) {
  .our-blog .col-lg-7 .section-title-content {
    margin-left: 0; /* remove left margin to make the image larger */
  }
  .our-blog .col-lg-5 .section-title {
    padding-left: 30px; /* balanced spacing between the image and text */
  }
}

@media only screen and (max-width: 991px) {
  .our-blog .section-title-content figure img {
    height: 360px; /* adjust height for better fit on tablet/mobile */
  }
}

.our-blog .col-lg-6:last-child .section-title {
  padding-left: 120px; /* increases gap between image and text content */
}

/* Play icon overlay for video cards */
.project-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.project-play-icon i {
  font-size: 22px;
  color: var(--primary-color, #111);
  margin-left: 3px; /* optical centering for play triangle */
}

.project-item:hover .project-play-icon {
  background: var(--accent-color);
}

.project-item:hover .project-play-icon i {
  color: #fff;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 980px;
  max-height: 90vh;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-player {
  position: relative;
  width: 100%;
  max-height: 85vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-player video {
  width: 100%;
  max-height: 85vh;
  display: block;
  outline: none;
  object-fit: contain;
}

.video-modal-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  display: block;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  transition: transform 0.2s ease, color 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.15);
  color: #ef4444;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact-us-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-image figure {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.contact-us-image img {
  height: auto !important;
  width: 100% !important;
  max-height: 480px;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

.contact-us-form {
  margin-left: 30px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 14px 15px;
}

.contact-form .form-control::placeholder {
  font-weight: 400;
}

.google-map {
  padding: 50px 0 100px;
}

.google-map .section-title {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 30px;
  text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 500px;
}

.contact-info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.contact-info-item {
  width: calc(33.33% - 20px);
  display: flex;
}

.contact-info-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.contact-info-item .icon-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.contact-info-item:hover .icon-box:before {
  transform: scale(1);
}

.contact-info-item .icon-box i {
  position: relative;
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box i {
  color: var(--white-color);
}

.contact-info-content {
  width: calc(100% - 80px);
}

.contact-info-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-info-content p {
  margin-bottom: 0;
}

.contact-info-content p a {
  color: var(--primary-color);
  font-weight: bold;
}

.contact-info-content p a:hover {
  color: var(--accent-color);
}

/************************************/
/***      26. Responsive css      ***/
/************************************/
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .main-menu ul li {
    margin: 0;
  }

  .main-menu ul li a {
    font-size: 14px;
  }

  .hero-content .section-title h1 {
    font-size: 70px;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 100px 0 60px;
    height: 100vh;
    min-height: 100vh;
  }

  .video-section .fullscreen-video-carousel {
    height: 40vh;
  }

  .video-section .carousel-item {
    height: 40vh;
  }

  .video-section .video-control-btn {
    width: 50px;
    height: 50px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 50px;
    height: 50px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 834px) and (max-width: 1194px) and (orientation: portrait) {
  .main-menu ul li {
    margin: 0;
  }

  .main-menu ul li a {
    font-size: 14px;
  }

  .hero-content .section-title h1 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
    /* height: 110px; */
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .navbar-brand img {
    width: 100px;
    height: 50px;
    padding-left: 10px;
  }

  .navbar-toggle {
    display: block !important;
  }

  .contact-infos {
    display: none;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 100px 0 60px;
    height: 100vh;
    min-height: 100vh;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
      180deg,
      rgba(25, 35, 36, 0) 0%,
      rgba(25, 35, 36, 0.4) 80.94%
    );
    height: 80%;
    width: 100%;
    z-index: 1;
  }

  .intro-video {
    height: 200px;
  }

  .intro-content {
    height: 26vh;
  }

  .btn-default {
    padding: 14px 42px 14px 16px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-row .section-title {
    margin-bottom: 0;
    margin-right: 0px;
  }

  .section-title-content {
    margin-left: 0;
    margin-top: 15px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    margin-bottom: 10px;
  }

  .section-title h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    min-height: auto;
    padding: 180px 0 140px;
    margin-top: -92px;
  }

  .hero-content .section-title h1 {
    font-size: 80px;
  }

  .hero-content .section-title p {
    font-size: 20px;
    text-align: left;
    width: 100%;
  }

  .about-us {
    padding: 40px 0 10px;
  }

  .about-us-images {
    margin: 20px 0 0 0;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .about-img-2 {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    position: relative !important;
  }

  .experience-counter {
    height: 105px !important;
    width: 105px !important;
    top: 60% !important;
    left: 0 !important;
    transform: translate(-45%, -50%) !important;
    border: 4px solid var(--white-color) !important;
  }

  .experience-counter h3 {
    font-size: 21px !important;
    margin-bottom: 2px !important;
  }

  .experience-counter p {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-content {
    margin-bottom: 30px;
  }

  .why-choose-item-list {
    padding-left: 0;
    gap: 12px 10px;
  }

  .why-choose-item {
    padding: 12px 10px !important;
    border-radius: 10px;
  }

  .why-choose-item .icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex: 0 0 36px;
    aspect-ratio: 1 / 1;
    margin-right: 8px;
  }

  .why-choose-item .icon-box img {
    max-width: 16px;
  }

  .why-choose-item-content {
    width: calc(100% - 44px);
  }

  .why-choose-item-content h2 {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  

  /* .why-choose-images { */
    /* margin-left: 0; */
  /* } */

  .video-section {
    padding: 80px 0;
  }

  .video-section .fullscreen-video-carousel {
    height: 40vh;
  }

  .video-section .carousel-item {
    height: 40vh;
  }

  .video-section .video-control-btn {
    width: 50px;
    height: 50px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 50px;
    height: 50px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }

  .video-section .video-control-btn .fa-play {
    margin-left: 3px;
  }

  .video-section .video-controls {
    bottom: 40px;
  }

  .video-section .carousel-indicators {
    bottom: 20px;
  }

  .flip-card {
    margin-bottom: 40px;
  }

  .our-services {
    padding: 50px 0;
  }

  .service-image img {
    aspect-ratio: 1 / 1.2;
  }

  .service-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .all-services-btn {
    margin-top: 10px;
  }

  .video-play-button a {
    width: 80px;
    height: 80px;
  }

  .our-project {
    padding: 50px 0 20px;
  }

  .our-Project-nav {
    margin-bottom: 50px;
  }

  .project-featured-image img {
    aspect-ratio: 1 / 0.89;
  }

  .project-btn a {
    width: 80px;
    height: 80px;
  }

  .project-content {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }

  .how-we-work {
    padding: 50px 0;
  }

  .our-skill {
    padding: 120px 0;
    overflow: hidden; 
  }

  .our-skill-content {
    margin-bottom: 30px;
  }

  .skills-progress-bar {
    margin-bottom: 30px;
  }

  .our-skill-image {
    max-width: 555px;
    margin: 0 auto;
  }

  .our-testimonials-image {
    height: auto !important;
    width: 100% !important;
  }

  .testimonial-image-slider,
  .testimonial-image-slider .swiper {
    height: auto !important;
    width: 100% !important;
    aspect-ratio: 16 / 11;
  }

  .testimonial-image-slider .swiper-slide,
  .testimonial-image-item,
  .testimonial-image-item figure,
  .testimonial-image-item figure img {
    height: 100% !important;
    width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    object-fit: cover;
  }

  .testimonial-project-pill {
    bottom: 16px;
    left: 16px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .our-testimonial-content {
    padding: 50px 15px;
  }

  .our-testimonial-content .section-title {
    background-size: contain;
  }

  .testimonial-slider {
    max-width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .testimonial-rating {
    margin-bottom: 15px;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .testimonial-content p {
    font-size: 18px;
  }

  .testimonial-rating-counter .rating-counter h2 {
    font-size: 48px;
  }

  .our-blog {
    padding: 50px 0;
  }

  .our-blog .section-title {
    margin-right: 0;
  }

  .post-featured-image img {
    aspect-ratio: 1 / 0.75;
  }

  .our-blog-footer {
    margin-top: 10px;
  }

  footer .footer-logo {
    width: 140px;
    /* height: 90px; */
  }

  footer .quick-links {
    margin-top: 10px;
  }

  footer .social-media {
    margin-top: 10px;
  }

  footer .address {
    margin-top: 10px;
  }

  .footer-copyright {
    margin-top: 0px;
    padding: 20px 0;
  }

  .footer-copyright .footer-copyright-text p {
    font-size: 12px;
  }

  .page-header {
    padding: 170px 0 45px;
    margin-top: -92px;
    background-position: center 25%;
  }

  .page-header-box h1 {
    font-size: 42px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 18px;
  }

  .page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    font-size: 16px;
  }

  .about-facility-list {
    margin-top: 50px;
    gap: 20px;
  }

  .about-facility-item {
    width: calc(33.33% - 13.33px);
  }

  .about-facility-item .icon-box {
    height: 45px;
    width: 45px;
    margin-right: 10px;
  }

  .about-facility-item .icon-box img {
    max-width: 20px;
  }

  .about-facility-content {
    width: calc(100% - 55px);
  }

  .about-facility-content h3 {
    font-size: 18px;
  }

  .vision-mission {
    padding: 50px 0 25px;
    background-position: right center;
    background-image: linear-gradient(
        180deg,
        rgba(9, 13, 22, 0.80) 0%,
        rgba(15, 23, 42, 0.85) 55%,
        var(--white-color) 60%
      ),
      url("../images/768.jpg");
  }

  .vision-mission-box {
    padding: 30px 15px;
    gap: 30px 40px;
  }

  .vision-mission-item {
    width: calc(50% - 20px);
  }

  .vision-mission-item::before {
    right: -20px;
  }

  .vision-mission-item .icon-box {
    width: 70px;
    height: 70px;
  }

  .vision-mission-item .icon-box img {
    max-width: 30px;
  }

  .vision-mission-content h3 {
    margin-bottom: 15px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .our-faqs-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .our-faqs-image {
    text-align: center;
    margin-left: 0px;
  }

  .our-faqs-image img {
    aspect-ratio: 1 / 0.8;
  }

  .our-clients {
    padding: 50px 0;
  }

  .our-clients .our-clients-box {
    max-width: 100%;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-feature-image {
    margin-bottom: 30px;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry ul li {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .service-entry ul li::before {
    font-size: 18px;
  }

  .why-choose-content.service-single-why-choose {
    margin-bottom: 30px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry ul li {
    font-size: 16px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .post-tags .tag-links a {
    padding: 6px 15px;
  }

  .page-project {
    padding: 50px 0 20px;
  }

  .page-project-single {
    padding: 50px 0;
  }

  .project-single-sidebar {
    position: initial;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .project-detail-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .project-single-image {
    margin-bottom: 30px;
  }

  .project-info,
  .project-design-info {
    margin-bottom: 30px;
  }

  .project-entry h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .faq-sidebar {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li {
    margin-bottom: 15px;
  }

  .faq-catagery-list ul li a::before {
    width: 16px;
    height: 16px;
  }

  .our-faq-section.page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px;
  }

  .contact-us-image {
    height: auto !important;
    margin-bottom: 25px;
    text-align: center;
  }

  .contact-us-image img {
    height: auto !important;
    width: 100% !important;
    max-height: 380px !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
  }

  .contact-us-form {
    margin-left: 0;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .google-map {
    padding: 25px 0 50px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 400px;
  }

  .contact-info-box {
    gap: 20px;
    margin-top: 40px;
  }

  .contact-info-item {
    width: calc(33.33% - 13.33px);
  }

  .contact-info-item .icon-box {
    height: 50px;
    width: 50px;
    margin-right: 10px;
  }

  .contact-info-item .icon-box i {
    font-size: 16px;
  }

  .contact-info-content {
    width: calc(100% - 60px);
  }

  .contact-info-content h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 820px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content .section-title p {
    font-size: 18px;
  }

  .hero-content .btn-default {
    margin-right: 40px;
    margin-bottom: 10px;
  }

  .hero-content .section-title h1 {
    font-size: 60px;
  }

  .hero-content .btn-default.btn-highlighted {
    margin: 0;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 100px 0 60px;
    height: 100vh;
    min-height: 100vh;
  }

  .about-us-images {
    background-position: left 10px bottom 10px;
    background-size: 20% auto;
    padding: 0 15px 0 0;
  }

  .feedback-counter {
    transform: rotate(-180deg) translate(0, 0);
  }

  .feedback-counter p {
    font-size: 12px;
    height: 38px;
    width: 38px;
    margin: 0 0 6px 0;
  }

  .feedback-counter h3 {
    font-size: 12px;
    width: calc(100% - 40px);
  }

  .about-img-2 {
    width: calc(100% - 35px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    position: relative !important;
  }

  .experience-counter {
    height: 85px !important;
    width: 85px !important;
    top: 60% !important;
    left: 0 !important;
    transform: translate(-45%, -50%) !important;
    border: 3.5px solid var(--white-color) !important;
    padding: 2px;
  }

  .experience-counter h3 {
    font-size: 18px !important;
    margin-bottom: 1px !important;
    line-height: 1 !important;
  }

  .experience-counter p {
    font-size: 9.5px !important;
    line-height: 1.1em !important;
  }

  .about-us-content-body {
    gap: 0px;
  }

  .about-us-content-body::before {
    display: none;
  }

  .about-us-content-info {
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .about-us-content-list {
    margin-bottom: 20px;
  }

  .about-us-contact-list {
    width: 100%;
  }

  .about-us-content-list ul li {
    margin-bottom: 10px;
  }

  .about-us-content-list ul li::before {
    font-size: 18px;
    top: 3px;
  }

  .about-contact-item {
    margin-bottom: 20px;
  }

  .about-contact-content h3 {
    font-size: 18px;
  }

  .why-choose-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .why-choose-img-2 img {
    aspect-ratio: 1 / 1.02;
  }

  .why-choose-img-4 img {
    aspect-ratio: 1 / 1.588;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .project-btn a {
    width: 60px;
    height: 60px;
  }

  .project-btn img {
    max-width: 20px;
  }

  .project-content h2 {
    font-size: 18px;
  }

  .how-we-work-item {
    width: 100%;
  }

  .how-we-work-item .icon-box img {
    max-width: 50px;
  }

  .how-we-work-content h3 {
    font-size: 18px;
  }

  .how-work-company-slider {
    margin-top: 30px;
    padding-top: 30px;
  }

  .our-skill-image {
    padding-bottom: 83px;
  }

  .our-skill-img-1 {
    width: 200px;
    padding: 20px 0 0 20px;
  }

  .our-skill-img-2 {
    width: 130px;
    top: 20px;
  }

  .our-skill-img-3 {
    width: 200px;
  }

  .testimonial-rating {
    margin-bottom: 10px;
  }

  .testimonial-rating i {
    font-size: 16px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .testimonial-body .author-content h3 {
    font-size: 18px;
  }

  .testimonial-rating-counter .rating-counter h2 {
    font-size: 38px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .about-facility-item {
    width: 100%;
  }

  .vision-mission-box {
    padding: 20px;
    gap: 40px;
  }

  .vision-mission-item {
    width: 100%;
  }

  .vision-mission-item::before {
    height: 1px;
    width: 100%;
    top: auto;
    right: 0;
    bottom: -20px;
  }

  .vision-mission-item:nth-child(2n + 2)::before {
    display: block;
  }

  .vision-mission-item:last-child::before {
    display: none;
  }

  .vision-mission-content h3 {
    font-size: 18px;
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding-right: 30px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    top: 2px;
  }

  .faq-accordion .accordion-body {
    padding-right: 0;
  }

  .our-faqs-image img {
    aspect-ratio: 1 / 1.26;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-feature-image {
    margin-bottom: 20px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry-list-image {
    gap: 20px;
  }

  .service-entry-image,
  .service-entry-list {
    width: 100%;
  }

  .post-image figure,
  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    padding: 70px 20px 20px 20px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .project-single-image {
    margin-bottom: 20px;
  }

  .project-single-image img {
    aspect-ratio: 1 / 0.7;
  }

  .project-info,
  .project-design-highlight {
    margin-bottom: 20px;
  }

  .project-entry h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .project-entry ul li::before {
    font-size: 18px;
    top: 5px;
  }

  .project-gallery-images {
    gap: 20px;
  }

  .project-gallery-img {
    width: calc(50% - 10px);
  }

  .contact-us-image img {
    height: auto !important;
    width: 100% !important;
    max-height: 320px !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  .contact-info-item {
    width: 100%;
  }

  .error-page-image img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 668px) {
  .hero.hero-slider-layout .hero-slide {
    padding: 100px 0 60px;
    height: 100vh;
    min-height: 100vh;
  }

  .hero-content .section-title h1 {
    font-size: 40px;
  }

  .video-section .fullscreen-video-carousel {
    height: 80vh;
  }

  .video-section .carousel-item {
    height: 80vh;
  }

  .video-section .video-control-btn {
    width: 50px;
    height: 50px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 50px;
    height: 50px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 541px) {
  .hero.hero-slider-layout .hero-slide {
    padding: 90px 0 50px;
    height: 100vh;
    min-height: 100vh;
  }

  .video-section .fullscreen-video-carousel {
    height: 50vh;
  }

  .video-section .carousel-item {
    height: 50vh;
  }

  .video-section .video-control-btn {
    width: 50px;
    height: 50px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 50px;
    height: 50px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }

  .video-section .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
  }
}

@media only screen and (max-width: 431px) {
  .hero-content .section-title h1 {
    font-size: 40px;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 280px 0 140px;
    min-height: auto;
  }

  .video-section .fullscreen-video-carousel {
    height: 30vh;
  }

  .video-section .carousel-item {
    height: 30vh;
  }

  .video-section .video-control-btn {
    width: 30px;
    height: 30px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 30px;
    height: 30px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }

  .video-section .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
  }
}
@media (max-width: 767px) {
  .service-item {
    height: 260px;
  }
}
@media only screen and (max-width: 376px) {
  .hero.hero-slider-layout .hero-slide {
    padding: 240px 0 140px;
    min-height: auto;
  }

  .video-section .fullscreen-video-carousel {
    height: 30vh;
  }

  .video-section .carousel-item {
    height: 30vh;
  }

  .video-section .video-control-btn {
    width: 30px;
    height: 30px;
  }

  .video-section .video-control-btn i {
    font-size: 1rem;
  }

  .video-section .custom-carousel-control {
    width: 30px;
    height: 30px;
  }

  .video-section .custom-carousel-control i {
    font-size: 1rem;
  }

  .video-section .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
  }

  footer .icon-container a {
    font-size: 18px;
  }

  footer .icon-container {
    width: 30px;
    height: 30px;
  }
}

/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 1000;
  background-color: #25d366; /* WhatsApp green color */
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  animation: pulse 1.5s infinite ease-in-out;
}

.whatsapp-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Hover Effect */
.whatsapp-icon:hover {
  transform: scale(1.15); /* Slightly enlarge on hover */
}

/* Floating Social FAB Widget (Positioned Directly Above WhatsApp) */
.floating-social-widget {
  position: fixed;
  bottom: 126px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none !important;
}

.social-fab-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(51, 65, 85, 0.45), 0 0 15px rgba(71, 85, 105, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  pointer-events: auto !important;
}

/* SVG Dotted Circle Draw-and-Erase Animation Overlay */
.fab-ring-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
  z-index: 2;
}

.fab-ring-path {
  fill: none;
  stroke: url(#dotGradient);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircleStroke 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 4px rgba(148, 163, 184, 0.6));
}

.floating-social-widget.active .fab-ring-path {
  stroke: url(#dotGradientActive) !important;
  filter: drop-shadow(0 0 5px rgba(244, 63, 94, 0.7));
}

@keyframes drawCircleStroke {
  0% {
    stroke-dashoffset: 226;
  }
  38%, 62% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -226;
  }
}

.social-fab-toggle:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(26, 67, 139, 0.6);
}

.social-fab-toggle i {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-social-widget.active .social-fab-toggle {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 60%, #9f1239 100%);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.45), 0 0 15px rgba(244, 63, 94, 0.25);
}

.floating-social-widget.active .fab-ring-dots {
  stroke: #f43f5e;
  filter: drop-shadow(0 0 5px #f43f5e);
}

.floating-social-widget.active .social-fab-toggle i {
  transform: rotate(135deg);
}

/* Expanded Social Action Buttons */
.social-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  pointer-events: none;
}

.social-fab-item {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 22px;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(25px) scale(0.4);
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.social-fab-item i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.floating-social-widget.active .social-fab-menu {
  pointer-events: auto;
}

.floating-social-widget.active .social-fab-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-social-widget.active .social-fab-item.instagram-fab {
  transition-delay: 0.04s;
}

.floating-social-widget.active .social-fab-item.facebook-fab {
  transition-delay: 0.09s;
}

.floating-social-widget.active .social-fab-item.youtube-fab {
  transition-delay: 0.14s;
}

.social-fab-item.instagram-fab {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-fab-item.facebook-fab {
  background: linear-gradient(135deg, #2563eb 0%, #1877f2 100%);
}

.social-fab-item.youtube-fab {
  background: linear-gradient(135deg, #ef4444 0%, #ff0000 100%);
}

.social-fab-item:hover {
  transform: translateY(-4px) scale(1.15) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.social-fab-item:hover i {
  transform: scale(1.12);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  }
}
@media (max-width: 991px) {
  .how-we-work .section-title-content figure {
    max-width: 480px;
    margin: 0 auto;
  }

  .how-we-work .section-title-content figure img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 991px) {
  .our-blog .col-lg-7 {
    order: 2;
  }

  .our-blog .col-lg-5 {
    order: 1;
  }

  .our-blog .col-lg-7 .section-title-content {
    margin-top: 20px; /* gap now that image sits below text */
  }
}
@media only screen and (max-width: 991px) {
  .our-services .col-lg-4 {
    margin-bottom: 30px; /* gap between stacked service cards */
  }

  .service-item {
    height: 320px;
    position: relative;
    overflow: hidden; /* clips the image so it can't spill into the next card */
    border-radius: 10px;
  }

  .service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the fixed-height box without stretching/overflow */
    display: block;
  }

  .service-item-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .service-item {
    height: 280px; /* overrides your existing 260px rule with room for text */
  }
}

/* Services Page Intro & Cards Styling */
.page-services-desc {
  text-align: justify !important;
  text-justify: inter-word !important;
  line-height: 1.8 !important;
}

.page-services .service-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.page-services .service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-services .service-item:hover img {
  transform: scale(1.06);
}

.page-services .service-item-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-services .service-item:hover .service-item-content {
  transform: translateY(-4px);
}

.page-services .service-item-content h3 {
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

.page-services .service-item-content p {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  margin: 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .page-services .service-item {
    height: 300px;
  }
  .page-services .service-item-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .page-services .service-item-content h3 {
    font-size: 26px !important;
  }
  .page-services .service-item-content p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}
@media only screen and (max-width: 991px) {
  .our-skill .col-lg-6,
  .our-skill .why-choose-images,
  .our-skill .why-choose-img-box-1,
  .our-skill .why-choose-img-1,
  .our-skill .why-choose-img-1 figure {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
  }

  .our-skill .why-choose-img-1 figure img {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    display: block !important;
  }
}
@media only screen and (max-width: 991px) {
  .our-workflow .workflow-image,
  .our-workflow .workflow-image figure,
  .our-workflow .workflow-image figure img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .our-skill {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
  }

  .our-blog {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .our-testimonials {
    padding-bottom: 0 !important;
  }

  .our-testimonials .testimonial-slider .swiper {
    height: auto !important;
  }

  .our-testimonials .swiper-slide {
    height: auto !important;
  }

  .our-clients {
    margin-top: -20px !important; /* pull it up to close remaining gap */
  }
}
@media only screen and (max-width: 991px) {
  .page-contact-us .row {
    flex-direction: column;
  }

  .page-contact-us .col-lg-6:first-child {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-brand img,
  footer .footer-logo img {
    width: auto !important;
    height: 50px !important;
    max-width: 140px !important;
    object-fit: contain !important;
  }
}

/* Animated Video Bottom Caption Badge */
.video-bottom-content {
  margin-top: 25px;
  margin-bottom: 40px;
}

.video-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.92) 100%);
  border-radius: 50px;
  border: 1.5px solid rgba(26, 67, 139, 0.18);
  box-shadow: 0 10px 30px rgba(26, 67, 139, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.video-caption-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  animation: badgeShimmer 4s infinite ease-in-out;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  35% { left: 200%; }
  100% { left: 200%; }
}

.video-caption-badge:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(26, 67, 139, 0.35);
  box-shadow: 0 15px 35px rgba(26, 67, 139, 0.15);
}

.caption-sparkle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a438b 0%, #2563eb 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  animation: pulseIcon 2.5s infinite ease-in-out;
}

@keyframes pulseIcon {
  0% { transform: scale(1); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
  50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55); }
  100% { transform: scale(1); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
}

.caption-text-content {
  display: flex;
  flex-direction: column;
}

.caption-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: #1a438b;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.caption-headline {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.35;
}

.gradient-text-anim {
  background: linear-gradient(90deg, #1a438b, #2563eb, #3b82f6, #1a438b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientTextFlow 4s linear infinite;
  font-weight: 800;
}

@keyframes gradientTextFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 991px) {
  .video-bottom-content {
    margin-top: 10px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .video-bottom-thumbs {
    margin-bottom: 12px !important;
    display: flex;
    justify-content: center;
  }
  .video-bottom-title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 0px !important;
    width: 100%;
  }
  .video-caption-badge {
    padding: 10px 16px;
    gap: 12px;
    max-width: 100%;
    justify-content: center;
  }
  .caption-sparkle-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .caption-tag {
    font-size: 10px;
  }
  .caption-headline {
    font-size: 13px;
  }
}

/* Project Gallery Square Button & Separated Subcat Filter Styling */
.our-Project-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Main Type Tabs (Square Button Style) */
.project-main-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(26, 67, 139, 0.12);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.main-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  cursor: pointer;
}

.main-tab-btn:hover {
  color: #1a438b;
  background: rgba(255, 255, 255, 0.7);
}

.main-tab-btn.active-btn {
  background: #1a438b !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(26, 67, 139, 0.28);
}

/* Separated Subcategory Filter Box */
.subcat-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 67, 139, 0.18);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.subfilter-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a438b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-subcat-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-subcat-nav li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.project-subcat-nav li a:hover {
  color: #1a438b;
  border-color: rgba(26, 67, 139, 0.35);
  background: #ffffff;
  transform: translateY(-1px);
}

.project-subcat-nav li a.active-btn {
  background: #1a438b !important;
  color: #ffffff !important;
  border-color: #1a438b !important;
  box-shadow: 0 4px 12px rgba(26, 67, 139, 0.25);
}

@media (max-width: 768px) {
  .project-main-tabs {
    width: 100%;
    justify-content: center;
  }
  .main-tab-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 16px;
    font-size: 13.5px;
  }
  .subcat-filter-wrapper {
    flex-direction: column;
    padding: 14px 12px;
    width: 100%;
    border-radius: 12px;
  }
  .project-subcat-nav {
    justify-content: center;
    gap: 6px;
  }
  .project-subcat-nav li a {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* PhotoSwipe Gallery Items without text overlay on gallery page */
.page-project .project-item-box {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .page-project .project-item-box {
    margin-bottom: 30px;
  }
}

/* Load More Button Styling */
.project-load-more-wrap {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.project-load-more-btn {
  cursor: pointer;
  border-radius: 6px;
  padding: 16px 50px 16px 28px;
  box-shadow: 0 6px 20px rgba(26, 67, 139, 0.22);
  transition: all 0.35s ease-in-out;
}

.project-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 67, 139, 0.35);
}

.page-project .project-item-box .project-content {
  display: none !important;
}

.page-project .project-item-box .project-featured-image figure::before,
.page-project .project-item-box .project-item::before {
  display: none !important;
}

.page-project .project-item-box .project-featured-image figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.page-project .project-item-box .project-featured-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-project .project-item-box .project-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-project .project-item-box .project-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* PhotoSwipe Lightbox Arrow Hiding for Single-Item Categories & Caption Hiding */
.pswp--single-item .pswp__button--arrow--left,
.pswp--single-item .pswp__button--arrow--right {
  display: none !important;
}

.pswp__caption,
.pswp__caption__center {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  padding: 0 !important;
}

/* Video Card Styling & Play Button */
.project-item-box.type-video {
  margin-bottom: 30px;
}

.project-item-box.type-video .project-item {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-item-box.type-video .project-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

.project-item-box.type-video .project-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a438b 0%, #2563eb 100%);
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
  pointer-events: none;
}

.project-item-box.type-video:hover .project-play-icon {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.65);
}

.project-item-box.type-video .video-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.project-item-box.type-video .video-badge-tag i {
  color: #60a5fa;
  font-size: 11px;
}

.project-item-box.type-video.cat-video-shorts .video-badge-tag i {
  color: #f59e0b;
}

/* Watch More Videos Instagram Button */
.video-instagram-more-wrap {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.video-instagram-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  padding: 16px 36px !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none !important;
  border: none;
}

.video-instagram-btn::before,
.video-instagram-btn::after {
  display: none !important;
}

.video-instagram-btn i {
  font-size: 20px;
  color: #ffffff;
}

.video-instagram-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(220, 39, 67, 0.55);
  color: #ffffff !important;
}

/* Centering for single-item categories on desktop */
@media (min-width: 992px) {
  .project-item-boxes.single-item-centered {
    display: flex !important;
    justify-content: center !important;
  }
  .project-item-boxes.single-item-centered .project-item-box {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    float: none !important;
  }
}

/************************************/
/***    Blog Single Post Page CSS ***/
/************************************/

.page-single-post {
  padding: 50px 0 80px;
}

.page-single-post .post-image {
  margin: 0 auto 40px;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.page-single-post .post-image figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.page-single-post .post-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

.page-single-post .post-content {
  max-width: 920px;
  margin: 0 auto;
}

.page-single-post .post-entry p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 24px;
}

.page-single-post .post-entry h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a438b;
  margin-top: 36px;
  margin-bottom: 18px;
}

.page-single-post .post-entry ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.page-single-post .post-entry ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 10px;
}

/* What We Offer Section Scroll Controls below Description */
.offer-scroll-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.offer-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 67, 139, 0.12);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-scroll-btn:hover,
.offer-scroll-btn.active,
.offer-scroll-btn.selected {
  background: var(--accent-color) !important;
  color: #ffffff !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(26, 67, 139, 0.35) !important;
}

.offer-scroll-btn:active {
  transform: scale(0.95);
}

/* Pagination Dots at Opposite Right End of Controls */
.offer-scroll-controls {
  width: 100%;
}

.offer-dots-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.offer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-dot:hover {
  background: #94a3b8;
  transform: scale(1.25);
}

.offer-dot.active {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 3.5px rgba(26, 67, 139, 0.22);
  transform: scale(1.25);
}

@media (max-width: 991px) {
  .offer-scroll-mobile {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }
  
  /* Premium Projects mobile card vertical gap matching Innovative & Modern Designs */
  .our-project .project-item-box {
    margin-bottom: 24px !important;
  }
  .our-project .project-item-box:last-child {
    margin-bottom: 0 !important;
  }
}

/* Reduced Floating FAB Button Sizes on Mobile View (< 768px) */
@media (max-width: 767px) {
  .whatsapp-icon {
    bottom: 20px !important;
    right: 18px !important;
    padding: 7px !important;
  }
  .whatsapp-icon img {
    width: 32px !important;
    height: 32px !important;
  }

  .floating-social-widget {
    bottom: 84px !important;
    right: 18px !important;
  }

  .social-fab-toggle {
    width: 46px !important;
    height: 46px !important;
    font-size: 18px !important;
  }

  .fab-ring-svg {
    top: 50% !important;
    left: 50% !important;
    width: 64px !important;
    height: 64px !important;
    transform: translate(-50%, -50%) rotate(-90deg) !important;
  }

  .social-fab-item {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
  }
}

/* ==========================================================================
   Aroom Architectural Luxury Preloader (Minimalist High-End Edition)
   ========================================================================== */

.aroom-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #090b10;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
}

.aroom-preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Center Content */
.aroom-preloader-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

/* Logo Box & Shimmer */
.aroom-logo-box {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
}

.aroom-preloader-logo {
  max-width: 230px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
  animation: aroomLogoReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes aroomLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.aroom-logo-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: aroomShimmerPass 2.5s infinite 0.5s;
}

@keyframes aroomShimmerPass {
  0% {
    left: -100%;
  }
  60%, 100% {
    left: 200%;
  }
}

/* Live Counter Percentage */
.aroom-percent-wrap {
  margin-bottom: 15px;
}

.aroom-percent-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Progress Line Track */
.aroom-line-track {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 2px;
}

.aroom-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a438b 0%, #3b82f6 50%, #ffffff 100%);
  box-shadow: 0 0 10px #3b82f6;
  transition: width 0.1s linear;
}

/* Tagline */
.aroom-loader-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #64748b;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 767px) {
  .aroom-preloader-logo {
    max-width: 180px;
  }
  .aroom-line-track {
    width: 140px;
  }
}

/* ==========================================================================
   Get a Free Quote Popup Modal CSS
   ========================================================================== */

.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-card {
  position: relative;
  max-width: 860px;
  width: 100%;
  max-height: 94vh;
  overflow: hidden;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(26, 67, 139, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quote-modal-overlay.active .quote-modal-card {
  transform: translateY(0) scale(1);
}

/* Modal Close Button */
.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 20px;
  line-height: 1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quote-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg) scale(1.05);
}

/* Split-Card Grid */
.quote-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 520px;
}

/* Left Hero Side */
.quote-modal-hero {
  position: relative;
  background: linear-gradient(135deg, #091325 0%, #152c54 60%, #081020 100%);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.quote-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/contacts.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.quote-hero-content {
  position: relative;
  z-index: 2;
}

.quote-hero-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.quote-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #60a5fa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.quote-hero-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.quote-hero-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-hero-features li {
  font-size: 12px;
  font-weight: 500;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-hero-features li i {
  color: #25d366;
  font-size: 14px;
}

/* Right Form Side */
.quote-modal-form-wrap {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  position: relative;
}

.quote-modal-header {
  margin-bottom: 16px;
  padding-right: 40px;
}

.quote-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.quote-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a438b;
  margin: 0;
}

/* Input Fields & Groups */
.quote-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

.quote-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.quote-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 13.5px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.quote-input,
.quote-select {
  width: 100%;
  height: 40px;
  padding-left: 38px;
  padding-right: 12px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1e293b;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.quote-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%252364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 13px;
  cursor: pointer;
}

.quote-input:focus,
.quote-select:focus {
  background: #ffffff;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.quote-input-wrap:focus-within .quote-icon {
  color: #128c7e;
}

.quote-select:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Submit Button */
.quote-submit-btn {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20bd5a 0%, #0e7065 100%);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

.quote-status-msg {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  padding: 0;
  transition: all 0.3s ease;
}

.quote-status-msg.success {
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 8px 12px;
}

.quote-status-msg.error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 8px 12px;
}

@media (max-width: 820px) {
  .quote-modal-card {
    max-width: 94%;
    margin: 15px auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
  }
  .quote-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .quote-modal-hero {
    padding: 22px 20px 18px 20px;
    text-align: center;
    align-items: center;
  }
  .quote-hero-logo {
    max-width: 130px;
    margin-bottom: 8px;
  }
  .quote-hero-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .quote-hero-desc {
    font-size: 11.5px;
    margin-bottom: 0;
  }
  .quote-hero-features {
    display: none;
  }
  .quote-modal-form-wrap {
    padding: 20px 18px;
  }
  .quote-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .quote-input,
  .quote-select {
    height: 38px;
    font-size: 12px;
  }
}

/************************************/
/***   Company History Timeline   ***/
/************************************/

.aroom-history-section {
  padding: 80px 0 90px;
  background: #fff;
}

.history-subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  text-align: center;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ── Outer wrapper ── */
.history-track-outer {
  position: relative;
  margin-top: 60px;
  padding: 0 60px;
}

/* ── Inner flex row ── */
.history-track-inner {
  display: flex;
  align-items: flex-start;
  position: relative;
}

/* ── Horizontal dotted line across dot level ── */
.history-track-inner::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #bbb 0, #bbb 8px,
    transparent 8px, transparent 20px
  );
  z-index: 0;
}

/* ── Each milestone node ── */
.history-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* ── Year at top ── */
.history-year {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}

/* ── Dot on the line ── */
.history-dot-wrap {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.history-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary-color);
  transition: background 0.3s, transform 0.3s;
}

.history-dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(26, 67, 139, 0.15);
}

.history-node:hover .history-dot {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.35);
}

/* ── Description below dot ── */
.history-content {
  margin-top: 22px;
  text-align: center;
}

.history-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.history-content p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

.history-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ── Mobile: vertical timeline ── */
@media (max-width: 768px) {
  .aroom-history-section { padding: 40px 0 50px; }
  .history-track-outer { padding: 0 18px; margin-top: 30px; }

  .history-track-inner {
    flex-direction: column;
    gap: 0;
  }

  .history-track-inner::before {
    top: 6px;
    left: 17px;
    right: auto;
    width: 2px;
    height: calc(100% - 12px);
    background: repeating-linear-gradient(
      to bottom,
      #bbb 0, #bbb 8px,
      transparent 8px, transparent 18px
    );
  }

  .history-node {
    position: relative;
    padding: 0 0 30px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .history-node:last-child {
    padding-bottom: 0;
  }

  .history-dot-wrap {
    position: absolute;
    left: 8px;
    top: 3px;
    flex-shrink: 0;
  }

  .history-year {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 4px;
    text-align: left;
  }

  .history-content {
    margin-top: 0;
    text-align: left;
    width: 100%;
  }

  .history-tag {
    display: block;
    font-size: 11px;
    margin-bottom: 6px;
  }

  .history-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

