* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Times New Roman', Times, serif !important;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1140px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.wrapper {
  overflow: hidden;
}

/* topbar-css-start */

.topbar {
  background: linear-gradient(138deg, #1e3c72, #ff7b00);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
}

.topbar a {
  color: #fff;
  margin-right: 0px;
  text-decoration: none;
}

.topbar a:hover {
  color: #ffd700;
}

.divider {
  border-left: 2px solid #ffffffc4;
  height: 22px;
  margin: 0 10px;
}

/* Wrapper to stop overlap */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Scrolling text */
.scroll-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 10s linear infinite;
}

.scroll-track span {
  white-space: nowrap;
  padding-right: 50px;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .topbar {
    text-align: center;
  }

  .divider {
    display: none;
  }


  .right-content {
    justify-content: center !important;
  }

  .left-content {
    display: none;
  }

  .scroll-text {
    font-size: 12px;
  }
}

/* topbar-css-end */


/* navbar-section-css-start */


.custom-navbar {
  position: absolute !important;
  top: 38px;
  left: 0;
  width: 100%;
  background: #0a4cc9;
  z-index: 99;
  transition: all 0.4s ease;
  border-bottom: 1px solid #1d438b75;
}

/* When scrolled */
.custom-navbar.scrolled {
  position: fixed !important;
  top: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease;
}

/* Smooth slide */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Text color change after scroll */
.custom-navbar.scrolled .nav-link {
  color: rgb(29 67 139) !important;
}

.custom-navbar.scrolled .contact-text {
  color: #1d438b;
  border-color: #1d438b;
}

.custom-navbar.scrolled .contact-text:hover {
  color: #fff;
  border-color: #1d438b;
}

.custom-navbar.scrolled .custom-btn {
  color: #1d438b !important;
  border-color: #1d438b !important;
}

.custom-navbar.scrolled .custom-btn:hover {
  color: #fff !important;
  border-color: #1d438b !important;
}

.custom-navbar.scrolled .navbar-toggler {
  color: #fff !important;
  background-color: #ff7b00 !important;
  border: 1px solid #0a61b7 !important;
}


/* Logo */
.logo {
  height: 60px;
}

/* Menu Links */
.nav-item .nav-link {
  position: relative;
  color: #fff;
  font-weight: 600;
  margin: 0 10px;
  font-size: 14px;
  transition: 0.3s;
}

/* Animated underline */
.nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff7b00;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Hover effect */
.nav-item .nav-link:hover::after {
  width: 100%;
}

.nav-item .nav-link:hover {
  color: #ff7b00;
}



/* Right Section */
.contact-text {
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  color: #ffffff;
  border-radius: 30px;
  padding: 8px 15px;
  border: 2px solid #ffffff;
  transition: 0.3s;
  text-decoration: none;
}

/* Background animation layer */
.contact-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
  background: #ff7b00;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Hover effect */
.contact-text:hover::before {
  width: 110%;
}

.contact-text:hover {
  color: #fff;
}

/* Button */
.custom-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff !important;
  padding: 8px 17px !important;
  border-radius: 25px;
  font-size: 16px !important;
  font-weight: 600;
  border: 2px solid #ffffff !important;
  background: transparent !important;
}

/* Background animation layer */
.custom-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
  background: #ff7b00;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Hover effect */
.custom-btn:hover::before {
  width: 110%;
}

.custom-btn:hover {
  color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin: 15px 0;
  }

  .right-section {
    flex-direction: column;
    gap: 10px;
  }

  .custom-navbar {
    top: 36px;
  }
}

/* FIX Properties dropdown position */
.property-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Properties text + icon */
.property-link {
  padding-right: 5px;
}

.dropdown-toggle-btn {
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  margin-left: -12px;
  display: flex;
  align-items: center;
}

/* Dropdown bottom show */
.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  margin-top: 12px;
  background: #fff;
  min-width: 180px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.custom-dropdown a {
  text-decoration: none;
  color: #0a4cc9;
}

.custom-dropdown a:hover {
  color: #ff7b00;
}

/* Hover show bottom */
.property-dropdown:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Hide submenu by default */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

/* Show submenu when active */
.mobile-dropdown.active .mobile-submenu {
  display: block;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
}

.custom-offcanvas .nav-link {
  font-size: 16px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

/* offcanvas-css-start */

.custom-offcanvas {
  width: 280px !important;
  background: #1d438b !important;
}

/* Header */
.offcanvas-header {
  border-bottom: 1px solid #eee;
}

/* Menu links */
.mobile-submenu .nav-link {
  font-size: 16px;
  padding: 10px 0;
  color: #1d438b;
  font-weight: 500;
  transition: 0.3s;
}

.custom-offcanvas .nav-link:hover {
  color: #ff7b00;
  padding-left: 8px;
}

hr {
  border-top: 1px solid #ffffffeb !important;
  opacity: 1 !important;
}

.mobile-contact {
  text-align: center;
}

/* Contact */
.mobile-contact p {
  margin: 5px 0;
  font-size: 14px;
  color: #fff;
}

.mobile-dropdown-btn {
  background: transparent;
  border: none;
  color: #fff;
  margin-left: -11px;
}

/* Smooth slide feel */
.offcanvas {
  transition: transform 0.4s ease-in-out;
}

.mobile-buttons a {
  display: block;
}

/* Fix contact-text inside mobile */
.mobile-buttons .contact-text {
  display: block;
  border-radius: 7px;
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: none !important;
}

.close-button {
  width: 50px;
  height: 50px;
  /* border-radius: 50% !important; */
  /* border: 2px solid #1d438b !important; */
  color: #fff;
  font-size: 35px;
  filter: brightness(1) invert(1);
}

.btn-close {
  opacity: unset !important;
}

.navbar-toggler {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #e9ecef !important;
}

.mb-logo {
  width: 70px;
  border: 1px solid #f8771e;
  box-shadow: 0px 0px 15px #cf4b0159;
  padding: 3px;
  border-radius: 5px;
}





/* navbar-section-css-end */

/* banner-section-css-start */

.hero-banner {
  position: relative;
  height: 90vh;
  background: url('../img/banner/house.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Zoom Animation */
.hero-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: zoomEffect 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Overlay */
.hero-banner .overlay {
  position: absolute;
  width: 100%;
  height: 90vh;
  background: rgb(0 0 0 / 63%);
}

/* Content */
.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.hero-content p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #fff;
}

/* Search Box */



/* Search Box */
.search-box {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  align-items: center;
  max-width: 700px;
  margin: auto;
}

.search-box .form-search {
    width: 100%;
    display: flex;
}


/* Combined Input + Button */
.search-group {
  display: flex;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.search-group input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.search-group .search-btn {
  background: #1d438b;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
}

/* Remove old input border */
.search-box select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #000;
  /* font-weight: 600; */
}

.search-box select option {
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
  }

  .search-group {
    width: 100%;
  }

  .search-group .search-btn {
    width: 100px;
    padding: 0px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 19px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }

  .hero-banner {
    height: 80vh;
  }

  .hero-content {
    margin-top: 35px;
  }
}

/* Property Type Buttons */
.property-type-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.type-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* background: rgba(255, 255, 255, 0.12); */
  background: #ff7b00;
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s ease;
  cursor: pointer;
}

.type-btn i {
  font-size: 12px;
}

.type-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff7b00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .property-type-buttons {
    gap: 8px;
    margin-bottom: 15px;
  }

  .type-btn {
    font-size: 11px;
    padding: 7px 12px;
  }
}




/* banner-section-css-end */

/* land-section-css-start */

.land-offer-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8fbff, #eef4ff);
  overflow: hidden;
  position: relative;
}

/* Wrapper */
.land-offer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.land-img-box {
  position: relative;
}

/* Main Image */
.main-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: 0.5s;
}

.main-img:hover img {
  transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  color: #1d438b;
  animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
  color: #ff7b00;
  font-size: 20px;
}

.card-one {
  top: 40px;
  left: -30px;
}

.card-two {
  bottom: 40px;
  right: -30px;
}

/* Floating Animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}


.land-content .sub-title {
  background: rgba(29, 67, 139, 0.1);
  color: #1d438b;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.land-content h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 5px;
}

.intro-text {
  font-size: 15px;
  color: #000;
  margin-bottom: 15px;
}

/* Offer Box */
.offer-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #ff7b00;
}

.offer-box h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d438b;
}

.offer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-box ul li {
  margin-bottom: 6px;
  color: #000;
  line-height: 1.7;
  font-size: 13px;
}

/* Highlight */
.highlight-box {
  background: linear-gradient(135deg, #1d438b, #ff7b00);
  color: #fff;
  padding: 12px 20px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button */
.land-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff7b00, #ff9800);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
}

.land-btn:hover {
  transform: translateY(-5px);
  color: #fff;
}


@media (max-width: 992px) {

  .land-offer-wrapper {
    grid-template-columns: 1fr;
  }

  .main-img img {
    height: 450px;
  }

  .land-content h2 {
    font-size: 32px;
  }

  .card-one {
    left: 10px;
  }

  .card-two {
    right: 10px;
  }
}

@media (max-width: 768px) {

  .land-offer-section {
    padding: 60px 0;
  }

  .land-content h2 {
    font-size: 16px;
  }

  .intro-text {
    font-size: 12px;
  }

  .offer-box {
    padding: 20px;
  }

  .offer-box h4 {
    font-size: 14px;
  }

  .offer-box ul li {
    font-size: 12px;
  }

  .highlight-box {
    font-size: 12px;
  }

  .floating-card {
    padding: 12px 15px;
    font-size: 13px;
  }

  .main-img img {
    height: 350px;
  }
}

@media (max-width: 576px) {

  .land-content {
    text-align: center;
  }

  .land-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .floating-card {
    display: none;
  }

  .offer-box {
    text-align: left;
  }
}

/* land-section-css-end */


/* spgroup-about-section-css-start */

.spgroup-about {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
}

/* Section Heading */
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 5px;
}

.section-title p {
  color: #000;
  font-size: 16px;
  margin: 0;
}

/* About Card */
.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 67, 139, 0.12);
  transition: all 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover Effect */
.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Gradient Border Glow */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, #1d438b, #ff7b00);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Icon */
.about-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d438b, #ff7b00);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 28px;
}

.about-icon i {
  color: #fff;
  font-size: 28px;
}

/* Heading */
.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 10px;
}

/* Paragraph */
.about-card p {
  color: #000;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Bengali Card */
.bengali-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

/* English Card */
.english-card {
  background: linear-gradient(180deg, #ffffff, #fff9f3);
}

/* Responsive */
@media (max-width: 991px) {

  .section-title h2 {
    font-size: 30px;
  }

  .about-card {
    padding: 25px;
  }

  .about-card h3 {
    font-size: 24px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {

  .spgroup-about {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    font-size: 12px;
  }

  .about-card {
    padding: 22px;
    border-radius: 18px;
  }

  .about-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .about-icon i {
    font-size: 24px;
  }

  .about-card h3 {
    font-size: 18px;
  }

  .about-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* spgroup-about-section-css-end */



/* features-section-css-start */

.featured-section {
  padding: 60px 0;
  background: #eef4ff;
  text-align: center;
}

.vacant-land-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.flat-section {
  padding: 60px 0;
  background: #eef4ff;
  text-align: center;
}

.house-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}


.featured-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e3c72;
}

.featured-section p {
  color: #000;
  margin-bottom: 10px;
}

/* Owl Carousel Spacing */
.featured-carousel .item {
  padding: 10px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid #1d438b !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover .card-img img {
  transform: scale(1.08);
}

/* Tag */
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
  font-weight: 500;
}

.sale {
  background: linear-gradient(45deg, #00b894, #00cec9);
}

.rent {
  background: linear-gradient(45deg, #ff7675, #fd9644);
}

/* Body */
.card-body {
  padding: 18px !important;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.location {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.card-body h4 {
  margin: 10px 0;
  color: #1d438b;
  font-size: 22px;
  font-weight: 700;
}

.size {
  font-size: 13px;
  color: #999;
}


/* Responsive */
@media (max-width: 768px) {

  .featured-section {
    padding: 40px 0;
  }

  .featured-section h2 {
    font-size: 22px;
  }

  .featured-section p {
    font-size: 12px;
  }

  .card-img img {
    height: 220px;
  }

  .card-body h3 {
    font-size: 16px;
  }

  .card-body h4 {
    font-size: 14px;
  }
}

/* ===================================================
   FEATURED SECTION OWL NAV
=================================================== */

.featured-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.featured-carousel .owl-nav button.owl-prev,
.featured-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #1d438b !important;
  color: #fff !important;
  font-size: 18px !important;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.featured-carousel .owl-nav button.owl-prev:hover,
.featured-carousel .owl-nav button.owl-next:hover {
  background: #ff7b00 !important;
}

.featured-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.featured-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #b5c7e7 !important;
  border-radius: 50%;
  transition: 0.3s;
}

.featured-carousel .owl-dot.active span {
  background: #1d438b !important;
  width: 28px;
  border-radius: 20px;
}


/* ===================================================
   VACANT LAND SECTION OWL NAV
=================================================== */

.vacant-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.vacant-carousel .owl-nav button.owl-prev,
.vacant-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #1d438b !important;
  color: #fff !important;
  font-size: 18px !important;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.vacant-carousel .owl-nav button.owl-prev:hover,
.vacant-carousel .owl-nav button.owl-next:hover {
  background: #ff7b00 !important;
}

.vacant-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.vacant-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #b5c7e7 !important;
  border-radius: 50%;
  transition: 0.3s;
}

.vacant-carousel .owl-dot.active span {
  background: #1d438b !important;
  width: 28px;
  border-radius: 20px;
}


/* ===================================================
   FLAT SECTION OWL NAV
=================================================== */

.flat-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.flat-carousel .owl-nav button.owl-prev,
.flat-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #1d438b !important;
  color: #fff !important;
  font-size: 18px !important;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.flat-carousel .owl-nav button.owl-prev:hover,
.flat-carousel .owl-nav button.owl-next:hover {
  background: #ff7b00 !important;
}

.flat-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.flat-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #b5c7e7 !important;
  border-radius: 50%;
  transition: 0.3s;
}

.flat-carousel .owl-dot.active span {
  background: #1d438b !important;
  width: 28px;
  border-radius: 20px;
}


/* ===================================================
   INDEPENDENT HOUSE SECTION OWL NAV
=================================================== */

.house-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.house-carousel .owl-nav button.owl-prev,
.house-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #1d438b !important;
  color: #fff !important;
  font-size: 18px !important;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.house-carousel .owl-nav button.owl-prev:hover,
.house-carousel .owl-nav button.owl-next:hover {
  background: #ff7b00 !important;
}

.house-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.house-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #b5c7e7 !important;
  border-radius: 50%;
  transition: 0.3s;
}

.house-carousel .owl-dot.active span {
  background: #1d438b !important;
  width: 28px;
  border-radius: 20px;
}


/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 768px) {

  .featured-carousel .owl-nav button.owl-prev,
  .featured-carousel .owl-nav button.owl-next,

  .vacant-carousel .owl-nav button.owl-prev,
  .vacant-carousel .owl-nav button.owl-next,

  .flat-carousel .owl-nav button.owl-prev,
  .flat-carousel .owl-nav button.owl-next,

  .house-carousel .owl-nav button.owl-prev,
  .house-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    font-size: 16px !important;
  }

}

/* features-section-css-end */


/* marquee-section-css-start */


.marquee-section {
  background: linear-gradient(135deg, #1d438b, #ff7b00);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;

  /* 🔥 KEY FIX */
  animation: scrollLoop 8s linear infinite;
}

/* Items */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

/* 🔥 REAL INFINITE LOOP */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-item {
    font-size: 13px;
    gap: 6px;
  }

  .marquee-track {
    gap: 25px;
    animation-duration: 4s;
    /* 🔥 Faster on mobile */
  }
}

/* marquee-section-css-end */


/* footer-section-css-start */


.footer-section {
  background: #0f172a;
  padding: 70px 0 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Footer Card */
.footer-card {
  /* background: rgba(255, 255, 255, 0.05); */
  padding: 25px 7px;
  /* border-radius: 18px; */
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-right: 1px solid #ffffff26;
}

.footer-card:last-child {
  border-right: none;
}

.footer-card:hover {
  transform: translateY(-8px);
  border-color: #ff7b00;
}

/* Logo */
.footer-logo {
  width: 100px;
  border: 1px solid #d04d0096;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0px 0px 15px #d04a014f;
}

/* Heading */
.footer-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-card h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ff7b00;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 20px;
}

/* Text */
.footer-card p {
  color: #fff;
  line-height: 1.8;
  font-size: 14px;
}

/* List */
.footer-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-card ul li {
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.footer-card ul li:hover {
  transform: translateX(5px);
  color: #ff7b00;
}

.footer-card ul li i {
  margin-right: 8px;
  color: #ff7b00;
}

/* Links */
.footer-card ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-card ul li a:hover {
  color: #ff7b00;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

.social-icons a:hover {
  background: #ff7b00;
  transform: rotate(360deg);
}

/* Newsletter */
.footer-form {
  margin-top: 20px;
}

.footer-form input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.4s;
}

.footer-form button:hover {
  transform: scale(1.03);
}

/* Bottom */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.footer-bottom p a {
  text-decoration: none;
  font-weight: 600;
  color: #ff7b00;
}

.user-login {
  padding: 13px 70px;
  background-color: #ff7b00;
  font-size: 14px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #ff7b00;
  transition: 0.3s;
  text-decoration: none;
}

.user-login:hover {
  background-color: transparent;
  border: 1px solid #ff7b00;
  transition: 0.3s;
}


@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-card {
    border-right: none;
    padding: 5px 10px;
  }

  .footer-card p {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-card ul li {
    margin-bottom: 10px;
    font-size: 13px;
  }



}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    text-align: center;
  }

  .footer-card h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }
}


/* footer-section-css-end */


/* about-us-banner-css-start */


.about-us-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 5%;
  background: linear-gradient(120deg,
      #1d438b,
      #0a4cc9,
      #ff7b00,
      #0a4cc9,
      #1d438b);
  background-size: 300% 300%;
  animation: smoothGradient 10s ease infinite;
}

/* Soft Light Effect */
.about-us-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(40px);
  transform: skewX(-20deg);
  animation: lightMove 6s linear infinite;
}

/* Gradient Animation */
@keyframes smoothGradient {
  0% {
    background-position: left center;
  }

  50% {
    background-position: right center;
  }

  100% {
    background-position: left center;
  }
}

/* Moving Light Effect */
@keyframes lightMove {
  0% {
    left: -100%;
  }

  100% {
    left: 120%;
  }
}



/* CONTENT */
.about-content {
  position: relative;
  z-index: 2;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.breadcrumb-box a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 600;
}

.breadcrumb-box a:hover {
  color: #ce4a00;
}

.breadcrumb-box span {
  color: #fff;
  font-size: 14px;
}

.breadcrumb-box .active {
  color: #e1720f;
  font-weight: 600;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-us-banner {
    padding: 60px 0;
    margin-top: 20%;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .breadcrumb-box {
    flex-wrap: wrap;
    gap: 5px;
  }
}


/* about-us-banner-css-end */

/* why-choose-us-css-start */


.why-choose-us {
  background: #eef4ff;
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
}

.why-choose-us .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 15px;
}

.why-choose-us .section-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 12px;
  color: #000;
  line-height: 1.8;
}

/* CARD */
.choose-card {
  background: #fff;
  border: 1px solid #d9e5ff;
  border-radius: 0 60px 0 60px;
  padding: 20px 40px;
  position: relative;
  transition: 0.4s ease;
  min-height: 230px;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.choose-icon {
  width: 60px;
  height: 60px;
  background: rgb(29 67 140);
  border-radius: 20px;
  display: flex;
  color: #fff;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.choose-icon i {
  font-size: 38px;
  color: #0a4cc9;
}

/* TEXT */
.choose-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 10px;
}

.choose-card p {
  color: #000;
  line-height: 1.4;
  font-size: 13px;
  margin: 0;
}


/* NUMBER CIRCLE */
.card-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: #3f7df3;
  border-radius: 100% 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
  overflow: hidden;
  color: #f8f9fc;
}


/* ARROWS */
.arrow-shape {
  position: absolute;
  font-size: 17px;
  color: #ff7b00;
  font-weight: bold;
}

.arrow-one {
  left: 33%;
  top: 55%;
}

.arrow-two {
  left: 64%;
  top: 55%;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .arrow-shape {
    display: none;
  }

  .choose-card {
    min-height: auto;
  }

  .why-choose-us .section-title {
    font-size: 20px;
  }

  .choose-card h4 {
    font-size: 19px;
  }

  .choose-card p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .choose-card {
    padding: 40px 25px;
  }

  .why-choose-us .section-title {
    font-size: 20px;
  }

  .choose-card h4 {
    font-size: 19px;
  }

  .choose-card p {
    font-size: 14px;
  }
}

/* why-choose-us-css-end */

/* mission-vision-css-start */

.mission-vision-section {
  background: #f8f9fc;
  padding: 60px 0px;
}

.mission-box,
.vision-box {
  background: #fff;
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  border-top: 5px solid #0a4cc9;
}

.vision-box {
  border-top: 5px solid #ff7b00;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-8px);
}

.mv-icon {
  width: 60px;
  height: 60px;
  font-size: 22px;
  color: #0a4cc9;
  border-radius: 20px;
  background: rgb(255 242 229);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.vision-box .mv-icon {
  background: rgba(255, 123, 0, 0.1);
}

.mv-icon i {
  font-size: 22px;
  color: #0a4cc9;
}

.vision-box .mv-icon i {
  color: #ff7b00;
}

.mission-box h2,
.vision-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d438b;
}

.mission-box h3,
.vision-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d438b;
}

.mission-box p,
.vision-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.mission-box hr,
.vision-box hr {
  margin: 30px 0;
  opacity: 0.2;
}

@media (max-width: 576px) {

  .mission-box,
  .vision-box {
    padding: 35px 25px;
  }

  .mission-box h2,
  .vision-box h2 {
    font-size: 28px;
  }

  .mission-box h3,
  .vision-box h3 {
    font-size: 24px;
  }
}

/* mission-vision-css-end */


/* contact-us-section-css-start */

.contact-section {
  background: #fff;
  padding: 60px 0px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 0px;
}

.contact-subtitle {
  max-width: 700px;
  margin: auto;
  color: #000;
  line-height: 1.8;
}

/* LEFT SIDE */
.contact-info {
  background: linear-gradient(135deg, #1d438b, #0a4cc9);
  padding: 35px 35px;
  border-radius: 25px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.contact-info p {
  line-height: 1.5;
  margin: 0px;
  color: #fff;
  font-size: 14px;
}

/* CONTACT BOX */
.contact-box-two {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
  transition: 0.3s;
}

.contact-box-two:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 24px;
  color: #fff;
}

.contact-box-two h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* FORM */
.contact-form-area {
  background: #0d6efd;
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.contact-form-area:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}

/* INPUT */
.custom-input {
  height: 58px;
  border-radius: 14px;
  border: 1px solid #dbe4ff;
  padding: 15px 20px;
  font-size: 16px;
  box-shadow: none !important;
}

.custom-textarea {
  height: auto;
  resize: none;
  padding-top: 18px;
}

/* BUTTON */
.contact-btn-two {
  background: linear-gradient(135deg, #ce4a00, #f9761f);
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.contact-btn-two:hover {
  background: linear-gradient(135deg, #ff7b00, #ff9f43);
  transform: translateY(-3px);
  color: #fff !important;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-title {
    font-size: 32px;
  }

  .contact-info,
  .contact-form-area {
    padding: 35px 25px;
  }

  .contact-info h3 {
    font-size: 28px;
  }
}

/* contact-us-section-css-end */

/* enruiry-section-css-start */


.enquired-section {
  background: #eef3fb;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */

.enquired-badge {
  display: inline-block;
  background: #0a4cc9;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.enquired-title {
  font-size: 28px;
  font-weight: 700;
  color: rgb(29, 67, 139);
  line-height: 1.2;
  margin-bottom: 10px;
}

.enquired-text {
  color: #000;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 14px;
}

.enquiry-left-box {
  background-color: #fff;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* CONTACT BOX */

.enquired-contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgb(143 174 231 / 20%);
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  transition: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
}

.enquired-contact-box:hover {
  transform: translateY(-5px);
}

.enquired-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.enquired-contact-box h5 {
  font-size: 24px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 5px;
}

.enquired-contact-box p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

/* FORM */
/* FORM WRAPPER */

.enquired-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

/* INPUT BOX */

.input-box {
  position: relative;
  width: 100%;
}

/* ICON */
/* INPUT BOX FLEX STRUCTURE */

.input-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f5f7fc;
  border-radius: 15px;
  padding: 16px 20px;
  transition: 0.4s;
  border: 1px solid transparent;
}

/* ICON AREA */

.input-box i {
  color: #0a4cc9;
  font-size: 18px;
  min-width: 20px;
  margin-top: 3px;
}

/* INPUT AREA */

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #333;
}

/* TEXTAREA */

.input-box textarea {
  resize: none;
  min-height: 140px;
}

/* FOCUS EFFECT */

.input-box:focus-within {
  background: #fff;
  border-color: #0a4cc9;
  box-shadow: 0 0 15px rgba(10, 76, 201, 0.12);
}

/* SELECT */

.input-box select {
  cursor: pointer;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9500);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: 0.4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:767px) {

  .input-box {
    padding: 14px 16px;
  }

  .submit-btn {
    height: 55px;
    font-size: 15px;
  }

}

/* BUTTON */

/* .submit-btn{
    width: 100%;
    border: none;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg,#ff7b00,#ff9500);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: 0.4s;
}

.submit-btn:hover{
    transform: translateY(-3px);
}


@media(max-width:767px){

    .enquired-form-wrapper{
        padding: 25px;
        border-radius: 20px;
    }

} */
/* RESPONSIVE */

@media(max-width:991px) {

  .enquired-title {
    font-size: 38px;
  }

  .enquired-form-wrapper {
    padding: 35px;
  }

}

@media(max-width:767px) {

  .enquired-title {
    font-size: 24px;
  }

  .enquired-form-wrapper {
    padding: 25px;
    border-radius: 20px;
  }

  .enquired-contact-box {
    padding: 20px;
  }

  .enquired-contact-box h5 {
    font-size: 20px;
  }

}



/* enruiry-section-css-end */


/* services-section-css-start */

.services-section {
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
}

/* SECTION TITLE */
.service-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(10, 76, 201, 0.08);
  color: #0a4cc9;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d438b;
  margin-bottom: 0px;
}

.service-subtitle {
  max-width: 750px;
  margin: auto;
  color: #000;
  line-height: 1.5;
  font-size: 14px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 35px 35px 30px 35px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  border: 1px solid #e8eeff;
  height: 100%;
  z-index: 1;
}

/* HOVER BG EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
  opacity: 0;
  transition: 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.service-icon {
  width: 70px;
  height: 70px;
  font-size: 24px;
  color: #0a4cc9;
  border-radius: 15px;
  background: rgba(10, 76, 201, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: 0.5s;
}

.service-card:hover .service-icon {
  color: #fff;
  transition: 0.3s;
}

.service-icon i {
  font-size: 38px;
  color: #0a4cc9;
  transition: 0.5s ease;
}

/* TITLE */
.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 10px;
  transition: 0.5s ease;
}

/* TEXT */
.service-card p {
  color: #000;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 15px;
  transition: 0.5s;
}

/* BUTTON */
.service-btn {
  text-decoration: none;
  color: #0a4cc9;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s ease;
}

/* HOVER TEXT */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-btn,
.service-card:hover .service-icon i {
  color: #fff;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .service-title {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .service-btn {
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .service-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .service-subtitle {
    font-size: 12px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* services-section-css-end */


/* properties-section-css-start */

.property-section {
  background: #eef4ff;
  overflow: hidden;
  padding: 60px 0px;
}

/* SECTION TITLE */
.property-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(10, 76, 201, 0.08);
  color: #0a4cc9;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 5px;
}

.property-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d438b;
  margin-bottom: 3px;
}

.property-subtitle {
  max-width: 720px;
  margin: auto;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
}

/* CARD */
.property-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: block;
  transition: 0.5s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgb(10 76 201 / 17%);
  position: relative;
  border: 1px solid #1d438b;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.property-img {
  overflow: hidden;
  height: 240px;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.property-card:hover .property-img img {
  transform: scale(1.1);
}

/* CONTENT */
.property-content {
  padding: 25px 25px;
}

.property-icon {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: rgba(10, 76, 201, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.3s;
  color: #0a4cc9;
  font-size: 24px;
}

.property-card:hover .property-icon {
  color: #fff;
  transition: 0.3s;
}


.property-icon i {
  font-size: 24px;
  color: #0a4cc9;
  transition: 0.5s ease;
}

.property-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 3px;
}

.property-content p {
  color: #000;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 10px;
}

/* BUTTON */
.property-btn {
  color: #0a4cc9;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s ease;
  text-decoration: none;
}

/* HOVER EFFECT */
.property-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 0;
}

.property-card:hover::before {
  opacity: 1;
}

.property-card * {
  position: relative;
  z-index: 2;
}

.property-card:hover h3,
.property-card:hover p,
.property-card:hover .property-btn,
.property-card:hover .property-icon i {
  color: #fff;
}

.property-card:hover .property-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .property-title {
    font-size: 38px;
  }
}

@media (max-width: 576px) {

  .property-title {
    font-size: 30px;
  }

  .property-content {
    padding: 25px 20px;
  }

  .property-content h3 {
    font-size: 24px;
  }
}

/* properties-section-css-end */

/* commercial-setion-css-start */

.commercial-property-section {
  background: #fff;
  padding: 80px 0px;
}

/* .vacant-land-section {
  background: #fff;
  padding: 80px 0px;
} */

/* SECTION TITLE */
.commercial-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgb(10 76 201 / 15%);
  color: #0a4cc9;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.commercial-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d438b;
  margin-bottom: 8px;
}

.commercial-subtitle {
  max-width: 720px;
  margin: auto;
  color: #000;
  line-height: 1.5;
  font-size: 14px;
}

/* CARD */
.commercial-card {
  background: rgb(255, 255, 255);
  border-radius: 25px;
  overflow: hidden;
  transition: 0.5s;
  height: 100%;
  box-shadow: rgb(13 110 253 / 14%) 0px 10px 30px;
  position: relative;
  border: 1px solid rgb(13 110 253 / 20%);
}

.commercial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.commercial-img {
  height: 230px;
  overflow: hidden;
}

.commercial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.commercial-card:hover .commercial-img img {
  transform: scale(1.1);
}

/* CONTENT */
.commercial-content {
  padding: 25px;
}

.commercial-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 5px;
}

.commercial-content p {
  color: #000;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 14px;
}

/* INFO */
.commercial-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #2761cf;
  padding: 2px 5px;
  border-radius: 6px;
  background-color: #0a4cc9;
  transition: 0.3s;
}

.commercial-card:hover .commercial-info {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background-color: #ff7b00;
  transition: 0.3s;
}

.commercial-info span {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.commercial-info i {
  color: #ff7b00;
}

/* BUTTON */
.commercial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0a4cc9;
  font-weight: 600;
  transition: 0.4s ease;
}

.commercial-btn:hover {
  color: #ff7b00;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .commercial-title {
    font-size: 38px;
  }
}

@media (max-width: 576px) {

  .commercial-title {
    font-size: 30px;
  }

  .commercial-content {
    padding: 22px;
  }

  .commercial-content h3 {
    font-size: 22px;
  }
}

/* commercial-setion-css-end*/

/* commercial-inner-details-css-start */

.commercial-details-section {
  background: #e8eeff;
  padding: 60px 0px;
  overflow: hidden;
}

/* HEADER */

.property-header {
  text-align: center;
}

.property-badge {
  display: inline-block;
  background: #0a4cc9;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-property-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d438b;
  margin-bottom: 5px;
}

.property-location {
  color: #000;
  font-size: 16px;
}

/* MAIN IMAGE */

.main-property-image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-property-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: 0.5s;
}

.main-property-image:hover img {
  transform: scale(1.05);
}

.price-tag {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #ff7b00;
  color: #fff;
  padding: 15px 30px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
}

/* DETAILS CARD */

.details-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.details-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 10px;
}

.details-card p {
  color: #000;
  line-height: 1.9;
  margin-bottom: 5px;
  font-size: 14px;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-box {
  background: #f4f7ff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
  color: #0a4cc9;
}

.feature-box:hover {
  background: #0a4cc9;
  transform: translateY(-8px);
  color: #fff;
}

.feature-box i {
  font-size: 30px;
  color: #ff7b00;
  margin-bottom: 12px;
}

.feature-box span {
  display: block;
  font-weight: 600;
  color: #1d438b;
}

.feature-box:hover span {
  color: #fff;
}



/* PRICE CARD */

.price-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  top: 100px;
}

.price-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(29, 67, 139);
  margin-bottom: 20px;
}

.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  color: #000;
  font-size: 14px;
}

.price-card ul li strong {
  color: #0a4cc9;
}

.contact-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
  background: #ff7b00;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}

.contact-btn:hover {
  background: #0a4cc9;
  color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .main-property-title {
    font-size: 36px;
  }

  .main-property-image img {
    height: 400px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media(max-width:767px) {

  .main-property-title {
    font-size: 18px;
  }

  .property-location {
    font-size: 14px;
  }

  .details-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .details-card p {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .main-property-image img {
    height: 300px;
  }

  .price-tag {
    font-size: 18px;
    padding: 10px 20px;
  }

  .details-card {
    padding: 25px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}


.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 0 !important;
}






/* =========================
GALLERY + VIDEO
========================= */

.gallery-wrapper {
  height: 100%;
}

.big-gallery-img {
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
}

.big-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.big-gallery-img:hover img {
  transform: scale(1.08);
}

/* SMALL IMAGES */

.gallery-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s;
  cursor: pointer;
}

.gallery-img:hover {
  transform: translateY(-5px);
}

/* VIDEO */

.video-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  height: 90%;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .big-gallery-img {
    height: 280px;
  }

  .video-box iframe {
    min-height: 320px;
  }

  .video-box {
    height: 80%;
  }

}

@media(max-width:767px) {

  .big-gallery-img {
    height: 220px;
  }

  .gallery-img {
    height: 80px;
  }

  .video-box iframe {
    min-height: 220px;
  }

}



/* commercial-inner-details-css-end */


/* admin-login-css-start */

.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  position: relative;
  overflow: hidden;
}

.admin-login-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  animation: floatGlow 8s linear infinite;
}

.admin-login-page::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  animation: floatGlow2 10s linear infinite;
}

/* LOGIN BOX */

.admin-login-box {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 40px 40px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* ICON */

.admin-login-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 30px;
  color: #fff;
}

.admin-login-icon i {
  color: #fff;
  font-size: 36px;
}

/* TITLE */

.admin-login-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d438b;
  text-align: center;
  margin-bottom: 15px;
}

/* INPUT */

.admin-input-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0d6efd24;
  border-radius: 15px;
  padding: 0 20px;
  margin-bottom: 15px;
  transition: 0.4s;
  border: 1px solid transparent;
  height: 60px;
}

.admin-input-box i {
  color: #0a4cc9;
  font-size: 18px;
  min-width: 20px;
}

.admin-input-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #222;
}

.admin-input-box:focus-within {
  background: #fff;
  border-color: rgba(10, 76, 201, 0.2);
  box-shadow: 0 0 0 2px rgba(10, 76, 201, 0.10);
}

/* OPTIONS */

.admin-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-options a {
  text-decoration: none;
  color: #0a4cc9;
  font-weight: 600;
  transition: 0.3s;
}

.admin-options a:hover {
  color: #ff7b00;
}

/* BUTTON */

.admin-login-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
}

.admin-login-btn i {
  margin-left: 10px;
}

.admin-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.35);
}

/* ANIMATION */

@keyframes floatGlow {

  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, 40px);
  }

  100% {
    transform: translate(0, 0);
  }

}

@keyframes floatGlow2 {

  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, -40px);
  }

  100% {
    transform: translate(0, 0);
  }

}

/* RESPONSIVE */

@media(max-width:768px) {

  .admin-login-box {
    padding: 40px 25px;
  }

  .admin-login-title {
    font-size: 30px;
  }

  .admin-options {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media(max-width:576px) {

  .admin-login-title {
    font-size: 26px;
  }

  .admin-login-subtitle {
    font-size: 14px;
  }

  .admin-input-box input {
    height: 55px;
    font-size: 14px;
  }

  .admin-login-btn {
    height: 55px;
    font-size: 15px;
  }

}

.admin-login-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* vendor-purpose-add */

/* SUBTITLE */

.admin-login-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* REGISTER TEXT */

.admin-register-text {
  margin-top: 25px;
  text-align: center;
}

.admin-register-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.admin-register-text a {
  text-decoration: none;
  color: #0a4cc9;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.admin-register-text a:hover {
  color: #ff7b00;
}

/* RESPONSIVE */

@media(max-width:576px) {

  .admin-login-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .admin-register-text p {
    font-size: 14px;
  }

  .admin-register-text a {
    font-size: 15px;
  }

}


/* admin-dashboard-bootam-section-css-start */

/* BOTTOM AREA */

.dashboard-bottom-area {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

/* CARD */

.dashboard-bottom-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* HEAD */

.dashboard-bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececec;
}

.dashboard-bottom-head h3 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-bottom-head h3 i {
  color: #0d6efd;
}

.dashboard-bottom-head a {
  text-decoration: none;
  color: #0d6efd;
  font-size: 15px;
  font-weight: 600;
}

/* PROPERTY ITEM */

.dashboard-property-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-property-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 18px;
  background: #f8faff;
  transition: 0.3s ease;
}

.dashboard-property-item:hover {
  transform: translateY(-3px);
}

.dashboard-property-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.dashboard-property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-property-info {
  flex: 1;
}

.dashboard-property-info h4 {
  font-size: 17px;
  color: #000;
  margin-bottom: 6px;
}

.dashboard-property-info p {
  font-size: 14px;
  color: #000;
}

/* STATUS */

.property-status {
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.active-status {
  background: rgba(25, 135, 84, 0.10);
  color: #198754;
}

.pending-status {
  background: rgba(255, 193, 7, 0.15);
  color: #d39e00;
}

/* ENQUIRY */

.dashboard-enquiry-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-enquiry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px;
  border-radius: 18px;
  background: #f8faff;
  transition: 0.3s ease;
}

.dashboard-enquiry-item:hover {
  transform: translateY(-3px);
}

.dashboard-enquiry-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-enquiry-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.dashboard-enquiry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-enquiry-info h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.dashboard-enquiry-info p {
  font-size: 14px;
  color: #000;
}

.enquiry-time {
  font-size: 13px;
  color: #0d6efd;
  font-weight: 600;
  white-space: nowrap;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .dashboard-bottom-area {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .dashboard-bottom-card {
    padding: 20px;
  }

  .dashboard-bottom-head h3 {
    font-size: 18px;
  }

}

@media(max-width:576px) {

  .dashboard-property-item,
  .dashboard-enquiry-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-status,
  .enquiry-time {
    margin-top: 10px;
  }

  .dashboard-bottom-head {
    flex-direction: column;
    align-items: flex-start;
  }

}




/* admin-login-css-end */


/* user-dashboard-css-start */


.welcome-dashboard {
  width: 100%;
  background: linear-gradient(135deg, #1d438b, #0a4cc9);
  border-radius: 30px;
  padding: 45px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.welcome-dashboard::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.welcome-dashboard::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
}

.welcome-left {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.welcome-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}

.welcome-left h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.welcome-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.dashboard-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.4s;
  font-size: 14px;
}

.dashboard-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 123, 0, 0.35);
}

.welcome-right {
  position: relative;
  z-index: 2;
}

.dashboard-user-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dashboard-user-icon i {
  font-size: 75px;
  color: #fff;
}

/* ACTIVE MENU */

.active-menu {
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff !important;
  border-radius: 12px;
}

.active-menu i {
  color: #fff !important;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .welcome-dashboard {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .welcome-left h1 {
    font-size: 34px;
  }

}

@media(max-width:576px) {

  .welcome-left h1 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .welcome-left p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .dashboard-user-icon {
    width: 140px;
    height: 140px;
  }

  .dashboard-user-icon i {
    font-size: 55px;
  }

}

/* user-dashboard-css-end */

/* user-booking-history-css-start */

.user-booking-history-box {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* HEADING */

.user-booking-history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.user-booking-history-heading span {
  color: #0a4cc9;
  font-size: 15px;
  font-weight: 600;
}

.user-booking-history-heading h2 {
  font-size: 34px;
  color: #1d438b;
  margin-top: 8px;
  font-weight: 700;
}

.user-booking-history-btn {
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.4s;
}

.user-booking-history-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
}

/* TABLE */

.user-booking-table {
  width: 100%;
  overflow-x: auto;
}

.user-booking-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.user-booking-table thead {
  background: linear-gradient(135deg, #1d438b, #0a4cc9);
}

.user-booking-table thead th {
  padding: 18px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.user-booking-table tbody tr {
  border-bottom: 1px solid #edf1ff;
  transition: 0.3s;
}

.user-booking-table tbody tr:hover {
  background: #f8faff;
}

.user-booking-table tbody td {
  padding: 20px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* STATUS */

.user-booking-status {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.completed-status {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.pending-status {
  background: rgba(255, 193, 7, 0.15);
  color: #c58a00;
}

.cancelled-status {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .user-booking-history-box {
    padding: 25px;
  }

  .user-booking-history-heading h2 {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .user-booking-history-box {
    padding: 20px;
    border-radius: 22px;
  }

  .user-booking-history-heading h2 {
    font-size: 24px;
  }

  .user-booking-history-btn {
    width: 100%;
    text-align: center;
  }

}

/* user-booking-history-css-end */

/* user-profile-css-start */

.user-profile-box {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* HEADING */

.user-profile-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.user-profile-heading span {
  color: #0a4cc9;
  font-size: 15px;
  font-weight: 600;
}

.user-profile-heading h2 {
  font-size: 34px;
  color: #1d438b;
  margin-top: 8px;
  font-weight: 700;
}

/* BUTTONS */

.user-profile-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.user-edit-btn {
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.user-delete-btn {
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4d4d, #d90429);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.user-edit-btn:hover,
.user-delete-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.user-edit-btn i,
.user-delete-btn i {
  margin-right: 8px;
}

/* CONTENT */

.user-profile-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* IMAGE */

.user-profile-image {
  width: 280px;
  min-width: 280px;
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
}

.user-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DETAILS */

.user-profile-details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.user-profile-item {
  background: #f8faff;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #edf1ff;
  transition: 0.4s;
}

.user-profile-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.user-profile-item span {
  display: inline-block;
  color: #0a4cc9;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.user-profile-item h4 {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .user-profile-content {
    flex-direction: column;
  }

  .user-profile-image {
    width: 100%;
    min-width: 100%;
    height: 350px;
  }

  .user-profile-details {
    grid-template-columns: repeat(1, 1fr);
  }

}

@media(max-width:768px) {

  .user-profile-box {
    padding: 25px;
  }

  .user-profile-heading h2 {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .user-profile-box {
    padding: 20px;
    border-radius: 22px;
  }

  .user-profile-heading {
    margin-bottom: 25px;
  }

  .user-profile-heading h2 {
    font-size: 24px;
  }

  .user-profile-btns {
    width: 100%;
  }

  .user-edit-btn,
  .user-delete-btn {
    width: 100%;
    text-align: center;
  }

  .user-profile-image {
    height: 260px;
    border-radius: 20px;
  }

  .user-profile-item {
    padding: 18px;
    border-radius: 18px;
  }

  .user-profile-item h4 {
    font-size: 16px;
  }

}

/* user-profile-css-end */

/* use-edit-profile-box-css-start */

.user-edit-profile-box {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* HEADING */

.user-edit-profile-heading {
  margin-bottom: 35px;
}

.user-edit-profile-heading span {
  color: #0a4cc9;
  font-size: 15px;
  font-weight: 600;
}

.user-edit-profile-heading h2 {
  font-size: 34px;
  color: #1d438b;
  margin-top: 8px;
  font-weight: 700;
}

/* GRID */

.user-edit-profile-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* IMAGE AREA */

.user-edit-profile-image-area {
  width: 280px;
  min-width: 280px;
}

.user-edit-profile-image {
  width: 100%;
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.user-edit-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-edit-profile-upload {
  width: 100%;
  height: 55px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.4s;
}

.user-edit-profile-upload:hover {
  transform: translateY(-3px);
}

/* INPUT AREA */

.user-edit-profile-inputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.user-edit-profile-group {
  width: 100%;
}

.user-edit-profile-group label {
  display: block;
  margin-bottom: 12px;
  color: #1d438b;
  font-size: 15px;
  font-weight: 600;
}

.user-edit-profile-group input,
.user-edit-profile-group textarea {
  width: 100%;
  border: 1px solid #dfe7ff;
  background: #f8faff;
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
  font-size: 15px;
  color: #222;
  transition: 0.4s;
}

.user-edit-profile-group textarea {
  height: 160px;
  resize: none;
}

.user-edit-profile-group input:focus,
.user-edit-profile-group textarea:focus {
  border-color: #0a4cc9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 76, 201, 0.10);
}

.user-edit-profile-full {
  grid-column: span 2;
}

/* BUTTONS */

.user-edit-profile-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.user-edit-profile-save-btn,
.user-edit-profile-cancel-btn {
  border: none;
  padding: 15px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.user-edit-profile-save-btn {
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
}

.user-edit-profile-cancel-btn {
  background: #eef2ff;
  color: #1d438b;
}

.user-edit-profile-save-btn:hover,
.user-edit-profile-cancel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.user-edit-profile-save-btn i,
.user-edit-profile-cancel-btn i {
  margin-right: 8px;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .user-edit-profile-grid {
    flex-direction: column;
  }

  .user-edit-profile-image-area {
    width: 100%;
    min-width: 100%;
  }

  .user-edit-profile-image {
    height: 350px;
  }

  .user-edit-profile-inputs {
    grid-template-columns: repeat(1, 1fr);
  }

  .user-edit-profile-full {
    grid-column: span 1;
  }

}

@media(max-width:768px) {

  .user-edit-profile-box {
    padding: 25px;
  }

  .user-edit-profile-heading h2 {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .user-edit-profile-box {
    padding: 20px;
    border-radius: 22px;
  }

  .user-edit-profile-heading {
    margin-bottom: 25px;
  }

  .user-edit-profile-heading h2 {
    font-size: 24px;
  }

  .user-edit-profile-image {
    height: 260px;
    border-radius: 20px;
  }

  .user-edit-profile-btns {
    flex-direction: column;
  }

  .user-edit-profile-save-btn,
  .user-edit-profile-cancel-btn {
    width: 100%;
  }

}

.user-edit-profile-group select {
  width: 100%;
  height: 55px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}

.user-edit-profile-group select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}

/* use-edit-profile-box-css-end */


/* Vendor-Registration-css-start */

.seller-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  position: relative;
  overflow: hidden;
}

.seller-login-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  animation: floatGlow 8s linear infinite;
}

.seller-login-page::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  animation: floatGlow2 10s linear infinite;
}

/* REGISTRATION BOX */

.seller-login-box {
  width: 100%;
  max-width: 550px;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* ICON */

.seller-login-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 26px;
}

.seller-login-icon i {
  color: #fff;
  font-size: 32px;
}

/* TITLE */

.seller-login-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1d438b;
  margin-bottom: 10px;
}

/* INPUT */

.seller-input-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0d6efd18;
  border-radius: 15px;
  padding: 0 20px;
  margin-bottom: 18px;
  transition: 0.4s;
  border: 1px solid transparent;
  height: 60px;
}

.seller-input-box i {
  color: #0a4cc9;
  font-size: 18px;
  min-width: 20px;
}

.seller-input-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #222;
}

.seller-input-box:focus-within {
  background: #fff;
  border-color: rgba(10, 76, 201, 0.2);
  box-shadow: 0 0 0 2px rgba(10, 76, 201, 0.10);
}

/* BUTTON */

.seller-login-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
}

.seller-login-btn i {
  margin-left: 10px;
}

.seller-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.35);
}

/* ANIMATION */

@keyframes floatGlow {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes floatGlow2 {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:768px) {

  .seller-login-box {
    padding: 35px 25px;
  }

  .seller-login-title {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .seller-login-title {
    font-size: 24px;
  }

  .seller-input-box {
    height: 55px;
  }

  .seller-login-btn {
    height: 55px;
    font-size: 15px;
  }

}

.seller-login-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.seller-login-btn i {
  margin-left: 10px;
}

.seller-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.35);
}

/* Vendor-Registration-css-end */

/* vendor-profile-css-start */

.vendor-profile-section {
  padding: 0px 0px;
}

.vendor-profile-card {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* TOP AREA */

.vendor-profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

/* IMAGE */

.vendor-profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f3f6ff;
  flex-shrink: 0;
}

.vendor-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */

.vendor-profile-info {
  flex: 1;
}

.vendor-profile-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(10, 76, 201, 0.10);
  color: #0a4cc9;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vendor-profile-info h2 {
  font-size: 34px;
  color: #1d438b;
  margin-bottom: 10px;
  font-weight: 700;
}

.vendor-profile-info p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* ACTION BUTTONS */

.vendor-profile-action {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.vendor-edit-btn,
.vendor-delete-btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.vendor-edit-btn {
  background: linear-gradient(135deg, #0a4cc9, #1d438b);
  color: #fff;
}

.vendor-delete-btn {
  background: rgba(255, 0, 0, 0.08);
  color: #e60023;
}

.vendor-edit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 76, 201, 0.25);
}

.vendor-delete-btn:hover {
  background: #e60023;
  color: #fff;
}

/* DETAILS */

.vendor-profile-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.vendor-detail-item {
  background: #f8faff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #eef2ff;
  transition: 0.3s;
}

.vendor-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vendor-detail-item span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.vendor-detail-item h4 {
  font-size: 18px;
  color: #1d438b;
  font-weight: 700;
  line-height: 1.5;
}

/* ABOUT */

.vendor-about-box {
  margin-top: 35px;
  background: linear-gradient(135deg, #f8faff, #eef3ff);
  padding: 30px;
  border-radius: 25px;
}

.vendor-about-box h3 {
  font-size: 26px;
  color: #1d438b;
  margin-bottom: 15px;
  font-weight: 700;
}

.vendor-about-box p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .vendor-profile-details {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .vendor-profile-card {
    padding: 25px;
  }

  .vendor-profile-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vendor-profile-info h2 {
    font-size: 28px;
  }

  .vendor-profile-action {
    width: 100%;
  }

  .vendor-edit-btn,
  .vendor-delete-btn {
    width: 100%;
    justify-content: center;
  }

}

@media(max-width:576px) {

  .vendor-profile-details {
    grid-template-columns: 1fr;
  }

  .vendor-profile-card {
    padding: 20px;
    border-radius: 20px;
  }

  .vendor-profile-image {
    width: 100px;
    height: 100px;
  }

  .vendor-profile-info h2 {
    font-size: 24px;
  }

  .vendor-about-box {
    padding: 22px;
  }

  .vendor-about-box h3 {
    font-size: 22px;
  }

  .vendor-about-box p {
    font-size: 15px;
  }

}

/* vendor-profile-css-end */

/* vendor-profile-edit-section-start */

.vendor-profile-edit-section {
  width: 100%;
}

.vendor-profile-edit-card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* TOP AREA */

.vendor-profile-edit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

.vendor-profile-edit-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f3f6ff;
  flex-shrink: 0;
}

.vendor-profile-edit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-profile-edit-info {
  flex: 1;
}

.vendor-profile-edit-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(13, 110, 253, 0.10);
  color: #0d6efd;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 12px;
}

.vendor-profile-edit-info h2 {
  font-size: 34px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.vendor-profile-edit-info p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

/* FORM */

.vendor-profile-edit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.vendor-profile-edit-item {
  width: 100%;
}

.vendor-profile-edit-item label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.vendor-profile-edit-item input,
.vendor-profile-edit-item select,
.vendor-profile-edit-item textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  color: #222;
  outline: none;
  transition: 0.3s ease;
  background: #fff;
}

.vendor-profile-edit-item input:focus,
.vendor-profile-edit-item select:focus,
.vendor-profile-edit-item textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}

.vendor-profile-edit-item textarea {
  min-height: 180px;
  resize: vertical;
}

.vendor-profile-edit-full {
  grid-column: 1 / -1;
}

/* BUTTONS */

.vendor-profile-edit-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.vendor-profile-edit-save-btn {
  border: none;
  background: linear-gradient(135deg, #0d6efd, #0047c7);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.vendor-profile-edit-save-btn:hover {
  transform: translateY(-3px);
}

.vendor-profile-edit-delete-btn {
  text-decoration: none;
  background: rgba(220, 53, 69, 0.10);
  color: #dc3545;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.vendor-profile-edit-delete-btn:hover {
  background: #dc3545;
  color: #fff;
}


/* IMAGE AREA */

.vendor-profile-edit-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  border: 5px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
  overflow: visible;
}

/* .vendor-profile-edit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.vendor-profile-edit-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* IMAGE CHANGE BUTTON */
.vendor-profile-edit-upload {
  position: absolute;
  right: -5px;
  bottom: 8px;
  z-index: 999;
}



.vendor-profile-edit-upload input {
  display: none;
}

.vendor-profile-edit-upload label {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0d6efd, #0047c7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
  border: 2px solid #fff;
}

.vendor-profile-edit-upload label:hover {
  transform: scale(1.08);
}

/* RESPONSIVE */

@media(max-width:991px) {

  .vendor-profile-edit-details {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .vendor-profile-edit-section {
    padding: 20px;
  }

  .vendor-profile-edit-card {
    padding: 25px;
  }

  .vendor-profile-edit-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vendor-profile-edit-info h2 {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .vendor-profile-edit-card {
    padding: 20px;
    border-radius: 18px;
  }

  .vendor-profile-edit-image {
    width: 110px;
    height: 110px;
  }

  .vendor-profile-edit-info h2 {
    font-size: 24px;
  }

  .vendor-profile-edit-info p {
    font-size: 14px;
  }

  .vendor-profile-edit-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .vendor-profile-edit-save-btn,
  .vendor-profile-edit-delete-btn {
    justify-content: center;
    width: 100%;
  }

}

/* vendor-profile-edit-section-end */


/* admin-dashboard-css-start */


.admin-container {
  display: flex;
}

/* TOPBAR */

.topbar-admin {
  display: none;
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
  color: #fff;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar-admin h2 {
  font-size: 20px;
  margin: 0;
}

/* MENU BUTTON */

.menu-btn {
  font-size: 22px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* MOBILE LOGO */

.admin-logo-mb {
  width: 55px;
}

.admin-logo-mb img {
  width: 100%;
  border-radius: 6px;
}

/* SIDEBAR */

.sidebar {
  width: 260px;
  height: 100vh;
  padding: 20px;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  z-index: 999;

  background: linear-gradient(135deg,
      #1d438b,
      #0a4cc9,
      #ff7b00);

  transition: 0.4s ease;
}

/* GLOW EFFECT */
.sidebar::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -150px;
}

.sidebar::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: 0px;
  right: 0px;
}

/* CONTENT ABOVE EFFECT */

.sidebar * {
  position: relative;
  z-index: 2;
}

/* LOGO */

.admin-logo {
  width: 90px;
  margin-bottom: 20px;
}

.admin-logo img {
  width: 100%;
  border-radius: 8px;
  background: #fff;
}

/* HEADING */

.sidebar h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}

/* MENU */

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-bottom: 10px;
}

.menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

/* ICON */

.menu i {
  width: 20px;
  text-align: center;
}

/* CLOSE BUTTON */

.close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

/* MAIN CONTENT */

.main-content {
  margin-left: 260px;
  width: 100%;
  padding: 30px;
  background: #f4f4f4;
  min-height: 100vh;
}

/* PAGE TITLE */

.page-title {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0d4bc2;
  font-weight: 600;
}

/* GRID */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */

.admin-card {
  padding: 20px;
  border-radius: 14px;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-card:hover {
  transform: translateY(-5px);
}

.admin-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.admin-card p {
  font-size: 30px;
  font-weight: bold;
}

/* COLORS */

.one-clr {
  background: #0d6efd;
}

.two-clr {
  background: #ed1003;
}

.three-clr {
  background: #d27225;
}

.four-clr {
  background: #0f969d;
  ;
}

/* OVERLAY */

/* .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
} */

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .topbar-admin {
    display: flex;
  }

  .sidebar {
    left: -270px;
  }

  .sidebar.active {
    left: 0;
    z-index: 9999;
  }

  .close-btn {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {

  .page-title {
    font-size: 26px;
  }

  .topbar-admin h2 {
    font-size: 16px;
  }

}

/* admin-dashboard-css-end */

/* property-post-css-start */


/* PAGE TITLE */

.page-title {
  font-size: 34px;
  margin-bottom: 25px;
  color: #111;
}

/* PROPERTY BOX */

.property-post-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* FORM GRID */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FORM GROUP */

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

/* INPUT */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0a4cc9;
  box-shadow: 0 0 10px rgba(10, 76, 201, 0.15);
}

/* TEXTAREA */

.form-group textarea {
  resize: none;
}

/* FULL WIDTH */

.full-width {
  grid-column: span 2;
}

/* BUTTON */

.property-btn {
  margin-top: 25px;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;

  background: linear-gradient(135deg,
      #1d438b,
      #0a4cc9,
      #ff7b00);
}

.property-btn i {
  margin-left: 8px;
}

.property-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .property-post-box {
    padding: 20px;
  }

  .page-title {
    font-size: 26px;
  }

}

/* property-post-css-end */

/* property-listing-css-start */

.property-list-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.property-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.property-table thead {
  background: linear-gradient(135deg, #1d438b, #0a4cc9, #ff7b00);
}

.property-table thead th {
  color: #fff;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.property-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.property-table tbody tr:hover {
  background: #f8f9ff;
}

.property-table tbody td {
  padding: 15px;
  font-size: 15px;
  color: #333;
  vertical-align: middle;
}

.property-table tbody td img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
}

/* STATUS */

.status {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.active-status {
  background: #d1fae5;
  color: #047857;
}

.pending-status {
  background: #fef3c7;
  color: #b45309;
}

/* ACTION BUTTONS */

.action-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edit-btn,
.delete-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.edit-btn {
  background: #0a4cc9;
}

.delete-btn {
  background: #dc3545;
}

.edit-btn:hover,
.delete-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .property-list-box {
    padding: 15px;
  }

  .page-title {
    font-size: 28px;
  }

}

/* property-listing-css-end */

/* property-listing-edit-css-start */

.property-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.property-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* INPUT BOX */

.property-input-box {
  display: flex;
  flex-direction: column;
}

.property-input-box label {
  font-size: 15px;
  font-weight: 600;
  color: #1d438b;
  margin-bottom: 10px;
}

/* INPUT */

.property-input-box input,
.property-input-box select,
.property-input-box textarea {
  width: 100%;
  border: 1px solid #dbe4ff;
  background: #f5f8ff;
  border-radius: 15px;
  padding: 15px 18px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.property-input-box input:focus,
.property-input-box select:focus,
.property-input-box textarea:focus {
  border-color: #0a4cc9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 76, 201, 0.10);
}

/* TEXTAREA */

.full-width {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.property-input-box textarea {
  resize: none;
}

/* BUTTON */

.property-submit-btn {
  margin-top: 25px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg,
      #1d438b,
      #0a4cc9,
      #ff7b00);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;

  display: flex;
  align-items: center;
  justify-content: center;
}

.property-submit-btn i {
  margin-left: 10px;
}

.property-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 76, 201, 0.25);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .property-form-grid {
    grid-template-columns: 1fr;
  }

  .property-form-box {
    padding: 20px;
  }

  .page-title {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .property-submit-btn {
    height: 55px;
    font-size: 15px;
  }

}

/* property-listing-edit-css-end */

/* property-approval-css-start */

.approval-table-box {
  background: #fff;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* RESPONSIVE TABLE */

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* TABLE */

.approval-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 950px;
}

.approval-table thead {
  background: linear-gradient(135deg,
      #1d438b,
      #0a4cc9,
      #ff7b00);
}

.approval-table th {
  color: #fff;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.approval-table td {
  padding: 18px 15px;
  text-align: center;
  border-bottom: 1px solid #ececec;
  font-size: 15px;
  color: #444;
  vertical-align: middle;
}

/* IMAGE */

.approval-table td img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

/* STATUS BADGE */

.pending-badge {
  background: rgba(255, 193, 7, 0.15);
  color: #ff9800;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.approved-badge {
  background: rgba(25, 135, 84, 0.15);
  color: #198754;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTONS */

.action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.approve-btn,
.reject-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;

  display: flex;
  align-items: center;
  gap: 8px;
}

.approve-btn {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  text-decoration: none;
}

.reject-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.approve-btn:hover,
.reject-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .approval-table-box {
    padding: 15px;
  }

  .page-title {
    font-size: 28px;
  }

}

@media(max-width:576px) {

  .approve-btn,
  .reject-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

}

/* property-approval-css-end */

/* enquiey-css-start */


/* TABLE SECTION */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 25px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

.custom-table thead {
  background: linear-gradient(135deg, #0d6efd, #084298);
}

.custom-table thead th {
  color: #fff;
  padding: 15px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.custom-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.custom-table tbody tr:hover {
  background: #f5f9ff;
}

.custom-table tbody td {
  padding: 15px;
  font-size: 14px;
  color: #444;
}

/* STATUS */
.status {
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.pending {
  background: #fff3cd;
  color: #b78103;
}

.solved {
  background: #d1e7dd;
  color: #146c43;
}

/* ACTION BUTTONS */
.action-btns {
  display: flex;
  gap: 10px;
}

.action-btns a {
  text-decoration: none !important;
}

.view-btn,
.delete-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.view-btn {
  background: #0d6efd;
}

.delete-btn {
  background: #dc3545;
}

.view-btn:hover {
  background: #084298;
  transform: translateY(-2px);
}

.delete-btn:hover {
  background: #bb2d3b;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px) {

  .table-container {
    padding: 12px;
  }

  .custom-table thead th,
  .custom-table tbody td {
    padding: 12px;
    font-size: 13px;
  }

}

/* enquiey-css-end */



/* seller-property-post-css-start */

.property-post-wrapper {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.property-post-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.input-box {
  display: flex;
  flex-direction: column;
}

.input-box label,
.upload-box label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d438b;
}

.input-box input,
.input-box select,
.input-box textarea,
.upload-box input {
  width: 100%;
  border: 1px solid #dfe7ff;
  background: #f4f7ff;
  border-radius: 15px;
  padding: 15px 18px;
  outline: none;
  transition: 0.4s;
  font-size: 15px;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: #0a4cc9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 76, 201, 0.10);
}

.input-box textarea {
  resize: none;
}

.full-width {
  grid-column: span 2;
  margin-top: 25px;
}

.upload-box {
  margin-top: 25px;
}

.post-property-btn {
  margin-top: 35px;
  border: none;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  height: 58px;
  padding: 0 35px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
  margin: auto;
}

.post-property-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 123, 0, 0.35);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .property-post-form .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .property-post-wrapper {
    padding: 25px 20px;
  }

}

/* seller-property-post-css-end*/

/* seller-property-listing-css-start */

.action-btns-seller {
  display: flex;
  gap: 10px;
  justify-content: left;
  align-items: center;
}

.action-btns-seller .delete-btn {
  width: 80px;
  height: 38px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.action-btns-seller .edit-btn {
  width: 80px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* seller-property-listing-css-end */


/* seller-edit-css-start */

.property-post-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.form-title {
  font-size: 28px;
  color: #1d438b;
  margin-bottom: 25px;
  font-weight: 700;
}

.property-post-form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  padding: 15px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0a4cc9;
  box-shadow: 0 0 0 3px rgba(10, 76, 201, 0.1);
}

/* FULL WIDTH */

.form-group:nth-child(6) {
  grid-column: span 2;
}

/* BUTTON */

.submit-btn {
  grid-column: span 2;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s;
}

.submit-btn i {
  margin-left: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.35);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .property-post-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(6),
  .submit-btn {
    grid-column: span 1;
  }

  .property-post-wrapper {
    padding: 20px;
  }

}

/* seller-edit-css-end */





/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  right: 25px;
  /* slightly off-screen */
  bottom: 90px;
  /* ABOVE back-to-top button */
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 9998;
  /* below top button if needed */
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  /* slide fully into view */
  transform: scale(1.08);
  color: #FFFFFF;
}



/* top_to_bottam-css-start */

#scroll {
  position: fixed;
  right: 24px;
  bottom: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #132A58;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 9999;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: #1243a5;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}


/* status css  */
.active-status {

  background: green;
  color: white;

}

.sold-status {

  background: red;
  color: white;

}

.pending-status {
  color: orange;
}

.inactive-status {

  background: gray;
  color: white;

}

/* top_to_bottam-css-end */





@media (max-width: 576px) {

  .breadcrumbs-area h2 {
    font-size: 34px;
  }

  .breadcrumbs-color {
    padding: 1% 28%;
  }

  #scroll {
    right: 22px;
    bottom: 16px;
    z-index: 99999;
  }

}



@media (min-width: 576px) and (max-width: 767.98px) {


  .breadcrumbs-area h2 {
    font-size: 34px;
  }

  .breadcrumbs-color {
    padding: 1% 24%;
  }

  #scroll {
    right: 23px;
    bottom: 10px;
    z-index: 9999;
  }

}




@media (min-width: 768px) and (max-width: 991.98px) {

  .breadcrumbs-color {
    padding: 1% 35%;
  }

  #scroll {
    right: 23px;
    bottom: 10px;
    z-index: 9999;
  }
}




@media (min-width: 992px) and (max-width: 1199.98px) {


  #scroll {
    right: 23px;
    bottom: 10px;
    z-index: 9999;
  }


}