/* ===============================
   HERO SLIDER BASE
================================ */
.custom-hero-slider {
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 95vh;
}

/* ===============================
   SLIDE STRUCTURE
================================ */
.swiper-slide {
    position: relative;
    overflow: hidden;
}

/* ===============================
   BACKGROUND IMAGE
================================ */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1);
}

/* Dark overlay */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    transition: background 1s ease;
}

/* Background zoom animation */
.swiper-slide-active .slide-bg {
    animation: zoomBg 8s ease-in-out forwards;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

/* ===============================
   SLIDE CONTENT
================================ */
.slide-content {
    max-width: 600px;
    padding-top: 200px;
    color: #fff;
}

/* ===============================
   TEXT STYLES
================================ */
.slide-subtitle {
        color: var(--ztc-text-text-1);
    text-align: center;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s20);
    font-style: normal;
    font-weight: var(--ztc-weight-medium);
    line-height: 22px;
    text-transform: capitalize;
    display: inline-block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
}

/* ===============================
   TEXT ANIMATION
================================ */
/* ===============================
   SLIDE CONTENT PARALLAX
================================ */
.swiper-slide-active .slide-content {
    transform: translateY(0);
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-prev .slide-content,
.swiper-slide-next .slide-content {
    transform: translateY(50px);
    opacity: 0.4;
}

/* ===============================
   TEXT SLIDE + FADE + SCALE
================================ */
.slide-content > * {
    opacity: 1;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.swiper-slide-active .slide-subtitle {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.swiper-slide-active .slide-desc {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.swiper-slide-active .btn-primary {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
/* ===============================
   TEXT TYPING EFFECT
================================ */
.slide-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: typing 0.8s forwards;
}

@keyframes typing {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* You can wrap each letter of title in <span> using JS for typing effect */

/* ===============================
   BUTTON FLOAT EFFECT
================================ */
.btn-primary {
    position: relative;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===============================
   SWIPER NAV + PAGINATION STYLE
================================ */
.swiper-button-next,
.swiper-button-prev {
    color: #073b3a;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    background: rgba(255, 90, 60, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #073b3a;
}

/* ===============================
   BACKGROUND ZOOM EFFECT
================================ */
.swiper-slide-active .slide-bg {
    animation: zoomBg 10s ease-in-out forwards;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.12); }
}

/* ===============================
   BUTTON STYLE & EFFECT
================================ */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #073b3a;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.4s;
}

.btn-primary:hover::after {
    left: 0;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000;
}



/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 991px) {
    .slide-content {
        padding-top: 140px;
    }

    .slide-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 70vh;
    }

    .slide-content {
        padding-top: 120px;
        text-align: center;
        margin: auto;
    }

    .slide-title {
        font-size: 30px;
    }

    .slide-desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 65vh;
    }

    .slide-title {
        font-size: 26px;
    }
}


.swiper-button-prev {
    background: #fff;
    padding: 20px;
    border-radius: 50%;
}
.swiper-button-next {
    background: #fff;
    padding: 20px;
    border-radius: 50%;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 17px !important;
    color: #073b3a;
    font-weight: 900;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 17px !important;
    color: #073b3a;
    font-weight: 900;
}



.about-like-image {
    padding: 90px 0;
    background: #f7f9fc;
}

.about-content .sub-title {
    color: #073b3a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(7, 59, 58, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 18px 0;
}
.about-content p {
    font-size: 17px;
    line-height: 27px;
}

.about-content ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
        display: flex;
}

.about-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
        width: 100%;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
     transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image-card img {
    width: 100%;
     transition: transform 0.7s ease;
}
.about-image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
}
.about-image-card:hover img {
    transform: scale(1.08);
}

.about-icon-points {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-icon-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
     transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}
.about-icon-points li:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.about-icon-points .icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #073b3a, #073b3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(13,110,253,0.35);
     transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.about-icon-points li:hover .icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(7,59,58,0.6);
}

.about-icon-points .text {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    transition: color 0.35s ease;
}

.small-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      transition: transform 0.5s ease;
}
.about-image-card:hover .small-card {
    transform: translateY(-8px) scale(1.04);
}

.small-card img {
    width: 150px;
}
.small-card h4 {
    font-size: 19px;
    font-weight: 700;
}

.stats-bar {
    background: linear-gradient(135deg, #0f3d3e, #0a2a2a);
    padding: 60px 0;
    margin-top: -40px;
}

.stat-box {
    color: #fff;
    transition: transform 0.4s ease;
}
.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h3 {
    font-size: 45px;
    font-weight: 700;
     transition: text-shadow 0.4s ease;
}

.stat-box:hover h3 {
    text-shadow: 0 0 22px rgba(255,255,255,0.6);
}

.footer-logoarea h2 {
    font-size: 27px;
    font-weight: 600;
    padding: 10px 0px;
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 14px;
    color: #cfcfcf;
    margin-bottom: 12px;
}

.newsletter-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.newsletter-input input {
    border: none;
    padding: 10px 12px;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.newsletter-input button {
    background: #073b3a;
    border: none;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
}
.nice-select ul.list {
    display: grid;
}

.cta-bg-area {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 70px 60px;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  animation: slideFade 1s ease forwards;
}

.cta-title span {
  color: #073b3a;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.btn-area1 {
  position: relative;
  z-index: 5;
}


.theme-btn1:hover {
  background: #ffffff;
  color: #fdfdfd !important;
}

.theme-btn1 .arrow {
  font-size: 18px;
}


.hero-area {
  position: relative;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;

  cursor: pointer;
  pointer-events: auto; /* 🔥 THIS FIXES CLICK */
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}


/* about section  */
.about2-section-area {
  padding: 80px 0;
}

.about2-section-area .about-images-area img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
      margin-top: 20px;
}

.about2-section-area .about-images-area img:hover {
  transform: translateY(-10px);
}


.about2-section-area .about-heading h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
}

.about2-section-area .about-heading p {
  font-size: 16px;
  color: #555;
}

.about2-section-area .about-points ul li i {
  color: #073b3a; /* blue icon */
}

.about2-section-area .theme-btn3 svg {
  margin-left: 8px;
}

.list-unstyled li {
    background: #073b3a33;
    padding: 17px;
}

/* count css  */

.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #33595e;
    margin-bottom: 10px;
}

.counter-box p {
    color: #33595e;
    font-size: 16px;
    letter-spacing: 1px;
}
.counter-box {
    margin: 80px 20px;
    background: #ffffff;
    padding: 30px;
        border-radius: 5px;
}


.mvv-section {
    padding: 90px 0;
    background: #f9fafc;
}

.mvv-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1685b6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mvv-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Card */
.mvv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.mvv-card:hover,
.mvv-card.active {
    transform: translateY(0px);
    background: #073b3a;
    color: #fff;
}

.mvv-card.active {
    transform: translateY(0px);
    background: #073b3a;
    color: #fff;
}


.mvv-card:hover p,
.mvv-card.active p,
.mvv-card:hover h3,
.mvv-card.active h3 {
    color: #fff;
}

/* Icon */
.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,90,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #073b3a;
    transition: 0.4s;
}

.mvv-card:hover .mvv-icon,
.mvv-card.active .mvv-icon {
    background: #fff;
    color: #073b3a;
}

.mvv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .mvv-title {
        font-size: 28px;
    }
}

/* team section  */

/* ===== TEAM SECTION ===== */
.team1-section-area {
  background: #f7f9fc;
}

/* ===== TEAM CARD ===== */
.team-widget-boxarea {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  position: relative;
}

.team-widget-boxarea:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===== IMAGE AREA ===== */
.team-widget-boxarea .img1 {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.team-widget-boxarea .img1 img {
  width: 100%;
  transition: transform 0.6s ease;
}

.team-widget-boxarea:hover .img1 img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.team-widget-boxarea .img1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  opacity: 0;
  transition: 0.9s;
}

.team-widget-boxarea:hover .img1::after {
  opacity: 1;
}

/* ===== SHARE ICON ===== */
.team-widget-boxarea .share {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #073b3a;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}

.team-widget-boxarea .share:hover {
  background: #222;
}

/* ===== SOCIAL ICONS ===== */
.team-widget-boxarea ul {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

.team-widget-boxarea:hover ul {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-widget-boxarea ul li a {
  height: 38px;
  width: 38px;
  background: #ffffff;
  color: #073b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}

.team-widget-boxarea ul li a:hover {
  background: #073b3a;
  color: #ffffff;
}

/* ===== CONTENT AREA ===== */
.team-widget-boxarea .content-area {
  padding: 0px 25px 25px;
  text-align: center;
}

.team-widget-boxarea .content-area a {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.team-widget-boxarea .content-area a:hover {
  color: #073b3a;
}

.team-widget-boxarea .content-area p {
  margin: 0;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.5px;
}

.team1-section-area .team-widget-boxarea ul li a i {
    margin-top: 12px;
}

.team-btn-area {
    padding: 10px 0 50px;
}

.team-btn-area a.nm-btn
 {
    background: #073b3a;
    color: #fff;
    padding: 11px 18px;
    border-radius: 20px;
}



/* Left Arrow */
button.slick-prev.slick-arrow {
    left: -50px;
}

button.slick-next.slick-arrow {
    right: -50px;
}

/* Right Arrow */
.slick-next {
    right: 10px;
}

/* Icon */
.slick-prev i,
.slick-next i {
    font-size: 16px;
    color: #073b3a;
}

/* Hover */
.slick-prev:hover,
.slick-next:hover {
    background: #073b3a;
}

.slick-prev:hover i,
.slick-next:hover i {
    color: #fff;
}

/* Remove default slick arrows */
.slick-prev::before,
.slick-next::before {
    display: none;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        top: -45px;
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        right: 60px;
    }
}

/* Contact Page  */

/* Section Heading */
.location-section-area .sub-title {
  color: #073b3a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-section-area .main-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.location-section-area .title-desc {
  font-size: 15px;
  color: #666;
  margin-top: 12px;
}

/* Location Card */
.location-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.location-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.location-box .icon {
  width: 70px;
  height: 70px;
  background: #073b3a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 26px;
}

.location-box .icon:hover{
  background: #cbcd30;
    color: #000000;
}
/* Title */
.location-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.location-box p,
.location-box a {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.location-box a:hover {
  color: #073b3a;
}

/* Contact Form Wrapper */
.contact-form-area {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Header */
.form-header h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* Input Area */
.input-area input,
.input-area textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #333;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.input-area textarea {
  min-height: 130px;
  resize: none;
}

/* Focus Effect */
.input-area input:focus,
.input-area textarea:focus {
  outline: none;
  border-color: #073b3a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 90, 60, 0.1);
}


/* Responsive */
@media (max-width: 767px) {
  .contact-form-area {
    padding: 30px 22px;
  }

  .form-header h4 {
    font-size: 24px;
  }
}


/* property page  */

/* ================= PROPERTY ROW PAGE ================= */
.property-row-page {
    background: #f4f6fb;
    padding: 70px 0;
}

/* HEADER */
.property-header {
    margin-bottom: 35px;
}
.property-header h2 {
    font-size: 30px;
    font-weight: 700;
}
.property-header p {
    color: #666;
}

/* ROW CARD */
.property-row-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 22px;
    margin-bottom: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.property-row-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.property-row-img {
    position: relative;
}
.property-row-img img {
    width: 300px;
    border-radius: 14px;
}

/* STATUS */
.property-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #073b3a;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* INFO */
.property-row-info {
    flex: 1;
}
.property-row-info a h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 3px;
        color: #073b3a;
}

.property-row-info p {
    padding: 10px 0px;
    color: #646060;
}

/* LOCATION */
.property-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

/* META */
.property-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    margin-bottom: 10px;
}
.property-row-meta span img {
    width: 15px;
    margin-right: 6px;
}

/* EXTRA INFO */
.property-extra-info {
    font-size: 14px;
    color: #555;
}

/* RIGHT SIDE */
.property-row-right {
    text-align: right;
    min-width: 180px;
}

/* PRICE */
.property-price {
    font-size: 22px;
    font-weight: 700;
    color: #073b3a;
    margin-bottom: 12px;
}

/* BUTTONS */
.property-actions a {
    display: inline-block;
    margin-left: 8px;
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 8px;
    transition: .3s;
}

a.theme-btn3 {
    background: #073b3a;
    color: #ffff;
}
a.theme-btn3:hover {
    background: #cbcd30;
    color: #000000;

}

/* RESPONSIVE */
@media(max-width:991px){
    .property-row-card {
        flex-direction: column;
    }
    .property-row-img img {
        width: 100%;
        height: 220px;
    }
    .property-row-right {
        text-align: left;
    }
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #073b3a;
    border-color: #073b3a;
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #073b3a;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.property-image-box img {
    width: 100%;
    border-radius: 12px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 22px;
    color: #2a9d8f;
    font-weight: 700;
}

.property-features .feature-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.sidebar-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.sidebar-box h4 {
    margin-bottom: 15px;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list li i {
    color: #073b3a;
    margin-right: 8px;
}

.catagori-area {
    position: relative;
    padding: 100px 0;
    background: url(../images/19.jpg) no-repeat center / cover;
    overflow: hidden;
}

.catagori-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#000000ad, rgb(10 10 10 / 85%));
    z-index: 0;
}

.catagori-area .container {
    position: relative;
    z-index: 1;
}

/* SCROLL ANIMATION BASE */
.animate-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.scroll-animate.show .animate-item {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.show .animate-item:nth-child(1) { transition-delay: 0.2s; }
.scroll-animate.show .animate-item:nth-child(2) { transition-delay: 0.4s; }
.scroll-animate.show .animate-item:nth-child(3) { transition-delay: 0.6s; }
.scroll-animate.show .animate-item:nth-child(4) { transition-delay: 0.8s; }

/* SECTION TITLES */
.catagori-area .section-sub-titile h4,
.catagori-area .section-main-title h2 {
    color: #ffffff;
}

/* COUNTER BOX */
.real-counter-box {
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.real-counter-box:hover {
    transform: translateY(-12px) scale(1.05);
}

/* COUNTER NUMBER */
.real-counter-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #003d4d;
    margin-bottom: 8px;
}

/* COUNTER TEXT */
.real-counter-box p {
    font-size: 16px;
    font-weight: 600;
    color: #3e3e3e;
}


/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}




/* ================= PROPERTY DETAIL ================= */
.property-detail-page {
    background: #f5f7fb;
    padding: 70px 0;
}

/* IMAGE */
.property-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* SECTION CARD */
.detail-section {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.detail-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #073b3a;
    padding-left: 12px;
}

/* FEATURES */
.feature-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.feature-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f9fc;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

/* PRICE CARD */
.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    /* position: sticky;
    top: 90px; */
}

.price-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #073b3a;
    margin-bottom: 5px;
}

.price-card .status {
    display: inline-block;
    padding: 6px 16px;
    background: #eaf4ff;
    color: #073b3a;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* BUTTON */
.contact-btn {
    width: 100%;
    background: #073b3a;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.contact-btn:hover {
    background: #cbcd30;
    color: #000000;
}

.btn-area-price span {
    font-size: 20px;
    color: #073b3a;
    font-weight: 700;
}



/* SERVICES & CATEGORY */
.price-card ul {
    padding: 0;
    margin: 0;
}
.price-card ul li {
    list-style: none;
    margin-bottom: 12px;
}
.price-card ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f7f9fc;
    border-radius: 12px;
    font-weight: 600;
    color: #073b3a;
    transition: 0.3s;
}
.price-card ul li a:hover,
.price-card ul li a.active {
    background: #073b3a;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px){
    .property-main-img img {
        height: 260px;
    }
    .price-card {
        position: relative;
        top: 0;
    }
}

/* PROJECT IMAGE SLIDER */
.project-image-slider {
    margin-top: 20px;
}

.project-image-slider .slider-item img {
    width: 100%;
    border-radius: 16px;
    padding: 20px;
}

.detail-section h3 {
    color: #073b3a;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Slick Arrow Base */
.slick-prev,
.slick-next {
    position: absolute;
    top: 240px;
    z-index: 9;
    width: 45px;
    height: 45px;
    border: #fff;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
/* CUSTOM SLIDER ARROWS */
.custom-arrow {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    z-index: 10;
    border: none;
}

.custom-arrow i {
    color: #ffffff;
    font-size: 16px;
}

.project-image-slider .slick-prev {
    left: -30px !important;
    top: 100px !important;
}
.project-image-slider .slick-next {
    right: -30px !important;
    top: 100px !important;
}

.slick-list.draggable {
    height: fit-content !important;
}

.custom-arrow:hover {
    background: #f7f7f7 !important;
    color: #fff !important;
}


/* ================= GLASS SERVICES SECTION ================= */
.service-glass-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fb, #eef1f7);
}

/* CARD */
.service-glass-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: all 0.45s ease;
    overflow: hidden;
    margin: 20px 0px;
}

.service-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
}

/* ICON */


/* CONTENT */
.service-glass-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0px;
    color: #1c1c1c;
}

.service-glass-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

/* ACTION BUTTONS */
.service-glass-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.glass-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.35s ease;
    text-align: center;
}

.glass-btn.outline {
    border: 2px solid #073b3a;
    color: #073b3a;
    background: transparent;
}

.glass-btn.outline:hover {
    background: #073b3a;
    color: #fff;
}

.glass-btn.fill {
    background: #1c1c1c;
    color: #fff;
}

.glass-btn.fill:hover {
    background: #073b3a;
}

/* GLOW EFFECT */
.glow-effect {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at top left, rgb(7 59 58 / 52%), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-glass-card:hover .glow-effect {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-glass-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .service-glass-actions {
        flex-direction: column;
    }
    .glass-btn {
        width: 100%;
    }
}


/* ================= SERVICE DETAILS PAGE ================= */
.service-details-area {
    padding: 80px 0;
    background: #f5f7fb;
}

/* LEFT CONTENT */
.service-details-thumb img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    margin-bottom: 30px;
}

/* DESCRIPTION */
.service-detials-discription {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.service-detials-discription h2,
.service-detials-discription h3,
.service-detials-discription h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1c1c1c;
}

.service-detials-discription ul {
    padding-left: 20px;
    margin: 15px 0;
}

.service-detials-discription ul li {
    margin-bottom: 10px;
}

/* SIDEBAR */
.widget-categories-box {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    /* position: sticky;
    top: 100px; */
}

/* SERVICE IMAGE SLIDER */
.service-image-slider {
    margin-top: 30px;
}

.service-image-slider .slider-item img {
    width: 100%;
    border-radius: 18px;
    padding: 20px;
}

.widget-categories-menu h4 {
    padding: 12px;
    color: #073b3a;
    font-weight: 700;
}

.service-image-slider .slick-prev:before,
.service-image-slider .slick-next:before {
    font-size: 16px;
    color: #fff;
}

/* DOTS */
.service-image-slider .slick-dots li button:before {
    color: #073b3a;
}

@media (max-width: 768px) {
    .service-image-slider .slider-item img {
        height: 220px;
    }
}


.widget-categories-menu ul {
    padding: 0;
    margin: 0;
}

.widget-categories-menu ul li {
    list-style: none;
    margin-bottom: 10px;
}

.widget-categories-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 14px;
    background: #f7f9fc;
    font-weight: 600;
    color: #333;
    transition: 0.35s;
}

.widget-categories-menu ul li a span {
    color: #999;
}

.widget-categories-menu ul li a:hover,
.widget-categories-menu ul li a.active {
    background: #073b3a;
    color: #fff;
}

.widget-categories-menu ul li a:hover span,
.widget-categories-menu ul li a.active span {
    color: #fff;
}

/* CONTACT BOX */
.widget-contact-box {
    background: linear-gradient(135deg, #073b3a, #073b3a);
    border-radius: 22px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 20px 45px rgb(124 124 124 / 40%);
}

.widget-contact-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.widget-contact-content h6 {
    font-size: 14px;
    opacity: 0.9;
}

.widget-contact-content h4 a {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .widget-categories-box {
        position: relative;
        top: 0;
    }

    .service-details-thumb img {
        height: 300px;
    }

    .service-detials-discription {
        padding: 25px;
    }
}


.testimonial-image-slider img {
    width: 100%;
    border-radius: 20px;
}

.testimonial-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.testimonial-box p {
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0;
}

.author-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-area img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}


.testimonial-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #073b3a;
    color: #fff;
    border: none;
    cursor: pointer;
}


/* ===== PROPERTY LIST PAGE ===== */

.property-list-area {
    background: #f6f8fb;
}

/* Card */
.property-list-card {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
    transform: translateY(40px);
    opacity: 0;
    transition: .6s ease;
}

.property-list-card.active {
    transform: translateY(0);
    opacity: 1;
}

/* Image */
.property-img {
    position: relative;
    width: 42%;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.property-list-card:hover img {
    transform: scale(1.08);
}

/* Badge */
.badge-new {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #cbcd30;
    color: #000000;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    z-index: 2;
}

/* Content */
.property-content {
    padding: 24px;
    width: 58%;
}

.property-title a {
    font-size: 22px;
    font-weight: 700;
    color: #073b3a;
    text-decoration: none;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #073b3a;
    margin: 10px 0;
}

.property-price span {
    font-size: 14px;
    color: #6b7280;
    margin-left: 8px;
}

.property-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.property-desc {
    color: #4b5563;
    line-height: 1.6;
}

/* Meta */
.property-meta {
    display: flex;
    gap: 20px;
    margin: 14px 0;
    padding: 0;
    list-style: none;
}

.property-meta li {
    font-size: 14px;
    color: #374151;
}

.property-meta i {
    color: #073b3a;
    margin-right: 6px;
}

/* Button */
.details-btn {
    display: inline-block;
    margin-top: 10px;
    color: #073b3a;
    font-weight: 600;
    text-decoration: none;
}

.details-btn:hover {
    text-decoration: underline;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transform: translateY(40px);
    opacity: 0;
    transition: .6s ease;
}

.sidebar-box.active {
    transform: translateY(0);
    opacity: 1;
}

.sidebar-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Lists */
.sidebar-list,
.sidebar-category {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li,
.sidebar-category li {
    margin-bottom: 12px;
        background: #073b3a1f;
    padding: 14px;
}

.sidebar-list a,
.sidebar-category a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.sidebar-list a:hover,
.sidebar-category a:hover {
    color: #073b3a;
}

.property-price del {
    color: #727171;
    font-size: 17px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 991px) {
    .property-list-card {
        flex-direction: column;
    }

    .property-img,
    .property-content {
        width: 100%;
    }
}


/* ===== GALLERY SECTION ===== */
.project4-section-area {
    background: #f7f9fc;
    padding: 90px 0;
}

/* ===== GALLERY CARD ===== */
.gallery-boxarea {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-boxarea:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.18);
}

/* IMAGE */
.gallery-boxarea .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-boxarea:hover img {
    transform: scale(1.12);
}

/* DARK OVERLAY */
.gallery-boxarea::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.75));
    opacity: 0;
    transition: 0.4s;
}

.gallery-boxarea:hover::after {
    opacity: 1;
}

/* ===== CONTENT OVERLAY ===== */
.gallery-boxarea .btn-area1 {
        position: absolute;
    bottom: 25px;
    left: 0px;
    right: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 2;
    transform: translateY(25px);
    transition: all 0.4s ease;
    z-index: 2;
    width: 100%
}

.gallery-boxarea:hover .btn-area1 {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.gallery-boxarea h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 0px 10px;
}

/* ARROW BUTTON */
.gallery-boxarea .btn-area1 a {
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.gallery-boxarea .btn-area1 a svg {
    width: 20px;
}


/* ===== RESPONSIVE FIX ===== */
@media (max-width: 991px) {
    .gallery-boxarea {
        margin-bottom: 25px;
    }
}


/* ===== HERO SECTION ===== */
.portfolio-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.portfolio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    background: #073b3a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* ===== DETAIL SECTION ===== */
.portfolio-detail-section {
    padding: 90px 0;
    background: #f8fafc;
}

/* LEFT CONTENT */
.portfolio-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}

.portfolio-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.portfolio-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===== HIGHLIGHTS ===== */
.portfolio-highlights {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-box {
    background: #f8fafc;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight-box i {
    font-size: 28px;
    color: #073b3a;
    margin-bottom: 15px;
}

.highlight-box h6 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.highlight-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== SIDEBAR ===== */
.portfolio-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}

.sidebar-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* SIDEBAR LIST */
.sidebar-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-projects li {
    margin-bottom: 12px;
}

.sidebar-projects li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-radius: 14px;
    background: #f8fafc;
    color: #111;
    font-size: 15px;
    transition: 0.3s;
}

.sidebar-projects li a i {
    color: #073b3a;
    transition: transform 0.3s;
}

.sidebar-projects li a:hover {
    background: #073b3a;
    color: #fff;
}

.sidebar-projects li a:hover i {
    color: #fff;
    transform: translateX(6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .portfolio-hero h1 {
        font-size: 34px;
    }

    .portfolio-highlights {
        grid-template-columns: 1fr;
    }

    .portfolio-sidebar {
        margin-top: 40px;
        position: relative;
    }
}

.work-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}


.work-img {
    position: relative;
    overflow: hidden;
        text-align: center;
}
.icon-glow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #073b3a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(20,184,166,0.6);
    margin: 30 auto 20px;
}

.icon-glow img {
    width: 42px;
    filter: brightness(0) invert(1);
}


.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #073b3a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-content {
    padding: 24px 25px 40px;
}

.work-content a h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #073b3a
}

.work-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.work-link {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: #073b3a;
    padding: 10px 20px;
}

.work-link:hover {
    font-weight: 600;
    color: #0f0f0f;
    text-decoration: none;
    background: #cbcd30;
    padding: 10px 20px;
}

.work-link i {
    margin-left: 6px;
    transition: 0.3s;
}

.work-link:hover i {
    transform: translateX(5px);
}



.testimonial-focus{
    padding: 90px 0 40px;
    color: #000000;
    overflow: hidden;
    
}

.focus-title{
    text-align: center;
    margin-bottom: 80px;
}

.focus-title h2{
    font-size: 40px;
    font-weight: 700;
}

.focus-title p{
    color: #0d0d0e;
}

.focus-item{
    padding: 30px;
}

.focus-card{
    background: rgb(7 59 58);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 50px 45px;
    text-align: center;
    transition: 0.6s ease;
    transform: scale(0.85);
    opacity: 0.5;
}

.slick-center .focus-card{
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 4px 50px #073b3a;
}


.focus-stars{
    font-size: 20px;
    color: #facc15;
    margin-bottom: 20px;
}

.focus-text{
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
    color: #ffffff;

}

.focus-user{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.focus-user img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
}

.focus-user h4{
    margin: 5px;
    font-size: 20px;
    color: #ffff;
}

.focus-user span{
    font-size: 14px;
    color: #cccdcf;
}
.focus-stars i {
    color: #d1d5db;
    font-size: 15px;
}
.focus-stars i.active {
    color: #fbbf24;
}


/* Slick arrows */
.focus-slider .slick-prev,
.focus-slider .slick-next{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(7 59 58);
    z-index: 10;
}

.focus-slider .slick-prev{
    left: -70px;
}

.focus-slider .slick-next{
    right: -70px;
}

.focus-slider .slick-prev:before,
.focus-slider .slick-next:before{
    color: #fff;
    font-size: 22px;
}

/* Arrow base */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Icon */

/* Hover */

.custom-arrow:hover i {
    color: #073b3a;
}

/* Position */
.slick-prev {
    left: -60px;
}
.slick-next {
    right: -60px;
}

/* Mobile */
@media(max-width:768px){
    .slick-prev {
        left: 10px;
    }
    .slick-next {
        right: 10px;
    }
}


@media (max-width: 767px) {
    .small-card {
    position: absolute;
    bottom: 25px;
    left: 0px;
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 0px 15px;
}

.work-card {
    margin: 10px;
}
.focus-title {
    text-align: center;
    margin-bottom: 0px;
}
.focus-item {
    padding: 0px;
}
button.slick-next.slick-arrow {
    right: -8px;
}
button.slick-prev.slick-arrow {
    left: -7px;
}
.focus-card {
    background: rgb(7 59 58);
    backdrop-filter: contrast(0.5);
    border-radius: 28px;
    padding: 50px 45px;
    text-align: center;
    transition: 0.6s ease;
    transform: scale(0.85);
    opacity: 1;
}

.blog2-section-area {
    position: relative;
    z-index: 1;
    padding: 0px 20px;
}
}


/* ===========================
   OTHERS SLIDER SECTION
=========================== */

.others-selider-section {
    padding: 80px 0;
    background: #fafafa;
}

.team-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

/* ===========================
   OWL SLIDER
=========================== */

.slider-section-boxarea {
    position: relative;
    padding-bottom: 40px;
}

/* Navigation arrows */
.slider-section-boxarea .owl-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-section-boxarea .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.slider-section-boxarea .owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

/* ===========================
   SLIDER CARD
=========================== */

.slider-boxarea {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.slider-boxarea:hover {
    transform: translateY(-8px);
}

/* Image */
.slider-boxarea .img1 img {
    width: 100%;
    border-radius: 24px 24px 0 0;
}

/* Content */
.conetnt-area {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.conetnt-area .text a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.conetnt-area .text a:hover {
    color: #000;
}

/* Arrow */
.conetnt-area .arrow a {
    width: 42px;
    height: 42px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.conetnt-area .arrow a svg {
    width: 18px;
}

.conetnt-area .arrow a:hover {
    background: #000;
    color: #fff;
}

/* ===========================
   ZIGZAG EFFECT
=========================== */

.slider-section-boxarea .owl-item:nth-child(even) .slider-boxarea {
    transform: translateY(40px);
}

.slider-section-boxarea .owl-item:nth-child(odd) .slider-boxarea {
    transform: translateY(0);
}

/* ===========================
   MOBILE FIX
=========================== */

@media (max-width: 767px) {

    .team-header h2 {
        font-size: 30px;
    }

    .slider-section-boxarea .owl-item .slider-boxarea {
        transform: translateY(0) !important;
    }

    .slider-boxarea .img1 img {
        height: 240px;
    }
}
