:root {
  /* ===============================
     FONTS
  =============================== */
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";

  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;

  /* ===============================
     COLORS
  =============================== */
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;

  /* ===============================
     BEHAVIOR
  =============================== */
  scroll-behavior: smooth;
}
/* ===============================
   HERO SLIDER (SWIPER FIXED)
=============================== */

.hero-slider {
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero-slider .swiper-slide {
  height: auto !important;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: auto !important;
  object-fit: cover;
}

.hero-slider .carousel-cell .inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.55);
  padding: 40px;
  color: #fff;
}

/* =========================
   Base Styles
========================= */
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
  background-image: url(../img/sitebackground.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #3258ff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/* =========================
   Sections
========================= */
section {
  padding: 16px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f757;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 100%;
    text-align: justify;
  }
}

/* =========================
   Pagination
========================= */
.pagination {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pagination a {
  border: 2px solid red !important;
  margin-right: 4px !important;
  padding: 10px !important;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
}

.pagination span {
  border: 2px solid red !important;
  margin-right: 4px !important;
  padding: 10px !important;
  background: rgb(253, 102, 1);
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  color: #fff;
}

.content-border {
  border-right: 3px solid;
}

.moretext {
  display: none;
}

/* =========================
   Breadcrumbs
========================= */
.breadcrumbs {
  padding: 40px 0 16px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 50px 0 0 0;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/* =========================
   Scroll Top
========================= */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #3258ff;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* =========================
   Preloader
========================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent
    var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* =========================
   Header
========================= */
.header {
  z-index: 997;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header .logo img {
  max-height: 215px;
  max-width: 617px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

/* =========================
   Team
========================= */
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}

.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

/* =========================
   Floating Button
========================= */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 5px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

/* =========================
   Get Started
========================= */
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}
/* =========================
   Get Started – Form States
========================= */
.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

/* =========================
   Animations
========================= */
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =========================
   Mobile Tweaks (CLEAN)
========================= */
@media screen and (max-width: 768px) {

  /* FIX: Swiper text spacing */
  .hero-slider .inner {
    padding: 15px;
  }

  .hero-slider .inner .subtitle {
    font-size: 1.2rem !important;
  }

  /* Breadcrumb fix (keep this) */
  .breadcrumbs ol {
    padding: 0 !important;
  }

  .breadcrumbs {
    top: 124px;
  }

}

/* =========================
   Constructions
========================= */
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/* =========================
   Services
========================= */
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}
/* =========================
   Service Boxes
========================= */
.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

/* Colors */
.services .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.services .service-box.blue .read-more {
  color: #2db6fa;
}

.services .service-box.blue:hover {
  background: #2db6fa;
}

.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}

.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.services .service-box.orange .read-more {
  color: #f68c09;
}

.services .service-box.orange:hover {
  background: #f68c09;
}

.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}

.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.services .service-box.green .read-more {
  color: #08da4e;
}

.services .service-box.green:hover {
  background: #08da4e;
}

.services .service-box.red {
  border-bottom: 3px solid #e9222c;
}

.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.services .service-box.red .read-more {
  color: #e9222c;
}

.services .service-box.red:hover {
  background: #e9222c;
}

.services .service-box.purple {
  border-bottom: 3px solid #b50edf;
}

.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.services .service-box.purple .read-more {
  color: #b50edf;
}

.services .service-box.purple:hover {
  background: #b50edf;
}

.services .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.services .service-box.pink .read-more {
  color: #f51f9c;
}

.services .service-box.pink:hover {
  background: #f51f9c;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #fff;
}

.services .service-box:hover .icon {
  background: #fff;
}

/* =========================
   Pricing
========================= */
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 15px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: 0;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px;
  border-radius: 50px;
  color: #4154f1;
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  transition: 0.3s;
  border: 1px solid #4154f1;
}

.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px;
  background: #4154f1;
  color: #fff;
}
/* =========================
   Features
========================= */
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* =========================
   Projects
========================= */
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/* =========================
   Testimonials
========================= */
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
/* =========================
   Alt Services
========================= */
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* =========================
   About
========================= */
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/* =========================
   Stats Counter
========================= */
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}
/* =========================
   Team (Overlay Variant)
========================= */
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/* =========================
   Services Cards
========================= */
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/* =========================
   Project Details – Slider
========================= */
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}
/* =========================
   Project Details – Info
========================= */
.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

/* =========================
   Project Details – Description
========================= */
.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details
  .portfolio-description
  .testimonial-item
  .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details
  .portfolio-description
  .testimonial-item
  h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px;
  padding-top: 20px;
}

.project-details
  .portfolio-description
  .testimonial-item
  h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details
  .portfolio-description
  .testimonial-item
  p {
  font-style: italic;
  margin: 0 0 15px;
  padding: 0;
}

/* =========================
   Service Details
========================= */
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}
/* =========================
   Contact
========================= */
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

/* =========================
   Recent Blog Posts
========================= */
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}
/* Text */
.hero-slider .carousel-cell .inner .subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-slider .carousel-cell .inner .title {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* Button */
.hero-slider .carousel-cell .inner .btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 14px 18px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #fff;
  transition: 0.2s ease;
}

.hero-slider .carousel-cell .inner .btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   Blog Pagination
========================= */
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

/* =========================
   Owl Carousel
========================= */
.owl-carousel {
  position: relative;
}

.owl-carousel .owl-item {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  margin-top: -10px;
  color: rgba(0, 0, 0, 0.2) !important;
  transition: 0.7s;
}

/* =========================
   Work Section
========================= */
.work {
  width: 100%;
}

.work .img {
  width: 100%;
  height: 500px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
}

.work .text {
  padding: 35px;
  padding-top: 0;
}

.work .text h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

.work .text h3 a {
  color: #fff;
}

.work .text .cat {
  font-size: 12px;
  color: #b063c5;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 5px;
}
    @media (max-width: 768px) {
     /* Styles for screens with a minimum width of 768px */
     section {
        padding: 24px 0 !important;
     
        }
    }
	.fw.nitro-offscreen{
		margin-top:30px;
	}
	/* location starts */
	.boxy{
  background:#fff
}
  .btn.green{
    border: 0;
    padding: 10px 20px;
    font-size:14px;
    background: linear-gradient(to right, rgb(253, 252, 71), rgb(36, 254, 65));
    color:#000;
  }
  .btn.blue{
    border: 0;
    padding: 10px 20px;
    font-size:14px;
    background:  #1989b0;
    color:#fff;
  }
  .btn.wati{
    border: 0;
    padding: 10px 20px;
    font-size:14px;
    background:#156b20 !important;
    color:#fff;
  }
  .location_item{
    width: 100%;;
    display:flex;
    align-items: start;
  }
  
  .location_item .infoa{
    color:#000
  }
  .location_item .rating{
    display:flex;
    align-items: center;
    margin-top: 10px;
  }
  .location_item .address{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;font-size:13px;
    font-weight:500
  }
  .location_item .address.full .left_wrap{
	  width:100%;
	  display:flex;
	  align-items:center;
  }
  .location_item .address.full .left_wrap > *{
	  margin-top:0;
	  margin-bottom:0;
  }
  .location_item .address.full .left_wrap > * + *{
	  margin-top:20px !important;
	  
  }
  .location_item .address img{
    width:40px;
    flex:0 0 40px;
  }
  .location_item .rating img{
    width:20px;
    margin-right: 5px;;
  }
  .location_item .btns{
    width: 230px;;
    padding-left: 20px;
    
  }
  .location_item .btns .btn{
    width: 100%;
    
  }
  .location_item .btns .btn + .btn{
    margin-top:5px;
    
  }
  .location_item .sers{
    padding-top:5px;
    margin-top:5px;
    border-top:1px solid #f1f1f1
  }
  .location_item .img{
    flex: 0 0 250px;
    width:250px;
    
  }
  .location_item .img .img_inner{
    width: 100%;
    height: 250px;;
    background: #fefefe;
    border-radius: 10px;
    overflow: hidden;
  }
  .location_item .img .img_inner img{
    object-fit: contain;
  }
  .location_item .name,
  .title{
    font-size:20px;
    width:100%;
    display:inline-block;
    margin-top:0;
    font-weight:700
  }
  .title{
    font-size:15px;
  }
  .desc{
    margin-top: 10px;
  }
  .location_item .price{
    font-size:16px;
    margin-top:0px;
    font-weight:700
  }
  
  .location_item .img img{
    max-width:100%;
  }
  .badg{
    background:#efefef;
    color:#000;
    margin:2px;
	float:left;
    border-radius: 10px;display: inline-block;
    padding:8px 10px;
    font-size:12px;
  }
  .badg.verify{
    background: linear-gradient(to right, rgb(168, 255, 120), rgb(120, 255, 214));
    color:#000;
    font-weight:bold;
  }
  .badg.plan{
    background: transparent;border: 2px solid #e9e9e9;color:#000;
    font-weight:bold;
    text-transform: uppercase;
  }
  .badg.trending{
    background: linear-gradient(to right, rgb(202, 197, 49), rgb(243, 249, 167));
    color:#000;
    font-weight:bold;
  }
  .location_item .info{
    width:calc(100% - 250px);
    padding-left: 30px;
    border-right: 1px solid #f1f1f1;
    padding-right: 30px;
  }
  
  .location_item .info.full{
    width:100%;
    padding-left:0px;
  }
  .location_item + .location_item{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #f1f1f1
  }
  .address_wrap_right{
    width:calc(35% - 20px);
    margin-left:20px;
    display:inline-block;float: right;
  }
  .imgs_gallery{
      width:65%;
      padding-top:30px;
     display:flex;
    align-items:center;
    flex-wrap:wrap;
      float: left;
  }
  .boxy{
      border:1px solid #f1f1f1;border-radius:10px; margin-top:30px;
      padding:30px;
  }
  .imgs_gallery .thumbnails{
    display:flex;
    flex-wrap:wrap;
    align-items:start;
  }
  .imgs_gallery .thumbnails p{
    color:#000;
    font-size:11px;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
    width:100%;
    display:inline-block;
  }
  .imgs_gallery .img_inner{
    width:20%;
        display: inline-flex;
    padding: 7px;
    flex-wrap:wrap;
    float: left;
  }
  .imgs_gallery .img_inner img{
    border-radius:10px;
    max-width:100%;
  }
  .fw{
    width: 100%;
    float:left;
    display: inline-block;
  }
  .flexrow{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  .flexrow > *{
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 786px){
    .location_item .img{
          flex: 0 0 150px;
      width: 150px;
    }
    .location_item .img .img_inner{
      height:150px;
    }
    .badg{
      font-size:11px;
    }
  }
  @media only screen and (max-width: 480px){
    .location_item{
      flex-wrap:wrap;
    }
    .boxy{
      padding:15px;
    }
    .location_item .address{
      flex-wrap:wrap
    }
    
    .location_item .address .vertre_badg_wrap{
      width:100%;
      margin-top:5px;
    }
    .location_item .btns{
      width:100%;
      padding-left:0;
    }
    
    .location_item .btns .btn{
      width:48%;
      float:left;
      margin:1%;
    }
    .imgs_gallery,
    .address_wrap_right  {
      width:100%;
      margin-left:0;
    }
    .thumbnails{
      margin-left:0;
    }
    .imgs_gallery .img_inner{
      width:33.33%;
    }
    .location_item{
      position:relative;
    }
    .location_item .info{
      width:100%;
      margin:15px 0;
      padding:0;
      border-right:0;
    }
    .location_item .info.full{
      width:100%;
      padding-right:0;
      border:0;
      border-bottom:1px solid #f1f1f1;
      padding-bottom:15px;
      margin-bottom:15px;
    }
    .location_item .btns.mob_abs{
      position:absolute;
      top:20px;
      right:0;
      width:50%;
    }
    .location_item .btns.mob_abs .btn{
      width:100%;
      padding:5px;
      font-size:11px;
      margin:3px 0;
    }
    .location_item .img{
      flex: 0 0 50%;
      width: 50%;
      padding-right:30px;
    }
    .location_item{
      padding-top:20px;
    }
    .location_item .info.full{
      margin-top:0;
    }
  }
  p a{
  color:#0d6efd !important
  }
  .badg{
  	border:1px solid #c6c6c6;
  }
	/* location ends */
 
 
 /* New Header Starts */
.preheader_wrap {
  padding: 10px 0;
}
.preheader_wrap .container {
  display: flex;
  align-items: center;
}
.preheader_wrap .left_wrap, .preheader_wrap .right_wrap {
  display: flex;
  align-items: center;
  justify-content: start;
}
.preheader_wrap a {
  display: inline-flex;
  align-items: center;
  color: #000;
}
.preheader_wrap a + a {
  margin-left: 15px;
}
.preheader_wrap a img {
  width: 18px;
  margin-right: 7px;
}
.preheader_wrap a p {
  padding: 0;
  margin: 0;
  font-size: 12px;
}
.preheader_wrap .right_wrap {
  margin-left: auto;
}

.newheader_wrap {
  padding: 20px 0;
  background: #ff9d00;
}
.newheader_wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newheader_wrap .logo_wrap {
  width: 25%;
}
.newheader_wrap .logo_wrap img {
  max-width: 90%;
}
.newheader_wrap .cta_wrap {
  width: 25%;
  display: flex;
  align-items: start;
  justify-content: end;
}
.newheader_wrap .cta_wrap a {
  color: #fff;
  text-align: center;
}
.newheader_wrap .cta_wrap a + a {
  margin-left: 15px;
}
.newheader_wrap .cta_wrap a p {
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 0 !important;
  padding-top: 10px !important;
  text-transform: uppercase;
}
.newheader_wrap .cta_wrap a img {
  width: 40px;
}
.newheader_wrap .search_wrap {
  width: 50%;
  padding: 0 20px;
}
.newheader_wrap .search_wrap .sinner_wrap {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.newheader_wrap .search_wrap .sinner_wrap .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 15px;
  font-size: 16px;
}
.newheader_wrap .search_wrap .sinner_wrap select {
  width: auto;
  border-right: 1px solid #d9d9d9 !important;
}
.newheader_wrap .search_wrap .sinner_wrap a {
  background: #e13703;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newheader_wrap .search_wrap .sinner_wrap a img {
  width: 20px;
}

@media only screen and (max-width: 786px) {
  .newheader_wrap .container {
    flex-wrap: wrap;
  }
  .newheader_wrap .logo_wrap, .newheader_wrap .cta_wrap {
    width: 50%;
  }
  .newheader_wrap .search_wrap {
    margin-top: 20px;
    order: 2;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .preheader_wrap a img {
    margin: 0;
  }
  .preheader_wrap a p {
    display: none;
  }
  .newheader_wrap .container {
    flex-wrap: wrap;
  }
  .newheader_wrap .logo_wrap {
    width: 55%;
  }
  .newheader_wrap .logo_wrap img {
    max-width: 100%;
  }
  .newheader_wrap .cta_wrap {
    width: 45%;
  }
  .newheader_wrap .cta_wrap a img {
    width: 30px;
  }
  .newheader_wrap .cta_wrap a p {
    display: none;
  }
  .newheader_wrap .search_wrap {
    margin-top: 10px;
    order: 2;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .newheader_wrap .search_wrap .sinner_wrap .form-control {
    padding: 8px;
    font-size: 12px;
  }
}
/* New Header Ends */
.img-responsive{
	max-width:100%;
	height:auto;
}
.prod_listing_wrap .item{
	border-radius:10px !important;
	overflow:hidden;
	margin-bottom:15px;
}
.prod_listing_wrap .item .caption{
	padding:10px;background:#fff;
}
.prod_listing_wrap .row{
	display:flex;
	align-items:start;
	flex-wrap:wrap;
}
.prod_listing_wrap .item h4{
	font-size:13px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
	margin-bottom:10px;
    overflow: hidden;
    -webkit-line-clamp: 2; /* Limits text to 2 lines */
    text-overflow: ellipsis;

}
.prod_listing_wrap .item h4 a{
	color: green;
}
.prod_listing_wrap .item p{
	font-size:12px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    
	margin-bottom:10px;
	overflow: hidden;
    -webkit-line-clamp: 2; /* Limits text to 2 lines */
    text-overflow: ellipsis;

}
.prod_listing_wrap .item .btn{
	padding:10px;
	font-size:12px;
}
.prod_listing_wrap .item .price{
	margin-bottom:0;
	display:none;
}
.owl-carousel .owl-nav{
	top: 50% !important;
    z-index: 10 !important;
    left: 0 !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
}
.owl-carousel .owl-nav button{
	background: #f7f7f7 !important;
    width: 30px !important;
	border-radius:30px !important;
    height: 30px !important;
    line-height: 1px !important;
    font-size: 35px !important;
}
.owl-carousel .owl-nav button span{
	    line-height: 23px  !important;
    display: inline-block !important;
    transform: translateY(-3px)  !important;
}
.owl-carousel .owl-nav .owl-prev{
	    right: auto !important;
    left: 0 !important;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}
/* Image rendering optimisation (SAFE) */
img {
  height: auto;
  max-width: 100%;
}
/* ======================================
   FRONTEND PRODUCT EDIT BUTTON (ADMIN)
====================================== */

.frontend-edit-product {
  position: fixed;
  top: 50%;
  right: 10px;
  z-index: 99999;
}

.frontend-edit-product a {
  background: #d32f2f;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.frontend-edit-product a:hover {
  background: #b71c1c;
}
/* Accessibility: minimum touch target size */
button,
a,
.action-item,
.social-links a {
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
}
/* REMOVE WHITE GAP */
.hero-slider,
.swiper {
  margin-bottom: 0 !important;
}

.hero-slider + * {
  margin-top: 0 !important;
}
.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero-slider .inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width:767px){
  .hero-slider{
    height: auto !important;
    min-height: auto !important;
  }
}
/* =========================================
   DISABLE OLD FOOTER SYSTEM COMPLETELY
========================================= */

.footer,
.footer::before,
footer.footer,
footer.footer::before{
    background:none !important;
    background-image:none !important;
    content:none !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    min-height:auto !important;
    box-shadow:none !important;
}

/* Prevent old overlay */
.footer::before{
    display:none !important;
}

/* Modern footer only */
#footer.modern-marble-footer{
    background:#f5f7fb !important;
    position:relative !important;
    overflow:hidden !important;
    width:100% !important;
    display:block !important;
}