/* Inter Variable  */
@font-face {
  font-family: "Inter-Variable";
  src: url("../fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenirltstd-light";
  src: url("../fonts/Avenir LT Std 55 Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.font-alt {
  font-family: "Avenirltstd-light";
}

/* Set global font family */
body {
  font-family: "Inter-Variable", sans-serif;
  font-weight: 400; /* default weight */
  font-style: normal;
}

a {
  color: #7a7a7a;
}

a:hover {
  color: #eeeeee;
}

/* Custom weight or animation */
.custom-weight {
  font-weight: 450; /* intermediate weight */
  font-style: normal;
}

/* Using font variation settings for fine weight tuning */
.dynamic-weight {
  font-variation-settings: "wght" 675;
}

/* === Carousel Styling === */

/* Set the carousel's height to fill the screen minus navbar */
#carouselExampleCaptions {
  height: calc(100vh - 86px);
}

/* Make carousel-inner and items fill the container */
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
}

.carousel-item {
  position: relative; /* Ensure overlay/caption absolute positioning works */
}

.carousel-item img {
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 45% opacity, adjust as needed */
  z-index: 1;
}

/* Caption centering and styling */
.carousel-caption {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 18%;
  right: auto;
  transform: translate(-50%, -50%);
  text-align: right;
  width: 100%;
  padding: 0;
  z-index: 1;
}

.carousel-title {
  font-family: "Inter Variable", sans-serif;
  font-weight: 600;
  /* font-size: 1.5rem;  */
  color: #fff;
  line-height: 1.2;
  /* text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);  */
  margin: 0;
  padding: 0 2vw;
}

/* === Responsive: for small devices (less than 768px) === */
@media (max-width: 767.98px) {
  .carousel-title {
    font-size: 1.5rem;
    padding: 0 0.5rem;
    line-height: 1.1;
  }
  .carousel-caption {
    padding: 0 0.5rem;
  }
}

/* Inside Page header styles */

.hero-section {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Inter-Variable", sans-serif;
  font-weight: 400;
  font-size: 3rem; /* Match carousel caption size for desktop */
  letter-spacing: 1.5px;
  /* text-transform: uppercase; */
  line-height: 1.2;
  /* text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4); */
  margin: 0;
  text-align: center;
  z-index: 10;
  padding: 0 2vw;
  box-sizing: border-box;
  max-width: 95vw;
  white-space: normal; /* Allow wrapping for long titles */
}

/* Responsive: for small devices (less than 768px) */
@media (max-width: 767.98px) {
  .hero-section,
  .hero-image,
  .hero-overlay {
    height: 180px;
  }
  .hero-title {
    font-family: "Inter-Variable", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 0 0.5rem;
    line-height: 1.1;
    max-width: 95vw;
  }
}

/* Carousel Image animation  */

@keyframes subtleGrow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}

.carousel-item.active img.grow {
  animation: subtleGrow 3s forwards;
}

/* old styles */

.position-relative {
  position: relative;
}

body {
  font-weight: 400;
  font-size: 14px;
  color: #808080;
  line-height: 1.4;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.logo {
  font-family: "Inter", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: #000;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}

.btn {
  padding: 12px 20px;
  border-radius: 0;
}
.btn.btn-primary {
  background-color: #000;
  color: #fff;
  border: 2px solid transparent;
}
.btn.btn-primary:hover {
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
}

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-2 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-2.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-2 > .container {
  position: relative;
  z-index: 2;
}
.hero-2,
.hero-2 > .container > .row {
  height: 100vh;
  min-height: 600px;
}
.hero-2 h1,
.hero-2 .h1 {
  font-size: 50px;
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .hero-2 h1,
  .hero-2 .h1 {
    font-size: 30px;
  }
}
.hero-2 .intro-desc {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
}
@media (max-width: 767.98px) {
  .hero-2 .intro-desc {
    left: 20px;
  }
}
.hero-2 .intro-desc p {
  color: rgba(255, 255, 255, 0.8);
}

.line {
  width: 50px;
  height: 1px;
  background: #fff;
  margin-bottom: 10px;
}

.sec-1 .heading {
  margin-bottom: 70px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .sec-1 .heading {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.sec-1 .heading:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 300%;
  background: #000;
  right: 0;
  bottom: 0;
}

.sec-1 .img-r {
  position: relative;
  right: -100px;
}
@media (max-width: 767.98px) {
  .sec-1 .img-r {
    right: auto !important;
  }
}

.section {
  padding: 7rem 0;
}
.section .heading {
  font-size: 40px;
  font-weight: normal;
  /* text-transform: uppercase; */
}
@media (max-width: 767.98px) {
  .section {
    padding: 2rem 0;
  }
}

.sec-2 .heading {
  margin-bottom: 60px;
  position: relative;
  /* text-transform: uppercase; */
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .sec-2 .heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.sec-2 .heading:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 300%;
  background: #000;
  left: 0;
  bottom: 0;
}

.sec-3 .heading {
  margin-bottom: 60px;
  position: relative;
  /* text-transform: uppercase; */
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .sec-3 .heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.sec-3 .heading:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 300%;
  background: #000;
  right: 0;
  bottom: 0;
}

.accordion-1 .accordion-item button {
  background-color: transparent !important;
  color: #000;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
  border-bottom: none;
  /* text-transform: uppercase; */
  font-size: 12px;
  padding-left: 0;
  padding-right: 0;
  font-weight: bold;
  color: #000000;
}
.accordion-1 .accordion-item button:after {
  -webkit-filter: brightness(0.5) sepia(1) hue-rotate(29deg) saturate(6);
  filter: brightness(0.5) sepia(1) hue-rotate(29deg) saturate(6);
}
.accordion-1 .accordion-item button.collapsed {
  background-color: transparent !important;
  border-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
}

.accordion-1 .accordion-collapse {
  border-top: none;
}

.accordion-1 .accordion-body {
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
}

.more-2 {
  position: relative;
  padding-right: 30px;
  display: inline-block;
}
.more-2 span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: transparent;
  color: #000000;
  line-height: 1.6;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.more-2:hover {
  color: #000000;
}
.more-2:hover span {
  background: #000000;
  color: #fff;
}
.more-2.dark {
  color: #000;
}
.more-2.dark > span {
  color: #000;
}
.more-2.dark:hover {
  color: #000000;
}
.more-2.dark:hover span {
  color: #fff;
  background: #000000;
}

.sec-4 .heading,
.sec-5 .heading,
.sec-news .heading {
  margin-bottom: 70px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .sec-4 .heading,
  .sec-5 .heading,
  .sec-news .heading {
    margin-bottom: 30px;
  }
}
.sec-4 .heading:after,
.sec-5 .heading:after,
.sec-news .heading:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 300%;
  background: #000;
  right: 0;
  bottom: 0;
}

.testimonial-item {
  text-align: center;
}
.testimonial-item .testimonial-item-inner {
  padding: 50px 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.testimonial-item .testimonial-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
.testimonial-item blockquote {
  font-size: 18px;
  font-style: italic;
  color: #777;
  margin-bottom: 30px;
}
.testimonial-item .testimonial-author {
  text-anchor: center;
}
.testimonial-item .testimonial-author img {
  width: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
}
.testimonial-item .testimonial-author strong {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.testimonial-item .testimonial-author span {
  font-size: 14px;
}

.testimonial-slide-center-wrap {
  position: relative;
}
.testimonial-slide-center-wrap .tns-outer .tns-inner {
  padding-bottom: 100px !important;
}
.testimonial-slide-center-wrap .tns-item {
  opacity: 0.3;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.testimonial-slide-center-wrap
  .tns-item:not(.tns-slide-active)
  + .tns-slide-active
  + .tns-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.testimonial-slide-center-wrap
  .tns-item:not(.tns-slide-active)
  + .tns-slide-active
  + .tns-slide-active
  .testimonial-item-inner {
  background: #000;
}
.testimonial-slide-center-wrap
  .tns-item:not(.tns-slide-active)
  + .tns-slide-active
  + .tns-slide-active
  .testimonial-item-inner
  strong {
  color: #fff;
}
@media (max-width: 767.98px) {
  .testimonial-slide-center-wrap
    .tns-item:not(.tns-slide-active)
    + .tns-slide-active {
    opacity: 1;
  }
}
.testimonial-slide-center-wrap .tns-nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0px;
  z-index: 2;
}
.testimonial-slide-center-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  position: relative;
}
.testimonial-slide-center-wrap .tns-nav button:active,
.testimonial-slide-center-wrap .tns-nav button:focus {
  outline: none;
}
.testimonial-slide-center-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  right: 0;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.testimonial-slide-center-wrap .tns-nav button.tns-nav-active:before {
  background-color: #000000;
}

.custom-card .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin-right: 30px;
}
.custom-card .img [class^="flaticon-"] {
  font-size: 50px;
  color: #000000;
}

.post-entry-1 .meta {
  color: #ccc;
}

.post-entry-1 .post-entry-1-contents {
  background: #fff;
  padding: 30px;
}
.post-entry-1 .post-entry-1-contents h2,
.post-entry-1 .post-entry-1-contents .h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.post-entry-1 .post-entry-1-contents h2 a,
.post-entry-1 .post-entry-1-contents .h2 a {
  color: #000;
}
.post-entry-1 .post-entry-1-contents h2 a:hover,
.post-entry-1 .post-entry-1-contents .h2 a:hover {
  color: #000000;
}

.post-entry-1.person-1 {
  text-align: center;
}
.post-entry-1.person-1 img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto -45px auto;
}
.post-entry-1.person-1 .post-entry-1-contents {
  padding-top: 4rem;
}

.categories li,
.sidelink li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted gray("300");
  list-style: none;
}
.categories li:last-child,
.sidelink li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.categories li a,
.sidelink li a {
  display: block;
}
.categories li a span,
.sidelink li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
}
.categories li.active a,
.sidelink li.active a {
  color: #000;
  font-style: italic;
}

.comment-form-wrap {
  clear: both;
}

.comment-list {
  padding: 0;
  margin: 0;
}
.comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}
.comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}
.comment-list li .vcard {
  width: 80px;
  float: left;
}
.comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}
.comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}
.comment-list li .comment-body h3,
.comment-list li .comment-body .h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.comment-list li .comment-body .meta {
  /* text-transform: uppercase; */
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #ccc;
  margin-bottom: 20px;
}
.comment-list li .comment-body .reply {
  padding: 5px 10px;
  background: #e6e6e6;
  color: #000;
  /* text-transform: uppercase; */
  font-size: 14px;
}
.comment-list li .comment-body .reply:hover {
  color: #000;
  background: #e3e3e3;
}

.post-meta {
  font-size: 13px;
  /* text-transform: uppercase; */
  letter-spacing: 0.2em;
}
.post-meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.categories li,
.sidelink li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted gray("300");
  list-style: none;
}
.categories li:last-child,
.sidelink li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.categories li a,
.sidelink li a {
  display: block;
}
.categories li a span,
.sidelink li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
}
.categories li.active a,
.sidelink li.active a {
  color: #000;
  font-style: italic;
}

.comment-form-wrap {
  clear: both;
}

.comment-list {
  padding: 0;
  margin: 0;
}
.comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}
.comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}
.comment-list li .vcard {
  width: 80px;
  float: left;
}
.comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}
.comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}
.comment-list li .comment-body h3,
.comment-list li .comment-body .h3 {
  font-size: 20px;
  color: #000;
}
.comment-list li .comment-body .meta {
  /* text-transform: uppercase; */
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #ccc;
}
.comment-list li .comment-body .reply {
  padding: 5px 10px;
  background: #e6e6e6;
  color: #000;
  /* text-transform: uppercase; */
  font-size: 14px;
}
.comment-list li .comment-body .reply:hover {
  color: #000;
  background: #e3e3e3;
}

.search-form {
  background: #f7f7f7;
  padding: 10px;
}
.search-form .form-group {
  position: relative;
}
.search-form .form-group input {
  padding-right: 50px;
}
.search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-meta {
  font-size: 13px;
  /* text-transform: uppercase; */
  letter-spacing: 0.2em;
}
.post-meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.single-portfolio {
  /* border-radius: 5px; */
  overflow: hidden;
  color: #fff;
}
.single-portfolio > a {
  overflow: hidden;
  position: relative;
  display: block;
}
.single-portfolio > a:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  z-index: 2;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background: rgba(0, 0, 0, 0.5);
}
.single-portfolio > a .contents {
  margin-top: 20px;
  visibility: visible;
  margin-top: 20px;
  z-index: 3;
}
.single-portfolio > a .contents h3,
.single-portfolio > a .contents .h3 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.single-portfolio > a img {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.single-portfolio > a:hover:before {
  visibility: visible;
  opacity: 1;
  /* border-radius: 16px; */
}
.single-portfolio > a:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.single-portfolio > a:hover .contents {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}
.single-portfolio .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.single-portfolio .contents h3,
.single-portfolio .contents .h3 {
  color: #fff;
}
.single-portfolio .contents .cat {
  color: rgba(255, 255, 255, 0.5);
}

.person h3,
.person .h3 {
  font-size: 20px;
}

.social-2 li {
  display: inline-block;
}
.social-2 li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
}

/* Testimonial Styles */

#testimonial-nav {
  position: absolute;
  z-index: 1;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#testimonial-nav > span {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
#testimonial-nav span {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
}

/* Footer Styles */

.site-footer {
  padding-top: 70px;
  padding-bottom: 30px;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 30px;
  }
}
.site-footer a {
  color: #000;
}
.site-footer a:hover {
  color: #000000;
}
.site-footer .widget {
  margin-bottom: 30px;
}
.site-footer .widget h3,
.site-footer .widget .h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
}
.site-footer .widget .social li {
  display: inline-block;
}
.site-footer .widget .social li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f9fa;
  display: inline-block;
  position: relative;
  color: black;
}
.site-footer .widget .social li a span {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.site-footer .widget .social li a:hover {
  background-color: #000000;
  color: #fff;
}
.site-footer .widget .links li {
  display: block;
  margin-bottom: 10px;
}
.site-footer .widget .links li a {
  color: #000;
}
.site-footer .widget .links li a:hover {
  color: #aaaaaa;
}
.site-footer .copyright {
  position: relative;
  padding-top: 40px;
  margin-top: 40px;
}
.site-footer .copyright:before {
  top: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  content: "";
  height: 1px;
  background: #d3d8dc;
}

/* Whatsapp Button */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* social icons */

.icon-link {
  display: inline-flex;
  border-radius: 50%;
  padding: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.icon-link:hover {
  background-color: orange;
}

.icon {
  display: block;
  transition: fill 0.3s ease;
}

.icon-link:hover .icon {
  fill: white;
}

/* Navbar Styles  */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar .dropdown-menu {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block; /* Keep element in flow for animation */
    margin-top: 0;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* === Expertise Tab/Service Pipe-List Styles (Responsive, Divider, Scroll) === */

/* Container styling: custom as per your needs */
.servicesListing {
  /* Example border/padding if needed: */
  /* border-bottom: .0625rem solid #000; */
  /* padding-bottom: .625rem; */
}

/* Flex parent for both tab/project navs */
.project-tabs,
.services-listing {
  display: flex;
  align-items: center;
  justify-content: center; /* Center on desktop */
  overflow-x: scroll;
  /* white-space: nowrap; */
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox hides scrollbar */
}

/* Hide scrollbars, Apple and Chromium */
.project-tabs::-webkit-scrollbar,
.services-listing::-webkit-scrollbar {
  display: none;
}

/* Each item gets left/right padding for consistent pipe centering */
.project-tabs li,
.services-listing li {
  display: flex;
  align-items: center;
  padding: 0 10px;
  white-space: nowrap;
}

/* Pipe style as its own li */
.project-tabs .divider,
.services-listing .divider {
  color: #ccc;
  font-size: 1em;
  padding: 0;
  pointer-events: none;
  user-select: none;
}

/* No left padding for first, right padding for last, to avoid double spaces at edges */
.project-tabs li:first-child,
.services-listing li:first-child {
  padding-left: 0;
}
.project-tabs li:last-child,
.services-listing li:last-child {
  padding-right: 0;
}

/* Responsive: scroll and left-align on mobile, extra padding to prevent edge clipping */
@media (max-width: 767.98px) {
  .project-tabs,
  .services-listing {
    justify-content: flex-start;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0;
  }
}

/* General list/active styles (as before, not touched except for no list-style


/* Project Card Styles (Bootstrap 5 Enhanced) */

/* Anchor wraps card for full clickable area */
.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow 0.3s;
  border-radius: 8px;
}

.project-link:focus,
.project-link:hover {
  outline: none;
  text-decoration: none;
}

/* Card container, no overflow on anchor */
.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /* height: 100%; */
  transition: box-shadow 0.3s;
}

/* Inner image wrapper */
.project-image-wrap {
  overflow: hidden;
  border-radius: 8px;
}

/* Image: zoom + grayscale effect on parent anchor hover/focus */
.project-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0%);
}

/* Only on anchor hover/focus to handle all browsers and anchor wrapping */
.project-link:hover .project-image,
.project-link:focus .project-image {
  transform: scale(1.12);
  filter: grayscale(100%);
}

/* Title and location styles */
.project-title {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0;
  text-align: center;
}

.project-location {
  color: #666;
  font-size: 1rem;
}

.active-menu {
  color: #000000;
}

.page-title {
  font-family: "Inter-Variable", sans-serif;
  font-size: 1.75rem !important;
  font-weight: 400;
  margin-bottom: 16px;
}

/* PROJECT IMAGE LIGHT BOX SEARCH ICON HOVER CODE */

.project-image-wrap {
  position: relative;
}

.image-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2;
}

.project-image-wrap:hover .image-zoom-icon {
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .image-zoom-icon {
    display: none !important;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  color: black;
  text-decoration: none;
  background-color: #eeeeee;
}

/* Remove default Bootstrap caret */
.project-dropdown-toggle::after {
  display: none !important;
}

/* Chevron icon at extreme right */
.project-dropdown-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap other elements */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #bbbbbb; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 50px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#scrollToTopBtn:hover {
  background-color: #aaaaaa; /* Add a darker background on hover */
}
