:root {
  /* ===== Brand Colors ===== */
  color: #a5a61b;
  --brand-primary: #f2e400; /* Logo yellow (CTA, highlights) */
  --brand-primary-dark: #c2b600; /* Hover / active (≈15–20% darker) */
  --brand-primary-darker: #9a9000; /* Pressed / focus (≈30–35% darker) */

  /* ===== Dark Foundations ===== */
  --bg-main: #0b0b0b; /* Header / footer / hero */
  --bg-section-dark: #141414; /* Dark sections */
  --bg-card: #1c1c1c; /* Cards / boxes */
  --bg-soft: #2a2a2a; /* Subtle panels */

  /* ===== Light Backgrounds ===== */
  --bg-light: #ffffff;
  --bg-light-alt: #f5f5f5;

  /* ===== Text Colors ===== */
  --text-primary: #ffffff; /* Main text on dark */
  --text-secondary: #cccccc; /* Paragraphs */
  --text-muted: #9a9a9a; /* Small text */
  --text-dark: #000000; /* Text on yellow/light bg */

  /* ===== Borders & Lines ===== */
  --border-dark: #2f2f2f;
  --border-light: #e0e0e0;

  /* ===== Accents ===== */
  --accent-olive: #333504; /* Architectural accent */
  --accent-gray: #6b6b6b;

  /* ===== Status Colors ===== */
  --success: #4caf50;
  --warning: #ffc107;
  --error: #e53935;

  /* ===== Effects ===== */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #000;
}

/* h1 { font-size: 3em !important; font-weight: 700 !important; }
h2 { font-size: 2.5em !important;   font-weight: 600 !important; }
h3 { font-size: 1.5em !important; font-weight: 600 !important; }
h4 { font-size: 1.3em !important; font-weight: 500 !important; } */

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  /* text-align: justify; */
  letter-spacing: 0px;
}

a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.text-black {
  color: #000 !important;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
.spinnertext {
  color: var(--brand-primary);
}
/*** Spinner End ***/
.mainnavbar {
  background-color: var(--bg-main);
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}
.whatsapp {
    position: fixed;
    right: 26px;
    bottom: 85px;
    z-index: 99;
}

/* Button */
.whatsapp a {
    position: relative;
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    animation: float 3s ease-in-out infinite;
}

/* WhatsApp Icon */
.whatsapp img {
    width: 40px;
    z-index: 2;
}

/* Ripple waves */
.whatsapp a::before,
.whatsapp a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: wave 2.8s infinite;
    z-index: 1;
}

.whatsapp a::after {
    animation-delay: 1.4s;
}

/* Wave animation */
@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Floating effect */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Hover effect */
.whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.pricingmain {
  margin-left: 1spx;
}
/* .pricingmain:hover{
    border: 2px solid var(--brand-primary);
    background-color: var(--brand-primary-darker);
    color: var(--text-primary);
    transition: 0.5s;
} */
/* .pricingmain:hover{
    background-color: gray;
    color: white;
} */
.pricingmain .text901:hover {
  color: var(--brand-primary);
}
/* .pricingmain li:hover{
    color: white;
} */
.pricingitem:hover {
  color: var(--text-primary);
  transition: 1s;
}
.abctext {
  width: 36%;
  margin: 0 auto;
}
.abctext12 {
  width: 22%;
  /* margin: 0 auto; */
}
.abctext,
.abctext12 {
  color: var(--text-dark);
  background-color: var(--brand-primary);
}
/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 35px;
  height: 35px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  background-color: var(--bg-main);
  color: var(--text-primary);
  border: none;
}
.btn.btn-primary:hover {
  background: var(--brand-primary);
  color: var(--text-dark);
}

.btn.btn-secondary {
  background-color: var(--brand-primary);
  color: var(--text-dark);
  border: none;
}
.text12 {
  background-color: var(--bg-main);
  color: var(--brand-primary);
  text-align: center;
  width: 70%;
}
.text13 {
  color: var(--text-dark);
}
.btn.btn-secondary:hover {
  background: var(--bg-main);
  color: var(--text-primary);
}
/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bg-main);
}
/*** Topbar End ***/
/*** Navbar ***/
.sticky-top {
    transition: 1s;
}
.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--text-primary);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--brand-primary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--brand-primary) !important;
}
.text{
    color: var(--brand-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--text-dark);
    background: var(--brand-primary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.form-floating input{
    border: 1px solid var(--brand-primary);
}
.form-floating textarea{
    border: 1px solid var(--brand-primary);
}

/* =====================================================
   MOBILE & TABLET NAVBAR (≤ 991.98px)
===================================================== */
@media (max-width: 991.98px) {

    #navbarCollapse {
        background-color: var(--bg-main); /* optional for contrast */
    }

    #navbarCollapse .navbar-nav {
        position: relative;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    #navbarCollapse .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin: 4px 0;
    }

    #navbarCollapse .navbar-nav .nav-link {
        padding: 12px 15px;
        width: 100%;
        white-space: normal; /* FIXED */
    }

    .navbarbtn {
        display: none; /* better than visibility:hidden */
    }

    /* Mobile dropdown fix */
    .navbar .nav-item .dropdown-menu {
        position: static;
        width: 100%;
        border: 0;
        margin: 0;
        padding: 0;
        box-shadow: none;
        transition: none;
    }

    .navbar .navbar-nav .nav-item::before,
    .navbar .navbar-nav .nav-item::after {
        display: none !important;
    }
}

/* =====================================================
   DESKTOP NAVBAR (≥ 992px)
===================================================== */
@media (min-width: 992px) {

    /* Dropdown animation (desktop only) */
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 100%;
        margin-top: 10px;
        transform: rotateX(-75deg);
        transform-origin: top;
        border: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: rotateX(0deg);
        margin-top: 0;
    }
}


@media (max-width: 991px) {
  #navbarCollapse .navbar-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
#searchModal .modal-content {
    background: rgba(255, 255, 255, 0.85);
}
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(16, 16, 17, 0.7), rgba(23, 23, 24, 0.7)),
    url(../img/slider-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
}
.bg-breadcrumb .breadcrumb {
  position: relative;
}
.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
  font-family: "Montserrat", sans-serif;
}
/*** Single Page Hero Header End ***/
/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .carousel .carousel-inner .carousel-item {
    /* height: 300px; */
  }
  .carousel .carousel-inner .carousel-item img {
    /* height: 700px; */
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-item .carousel-caption h1 {
    font-size: 15px;
  }
  .carousel-item .carousel-caption p.fs-5 {
    font-size: 20px;
  }
  .carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 10px 5px;
    background-color: var(--brand-primary);
    filter: invert(1); /* makes the arrow dark */
  }

  .carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 10px 5px;
    background-color: var(--brand-primary);
    filter: invert(1); /* makes the arrow dark */
  }
}
.carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.carousel .carousel-indicators {
  /*margin-bottom: 40px;*/
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
  margin-right: 30px !important;
  width: 10px;
  height: 10px;
  border: 6px solid black;
  background: var(--bs-white);
  transition: 0.5s;
}

.carousel .carousel-indicators li.active {
  border: 2px solid var(--brand-primary);
  background-color: var(--brand-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  left: 0;
  padding: 25px 30px;
  background: var(--brand-primary);
  color: black;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  right: 0;
  padding: 25px 30px;
  background: var(--brand-primary);
  color: black;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: black;
  color: var(--bs-white);
}
/*** Carousel End ***/

/*** About Start ***/
.about .about-item-content-img {
  border: 4px solid;
  border-image: linear-gradient(to right, black, black, #e7e912, #e7e912) 1;
}
.text15 {
  color: #e7e912;
}
.about .about-item-image {
  position: relative;
  background: var(--bs-light);
  background-image: url(../img/about-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.about .about-item-image .img-1 {
  margin-bottom: 250px;
  margin-right: 0;
  border: 2px solid;
  border-color: white;
  z-index: 3;
}

.about .about-item-image .img-2 {
  margin-top: 250px;
  margin-left: 0;
  border: 4px solid;
  border-color: #e7e912;
  z-index: 3;
}
/* .orderinput{
    height: 30px;
} */

.about .about-item-image::before {
  width: 80%;
  height: 80%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-style: dotted;
  border-color: var(--bs-white);
  background: black;
  z-index: 2;
  background-image: url(../img/back.png);
}

.about .about-item-image .about-item-image-content {
  width: 55%;
  height: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-primary);
  border: 4px solid white;
  opacity: 0.9;
  z-index: 4;
}

.about .about-item-image .about-item-image-effect {
  position: absolute;
  top: 0;
  right: 0;
}
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
  position: relative;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px 30px 20px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
.feature .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #e7e912);
}

.feature .feature-item:hover a {
  transition: 0.5s;
}

.feature .feature-item:hover a:hover {
  color: #bfc210;
}

.feature .feature-item .feature-img img {
  border: transparent;
  transition: 0.5s;
}
.featurebox {
  background-color: #e7e912;
  border-radius: 15%;
}
.feature .feature-item:hover .featurebox {
  background-color: #ffffff !important;
}
.heading1 {
  color: black;
}
/* .feature .feature-item:hover .feature-img img { */
/* border: 1px solid var(--bs-secondary); */
/* }   */
/*** Features End ***/
.serviceitem li {
  list-style: none;
  padding: 5px;
}
/* .serviceitem:hover{
    border: 1px solid var(--brand-primary);
    background-color: #e7e912;
    color: black;
    padding: 0px;
    transition: 1s;
} */

/*** Services Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}

.service .service-item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.service .service-item .service-content {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 1s;
  opacity: 0;
  z-index: 3;
}

.service .service-item:hover .service-content {
  opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
  color: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
  color: var(--bs-secondary);
}

.service .service-item .service-tytle {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  right: 0;
  background: var(--bs-white);
  display: flex;
  transition: 0.5s;
  z-index: 3;
}

.service .service-item:hover .service-tytle {
  margin-right: -100%;
}
/*** Services End ***/
.text901 {
  color: black;
}
/*** Fact Counter ***/
.counter {
  background: linear-gradient(rgb(14, 13, 13), rgb(37, 36, 36)),
    url(../img/counter.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-btn:hover {
  background: var(--bs-white);
  color: var(--bs-secondary);
}

.counter .counter-box {
  padding-right: 20px;
  padding-bottom: 20px;
}

.counter .counter-item {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter .counter-item .counter-item-style {
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  top: 0;
  left: 0;
  background: var(--brand-primary);
  z-index: 2;
}

.counter .counter-item .counter-item-inner {
  position: relative;
  top: 20px;
  left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  background: var(--bs-white);
  box-shadow: 20px 20px #e7e912;
  z-index: 3;
}

.counter .counter-item .counter-counting {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brand-primary);
  font-size: 30px;
}
/*** Fact Counter ***/
.text90 {
  color: black;
}

/*** Projects Start ***/
.project .project-item .project-img {
  position: relative;
}

.project .project-item .project-img::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  background: var(--brand-primary);
  z-index: -1;
}

.project .project-item .project-content a.h4 {
  transition: 0.5s;
}

.project .project-item:hover .project-content a .h4:hover {
  color: var(--bs-secondary);
}
/*** Projects End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  z-index: 1;
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.team .team-item .team-img .team-icon {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scale(-1);
  margin-bottom: 100%;
  background: transparent;
  transition: 0.5s;
  opacity: 0;
  z-index: 5;
}

.team .team-item:hover .team-img .team-icon {
  transform: scale(1);
  margin-bottom: 0;
  opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
  width: 50%;
  height: 50%;
  position: absolute;
  background: var(--brand-primary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-1 {
  top: 0;
  left: 0;
}

.team .team-item .team-border-style-2 {
  right: 0;
  bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
  width: 0;
  height: 0;
  position: absolute;
  background: var(--brand-primary);
  transition: 0.5s;
  z-index: -1;
}

.team .team-item .team-border-style-3 {
  top: 0;
  right: 0;
}

.team .team-item .team-border-style-4 {
  left: 0;
  bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
  width: 0%;
  height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
  width: 50%;
  height: 50%;
}
/*** Team End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}
.blog .blog-item:hover .blog-content a {
  color: black;
}
.blog .blog-item:hover .blog-content a:hover {
  color: #e7e912;
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
  position: relative;
  overflow: hidden;
  padding: 20px;
  z-index: 1;
}

.contact .contact-map::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--brand-primary);
  z-index: -1;
}

.contact .contact-map::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  top: 0;
  right: 0;
  background: black;
  z-index: -1;
}
.pricingitem li {
  list-style: none;
  padding: 6px;
}
/*** Contact End ***/
.fa-house {
  /* display: flex;
    justify-content: center; */
  font-size: 35px;
}
.pricinginner {
  /* background-color: #e7e912;
    width: 220px; */
  display: flex;
  justify-content: center;
}
.pricinginner img {
  width: 375px;
  border-radius: 10px;
  /* border-radius: 90%; */
}
.fa-pen-nib {
  color: #e7e912;
  background-color: black;
  padding: 25px;
  width: 80px;
  border-radius: 50%;
}
.icon {
  display: flex;
  justify-content: center;
}
.icons {
  color: #e7e912;
  background-color: black;
  padding: 22px;
  width: 80px;
  border-radius: 100%;
}
.icons1 {
  color: #e7e912;
  background-color: black;
  padding: 20px;
  width: 80px;
  border-radius: 100%;
}
.icons12 {
  color: #e7e912;
  background-color: black;
  padding: 20px;
  width: 85px;
  border-radius: 100%;
}
.icons123 {
  color: #e7e912;
  background-color: black;
  padding: 20px;
  width: 85px;
  border-radius: 100%;
}
.fa-clipboard-list {
  color: #e7e912;
  background-color: black;
  padding: 25px;
  width: 80px;
  border-radius: 50%;
}
.pricing12 {
  border: 1px solid var(--brand-primary);
}
/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(16, 17, 19, 0.9), rgb(14, 14, 15)),
    url(../img/footer-img.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
.footer .footer-item a {
  line-height: 35px;
  color: white;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: #e7e912;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}
.fa-whatsapp {
  font-size: 25px;
}
.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}

/* =========================
   Project Card (Classic + Elegant)
   Accent color: #e7e912
========================= */

:root {
  --accent: #e7e912;
  --accent-dark: #b7b800; /* subtle darker for hover */
}

/* Card */
.project-list-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px; /* slightly less vertical space */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease,
    border-color 260ms ease;
  will-change: transform;
}

.project-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
  border-color: rgba(231, 233, 18, 0.25);
}

/* =========================
   Image (More Classic Hover)
========================= */
.project-image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-list-img {
  width: 100%;
  height: 100%;
  min-height: 300px; /* reduced overall height */
  object-fit: cover;
  transform: scale(1);
  transition: transform 520ms ease;
}

/* soft overlay (very subtle, elegant) */
.project-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.28)
  );
  opacity: 0;
  transition: opacity 260ms ease;
}

.project-list-item:hover .project-list-img {
  transform: scale(1.04); /* less aggressive than 1.1 */
}

.project-list-item:hover .project-image-wrapper::after {
  opacity: 1;
}

/* =========================
   Content Area (Reduced height feel)
========================= */
.project-list-content {
  padding: 28px 30px; /* reduced from 40px */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(249, 250, 251, 0.96);
  transition: background 260ms ease;
}

.project-list-item:hover .project-list-content {
  background: rgba(255, 255, 255, 0.98);
}

/* =========================
   Title (Accent underline)
========================= */
.project-title {
  font-size: 28px; /* slightly smaller */
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px; /* reduced spacing */
  position: relative;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2px;
}

.project-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px; /* thinner underline */
  background: var(--accent);
  transition: width 260ms ease;
}

.project-list-item:hover .project-title::after {
  width: 100%;
}

/* =========================
   Description
========================= */
.project-description {
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 18px; /* reduced spacing */
}

/* =========================
   Read More CTA (Accent color)
========================= */
.project-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #111827; /* classic base */
  text-decoration: none;
  width: fit-content;
  transition: color 220ms ease, transform 220ms ease;
}

.project-read-more span {
  transition: transform 220ms ease;
  color: var(--accent); /* accent arrow */
}

.project-read-more:hover {
  color: var(--accent-dark);
}

.project-read-more:hover span {
  transform: translateX(6px);
}

/* Optional: also accent on hover for any links inside the content */
.project-list-content a:hover .project-title {
  color: #0f172a;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 992px) {
  .project-list-img {
    min-height: 240px; /* reduced */
  }

  .project-list-content {
    padding: 22px 22px;
  }

  .project-title {
    font-size: 22px;
  }

  .project-description {
    font-size: 15.5px;
  }
}
/*** copyright end ***/

/* ===============================
   Project Container Enhancements
   =============================== 

/* Main container hover lift 
.project-item {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ===============================
   Image Zoom Effect
   =============================== 

.project-img {
    overflow: hidden;
    border-radius: 6px;
}

.project-img img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.project-item:hover .project-img img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* ===============================
   Heading Color Change on Hover
   =============================== 

.project-item:hover .project-content .h4 {
    color: #000 !important; /* black text 
    text-shadow:
        0 1px 0 #e7e912,
        0 2px 6px rgba(231, 233, 18, 0.6);
}



/* ===============================
   Heading Underline Animation
   =============================== 

.project-content .h4 {
    position: relative;
    display: inline-block;
    text-decoration: none;
    
}

/* Animated line 
.project-content .h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e7e912, #fbff00);
    transition: width 0.5s ease;
    
}

.project-item:hover .project-content .h4::after {
    width: 100%;
}

/* ===============================
   Content Animation
   =============================== 

.project-content {
    opacity: 0.85;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-item:hover .project-content {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   Description Fade-in
   =============================== 

.project-content p {
    transition: color 0.3s ease, transform 0.4s ease;
}

.project-item:hover .project-content p {
    transform: translateY(2px);
}

/* ===============================
   Optional: Soft Glow Accent
   =============================== 

.project-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.04),
        rgba(0, 0, 0, 0)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-item:hover::before {
    opacity: 1;
} */

/* ////////////////////////////////////////////////// */

/* =====================================
   Feature Section – Modern Enhancements
   ===================================== */

/* Card base animation */
.feature-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Lift + shadow */
.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Accent glow layer */
.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(231, 233, 18, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-item:hover::before {
  opacity: 1;
}

/* =====================================
   Icon / Image Animation
   ===================================== */

.featurebox {
  transition: transform 0.45s ease;
}

.feature-item:hover .featurebox {
  transform: scale(1.12) rotate(1deg);
}

/* =====================================
   Heading interaction
   ===================================== */

.feature-item .heading1 a {
  position: relative;
  display: inline-block;
  transition: color 0.35s ease;
}

/* Underline draw effect */
.feature-item .heading1 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.45s ease;
}

.feature-item:hover .heading1 a::after {
  width: 100%;
}

/* =====================================
   Text smooth reveal
   ===================================== */

.feature-item p {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-item:hover p {
  transform: translateY(2px);
}

/* =====================================
   Bottom full-width feature polish
   ===================================== */

.col-lg-12 .feature-item {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.col-lg-12 .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

/* //////////////////////////// */

/* =====================================
   Services Section – Modern Enhancements
   ===================================== */

#service {
  position: relative;
  overflow: hidden;
}

/* Service card base */
.serviceitem {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px 30px 20px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Lift and shadow on hover */
.serviceitem:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #e7e912);
}

/* Icon / image hover effect */
.icons123 img,
.icons img,
.icons1 img,
.icons12 img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.serviceitem:hover .icons123 img,
.serviceitem:hover .icons img,
.serviceitem:hover .icons1 img,
.serviceitem:hover .icons12 img {
  transform: scale(1.15) rotate(3deg);
  filter: brightness(1.1);
}

/* Heading hover & underline animation */
.serviceitem h4 a,
.serviceitem h4 {
  position: relative;
  display: inline-block;
  transition: color 0.35s ease;
  color: #000000;
}

.serviceitem:hover h4 {
  color: #000;
}

.serviceitem h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.45s ease;
}

.serviceitem:hover h4::after {
  width: 100%;
}

/* List item icons animation */
.serviceitem li img {
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-right: 8px;
}

.serviceitem:hover li img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Fade-in subtle motion for text */
.serviceitem p,
.serviceitem li {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.serviceitem:hover p,
.serviceitem:hover li {
  transform: translateY(2px);
}

/* Optional: glowing accent circle behind icon */
.serviceitem::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(231, 233, 18, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.serviceitem:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Make icons above text appear on top */
.serviceitem .icons123,
.serviceitem .icons,
.serviceitem .icons1,
.serviceitem .icons12 {
  position: relative;
  z-index: 2;
}

/* ///////////////////// */

/* =====================================
   Counter Section – Modern Enhancements
   ===================================== */

.counter .counter-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.4s ease;
  overflow: hidden;
  cursor: default;
}

/* Lift + Shadow on Hover */
.counter .counter-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  /* background: linear-gradient(135deg, #e7e912, #e7e912); */
}

/* Icon Zoom + Glow */
.counter .counter-item i,
.counter .counter-item img {
  transition: transform 0.45s ease, filter 0.45s ease, color 0.45s ease;
  display: block;
  margin: 0 auto;
}

.counter .counter-item:hover i,
.counter .counter-item:hover img {
  transform: scale(1.2) rotate(5deg);
}
.counter .counter-item:hover i,
.counter .counter-item:hover img {
  color: var(--brand-primary) !important;
}

/* Heading Animation */
.counter .counter-item h4 {
  transition: color 0.4s ease, transform 0.4s ease;
  text-align: center;
}

.counter .counter-item:hover h4 {
  color: #2c2c08;
  transform: translateY(-2px);
}

/* Counter Number Animation */
.counter .counter-item span[data-toggle="counter-up"] {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.counter .counter-item:hover span[data-toggle="counter-up"] {
  transform: scale(1.15);
  color: #e7e912;
}

/* Plus / Percentage Symbol */
.counter .counter-item span.h1 {
  transition: transform 0.4s ease, color 0.4s ease;
}

.counter .counter-item:hover span.h1 {
  transform: translateY(-2px);
  color: #e7e912;
}

/* Optional: Radial Glow Behind Counter */
.counter .counter-item::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 233, 18, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.counter .counter-item:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Counter Inner Content Z-index */
.counter .counter-item-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .counter .counter-item-inner {
    padding: 30px 15px;
  }

  .counter .counter-item i,
  .counter .counter-item img {
    margin-bottom: 15px;
  }
}

/* //////////////////////////////// */

/* ===== PRICING CARD BASE ===== */
.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== STRONG YELLOW GLOW LAYER ===== */
.pricing-card::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgb(231, 233, 97),
    rgba(231, 233, 97, 0.8)
  );
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* ===== HOVER EFFECT ===== */
.pricing-card:hover {
  transform: translateY(-10px) scale(1.03);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #ffffff, #e7e912);
}

.pricing-card:hover::after {
  opacity: 1;
  animation: glowPulse 2s infinite ease-in-out;
}

/* ===== GLOW ANIMATION ===== */
@keyframes glowPulse {
  0% {
    filter: blur(10px);
    opacity: 0.6;
  }
  50% {
    filter: blur(18px);
    opacity: 1;
  }
  100% {
    filter: blur(10px);
    opacity: 0.6;
  }
}

/* ===== KEEP CONTENT ABOVE GLOW ===== */
.pricing-card > * {
  position: relative;
  z-index: 2;
}

/* ===== TITLES ===== */
.pricing-title {
  font-weight: 700;
  color: #000;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pricing-card:hover .pricing-title {
  color: #000;
  text-shadow: 0 0 12px rgba(229, 233, 18, 0.281);
}

/* ===== LIST ITEMS ===== */
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #000 !important;
}

.pricing-list li img {
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-list li img {
  transform: scale(1.25);
}

/* ===== BUTTON (FIXED AT BOTTOM) ===== */
.pricing-card .btn {
  margin-top: auto;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-card .btn {
  background: var(--brand-primary);
  color: #000 !important;
  box-shadow: 0 0 25px rgba(231, 233, 18, 0.9);
  transform: translateY(-3px) scale(1.05);
}

.pricing-card .btn:hover {
  background: #000000;
  color: #ffffff !important;
}
/* ////////////////////////////////////////////// */

/* ===== BLOG SECTION ===== */
.blog {
  background: #f8f9fa;
}

/* ===== BLOG CARD ===== */
.blog-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Lift + shadow */
.blog-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

/* ===== IMAGE WRAPPER ===== */
.blog-img {
  position: relative;
  overflow: hidden;
}

/* Image zoom */
.blog-img img {
  transition: transform 0.7s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.12);
}

/* Dark overlay */
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-item:hover .blog-img::after {
  opacity: 1;
}

/* ===== BLOG CONTENT ===== */
.blog-content {
  position: relative;
  z-index: 2;
}

/* Meta info */
.blog-content p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== BLOG TITLE ===== */
.blog-content .h4 {
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Animated underline */
.blog-content .h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--brand-primary);
  transition: width 0.4s ease;
}

.blog-item:hover .blog-content .h4::after {
  width: 60%;
}

/* Title hover effect */
.blog-item:hover .blog-content .h4 {
  color: #000;
  text-shadow: 0 0 10px rgba(229, 233, 18, 0.295);
}

/* ===== BUTTON ===== */
.blog-content .btn {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.blog-content .btn:hover {
  background: var(--brand-primary);
  color: #000 !important;
  box-shadow: 0 0 25px rgba(231, 233, 18, 0.8);
  transform: translateY(-3px);
}

/* ===== DATE & AUTHOR ICONS ===== */
.blog-content i {
  transition: transform 0.3s ease;
}

.blog-item:hover .blog-content i {
  transform: scale(1.15);
}

/* //////////////////////////////////////////////////// */

/* ===== TESTIMONIAL SECTION – EDITORIAL STYLE ===== */

/* ===== TESTIMONIAL SECTION ===== */
.testimonial {
  background: #ffffff;
  overflow-x: hidden; /* critical for mobile */
}

/* ===== Owl Carousel overflow fix ===== */
.testimonial-carousel,
.testimonial-carousel .owl-stage-outer {
  overflow: hidden;
}

/* ===== Equal height cards (Owl + Flexbox) ===== */
.testimonial-carousel .owl-stage,
.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-item {
  background: #f9f9f9;
  border-left: 5px solid #e7e912;
  padding: 35px;
  border-radius: 8px;
  transition: box-shadow 0.35s ease, background 0.35s ease;
  position: relative;

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover */
.testimonial-item:hover {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Inner layout */
.testimonial-item .position-relative {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push name + stars to bottom */
.testimonial-item .d-flex.align-items-center {
  margin-top: auto;
  flex-wrap: wrap; /* mobile safety */
}

/* Quote icon */
.testimonial-item .fa-quote-right {
  font-size: 36px;
  opacity: 0.15;
  right: 10px;
  max-width: 100%;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover .fa-quote-right {
  opacity: 0.35;
}

/* Text */
.testimonial-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* Separator */
.testimonial-item .border-bottom {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Profile image */
.testimonial-item img {
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  border: 1px solid #ddd;
  max-width: 100%;
  height: auto;
}

/* Name */
.testimonial-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

/* Stars – scoped (no global leak) */
.testimonial-item .fa-star {
  color: #e7e912;
  font-size: 14px;
}

/* ===== Owl dots (CLEAN – choose ONE style) ===== */
.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.testimonial-carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #ccc !important;
  border-radius: 50%;
  transition: 0.3s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--brand-primary) !important;
}

/* ===== Owl nav ===== */
.testimonial .owl-nav {
  position: relative;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  padding: 5px 25px;
  border: 1px solid black;
  color: black;
  transition: 0.3s;
}

.testimonial .owl-nav .owl-prev {
  right: 0;
}

.testimonial .owl-nav .owl-next {
  right: 88px;
}

.testimonial .owl-nav button:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ===== Mobile fixes ===== */
@media (max-width: 767px) {
  .testimonial-item {
    padding: 25px;
  }

  .testimonial-item .d-flex.align-items-center {
    gap: 10px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}

.testimonial-carousel-wrapper {
  overflow-x: hidden;
}

.testimonial-carousel .owl-stage,
.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-item .position-relative {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-item .d-flex.align-items-center {
  margin-top: auto;
  flex-wrap: wrap;
}

.testimonial-item .fa-quote-right {
  right: 10px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .testimonial-item {
    padding: 20px;
  }
  .testimonial-item .d-flex.text-secondary.pe-5 {
    padding-right: 0 !important;
  }
}

body {
  overflow-x: hidden;
  position: relative;
}



/* //////////////////////////////////////// */

.feature-item {
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #e7e912, #f3ff50, #eeff00, #f5ff69);
  opacity: 0;
  transition: all 0.5s ease;
  filter: blur(60px);
  z-index: 0;
}

.feature-item:hover::before {
  opacity: 0.25;
  transform: rotate(10deg);
}

.feature-item p {
  position: relative;
  z-index: 1;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #e7e912;
}

/* ///////////////////////////////////// */

.contact-section {
  background: #f8f9fa;
}

.contact-card,
.map-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  border-radius: 14px;
}

.form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #e7e912;
  box-shadow: 0 0 0 0.15rem rgba(231, 233, 18, 0.25);
}

.contact-btn {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

.location-card {
  display: block;
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.location-card i {
  font-size: 32px;
  color: #e7e912;
  margin-bottom: 10px;
}

.location-card h5 {
  margin-bottom: 5px;
}

.location-card p {
  font-size: 14px;
  color: #666;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* /////////////////////////////////////////////// */
.footer {
  position: relative;
  color: #ddd;
  overflow: hidden;
}

.footer-bg {
  color: #ddd;
  background: linear-gradient(rgba(16, 17, 19, 0.801), rgba(14, 14, 15, 0.938)),
    url(../img/footer-img.jpg) center/cover no-repeat;
}

/* Dark overlay for readability */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.footer .container {
  z-index: 2;
}

.footer-box {
  padding: 20px;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 40px;
  padding: 14px 130px 14px 20px;
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: #aaa;
}

.footer-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  border-radius: 30px;
  padding: 8px 22px;
  background: linear-gradient(135deg, #e7e912, #cfcf00);
  color: #000;
  font-weight: 600;
  border: none;
}

.footer-btn:hover {
  background: #fff;
  color: #000;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-contact i {
  color: #e7e912;
  min-width: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--brand-primary);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 14px;
  color: #aaa;
  position: relative;
  z-index: 2;
}

/* ===== Section Header ===== */
.section-header {
  position: relative;
}
.section-title {
  font-weight: 600;
}
.section-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--brand-primary);
  margin-top: 6px;
}

/* ===== Comment Box ===== */
.comment-box {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

/* ===== Review Cards ===== */
.review-card {
  background: var(--bg-card);
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* 🔒 CONTAINER SAFETY */
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/* ===== Review Header ===== */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 10px; /* prevents collision on small screens */
}

.review-header h6 {
  margin: 0;
  color: var(--brand-primary);
  font-weight: 600;

  /* 🔒 NAME SAFETY */
  word-break: break-word;
  overflow-wrap: break-word;
}

.review-header span {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== Review Text ===== */
.review-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;

  /* 🔥 TEXT CONTAINMENT (VERY IMPORTANT) */
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;

  max-width: 100%;
}

/* ===== Comment Form Card ===== */
.comment-form-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

/* ===== Comment Form Heading ===== */
.comment-form-card h4 {
  color: var(--text-primary);
  position: relative;
}

/* ===== Labels ===== */
.comment-form-card .form-label {
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===== Form Inputs ===== */
.comment-form-card .form-control {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  word-break: break-word;
}

.comment-form-card .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: none;
}

/* ===== ROW BACKGROUND ===== */
.bg-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 100px;

  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../assets/img/bg-quote.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ===== LEFT TEXT ===== */
.bg-row-1 .heading1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ===== RIGHT BUTTON ===== */
.estimate-btn {
  margin: 0;
  padding: 10px 26px;
  background: var(--brand-primary, #f2e400);
  color: #0b0b0b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(242, 228, 0, 0.35);
}

.estimate-btn:hover {
  background: var(--brand-primary-dark, #c2b600);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242, 228, 0, 0.5);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .bg-row-1 {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .bg-row-1 .heading1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .estimate-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 0;
    font-size: 14px;
  }
}

/* /////////////////////////////// */

/* =========================================================
   FILTER BUTTONS (INTERNATIONAL + LOCAL)
========================================================= */

#filter-buttons,
#local-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

#filter-buttons .filter-btn,
#local-filter-buttons .filter-btn {
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    display: inline-block;
    padding: 8px 0;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: var(--brand-primary);
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 20px;
    cursor: pointer;
}

/* HOVER STATE */
#filter-buttons .filter-btn:hover,
#local-filter-buttons .filter-btn:hover {
    background-color: var(--text-dark);
    color: #ffffff;
}

/* ACTIVE STATE */
#filter-buttons .filter-btn.active,
#local-filter-buttons .filter-btn.active {
    background-color: var(--text-dark);
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   LOADING STATE (SHARED)
========================================================= */

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--brand-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* =========================================================
   NO PROJECTS STATE (SHARED)
========================================================= */

.no-projects-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #888888;
    padding: 40px 0;
}

/* =====================================================
   MODERN FULL-WIDTH ACCORDION
===================================================== */

.custom-accordion {
    width: 100%;
    background: var(--bg-section-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

/* Accordion Item */
.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-dark);
}

/* Header Button */
.custom-accordion .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.35s ease;
}

/* Active / Open State */
.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(
        90deg,
        rgba(242, 228, 0, 0.12),
        transparent
    );
    color: var(--brand-primary);
}

/* Hover */
.custom-accordion .accordion-button:hover {
    color: var(--brand-primary);
}

/* Remove Bootstrap default arrow */
.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--brand-primary);
    transform: none;
}

/* Open icon */
.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "—";
    color: var(--brand-primary-dark);
}

/* Body */
.custom-accordion .accordion-body {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 1.75rem 2rem 2rem;
    font-size: 1rem;
    line-height: 1.75;
}

/* Paragraph spacing */
.custom-accordion .accordion-body p {
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
===================================================== */

@media (max-width: 991.98px) {
    .custom-accordion .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .custom-accordion .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .custom-accordion .accordion-button {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
}




