/* SECTION */
.welcome-section {
  background: #fff;
}

.site {
  overflow-x: hidden;
}

/* IMAGE COLLAGE (SEAPALACE STYLE) */
.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 520px;
  margin-left: auto;
}

.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP LEFT IMAGE */
.image-collage .img-1 {
  grid-column: 1 / 2;
  height: 260px;
}

/* TOP RIGHT IMAGE */
.image-collage .img-2 {
  grid-column: 2 / 3;
  height: 260px;
}

/* BOTTOM FULL WIDTH IMAGE */
.image-collage .img-3 {
  grid-column: 1 / 3;
  height: 190px;
}

/* CONTENT */
.welcome-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.welcome-content h2 span {
  color: #e9a323;
}

.welcome-content .col-lg-7 {
  display: flex;
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
  display: flex;
}

.welcome-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.home__about__right {
  display: flex;
  align-items: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .image-collage {
    grid-template-columns: 1fr;
    margin: auto;
  }

  .image-collage .img-1,
  .image-collage .img-2,
  .image-collage .img-3 {
    grid-column: auto;
    height: 80px;
  }
}

.demo-btn {
  background-color: #e9a323;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
}

.demo-btn:hover {
  background-color: #e65c3e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.5);
}

.steps-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a6d8a, #2a9d8f);
  border-radius: 2px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 0px;
}

.step {
  flex: 1;
  min-width: 300px;
  background: #f7f9f9;
  padding: 40px 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #092a52;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #e9a323;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #264653;
}

.step p {
  color: #7f8c8d;
  margin-bottom: 25px;
}

.step-btn {
  background: #092a52;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.step-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 109, 138, 0.4);
}

.features-section {
  color: white;
  padding: 30px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {

  text-align: center;
  padding: 30px 20px;
  height: 280px;
  width: 280px;
  border-radius: 50%;
  background: #092a52;
  overflow: hidden;
}

.feature i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e9a323;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}


.mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mission-card {
  flex: 1;
  min-width: 300px;
  background: #f8f9fa;
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid #e9a323;
}

.mission-card h3 {
  color: #264653;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/*===========faq css===============*/


.faq-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.faq-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.faq-search {
  padding: 20px 30px;
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.search-box input:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
}

.search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a11cb;
  font-size: 1.2rem;
}

.faq-content {
  padding: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px 25px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9ff;
}

.faq-question i {
  color: #6a11cb;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: #555;
  line-height: 1.7;
  background: #fdfdfd;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  border-bottom: 1px solid #eaeaea;
}

.faq-footer {
  padding: 20px 30px;
  text-align: center;
  background: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #666;
  font-size: 0.9rem;
}

/* Animation for new items */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-header {
    padding: 30px 20px;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-content {
    padding: 20px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-header h1 {
    font-size: 1.7rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .search-box input {
    padding: 12px 45px 12px 15px;
  }

}

/* Decorative elements */
.floating-icon {
  position: absolute;
  opacity: 0.1;
  font-size: 5rem;
  z-index: 0;
}

.icon-1 {
  top: 10px;
  left: 10px;
  color: white;
}

.icon-2 {
  bottom: 10px;
  right: 10px;
  color: white;
}

/* Custom scrollbar for FAQ answers */
.faq-answer::-webkit-scrollbar {
  width: 5px;
}

.faq-answer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.faq-answer::-webkit-scrollbar-thumb {
  background: #6a11cb;
  border-radius: 10px;
}

/* Focus styles for accessibility */
.faq-question:focus {
  outline: 2px solid #6a11cb;
  outline-offset: 2px;
}

/* Print styles */
@media print {

  .faq-search,
  .faq-footer {
    display: none;
  }

  .faq-item {
    break-inside: avoid;
  }

  .faq-item.active .faq-answer {
    max-height: none;
    display: block;
  }
}

.testimonial-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
}

/* LEFT SIDE TEXT */
.text-side {
  flex: 1 1 45%;
}

.text-side h4 {
  color: #777;
  font-weight: 500;
  margin-bottom: 8px;
}



.testimonial-text {
  background: #fafafa;
  border-radius: 10px;
  padding: 20px 25px;
  position: relative;
  transition: 0.6s ease;
}

.testimonial-text p {
  line-height: 1.6;
  color: #444;
  font-size: 15px;
  min-height: 90px;
}

.author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ccc;
  margin-right: 15px;
}

.author h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.author span {
  font-size: 13px;
  color: #777;
}

.dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff5a00;
  transform: scale(1.2);
}

/* RIGHT SIDE */
.circle-side {
  flex: 1 1 45%;
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating Border Circle */
.rotating-border {
  width: 270px;
  height: 270px;
  border: 2px dashed #ff5a00;
  border-radius: 50%;
  position: absolute;
  animation: rotateRing 50s linear infinite;
  z-index: 1;
}

/* Images inside the circle */
.circle-images {
  position: relative;
  width: 343px;
  height: 306px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.user {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: zoom 3s ease-in-out infinite;
}

.u1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u2 {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.u3 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.u4 {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.quote-icon {
  position: absolute;
  font-size: 70px;
  color: #ff5a00;
  opacity: 0.2;
  z-index: 0;
}

/* Animations */
@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes zoom {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 900px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .circle-side {
    order: -1;
  }
}

#bannerSlider .owl-controls {
  display: none !important;
}

.text-secondary {
  color: #ffc107;
}

/*============What make it Different============*/
/* BACKGROUND IMAGE SECTION */
.different-bg-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b") center/cover no-repeat;
  margin-bottom: 26rem;
}

/* Dark overlay for readability */
.different-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CARD */
.different-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  background: #fff;
  transform: translateY(160px);
  /* HALF OVERLAY EFFECT */
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* LEFT PANEL */
.different-left {
  background: #ffc107;
  padding: 60px 45px;
}

.different-left h2 {
  font-size: 34px;
  font-weight: 700;
}

.different-left p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
}

/* RIGHT GRID */
.different-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.diff-card {
  padding: 45px 30px;
  text-align: center;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.diff-card i {
  font-size: 34px;
  color: #ffc107;
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .different-wrapper {
    grid-template-columns: 1fr;
    transform: translateY(0);
  }

  .different-right {
    grid-template-columns: 1fr;
  }

  .different-bg-section {
    padding: 100px 0;
  }
}

/*============steps-bg-section==============*/
.pg-convert-section {
  width: 100%;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.pg-wrapper {
  display: flex;
  min-height: 480px;
}

/* LEFT SIDE */
.pg-left {
  flex: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2') center/cover no-repeat;
  color: #fff;
  padding: 80px 60px;
}

.pg-tag {
  color: #ffc107;
  font-weight: 600;
  letter-spacing: 1px;
}

.pg-left h2 {
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.2;
}

.pg-left p {
  max-width: 480px;
  opacity: 0.9;
  line-height: 1.7;
}

.pg-btn {
  display: inline-block;
  margin-top: 25px;
  color: #000;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

/* RIGHT SIDE */
.pg-right {
  flex: 1;
  padding: 80px 60px;
}

.pg-right h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.pg-steps {
  list-style: none;
  padding: 0;
}

.pg-steps li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 500;
}

.pg-steps i {
  font-size: 20px;
  margin-right: 15px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .pg-wrapper {
    flex-direction: column;
  }

  .pg-left,
  .pg-right {
    padding: 50px 30px;
  }
}

/*===============faq and form===========*/
.pg-faq-form-section {
  width: 100%;
  padding: 0;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
}

.pg-faq-form-wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
}

/* LEFT FORM */
.pg-form-left {
  flex: 1;
  color: #fff;
  padding: 90px 60px;
  height: fit-content;
}

.pg-form-left h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pg-form-left .sub-text {
  opacity: 0.8;
  margin-bottom: 30px;
}

.pg-form-left .form-control {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: none;
  border-radius: 3px;
}

.pg-form-left select {
  padding: 0 12px !important;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
}

/* RIGHT FAQ */
.pg-faq-right {
  flex: 1;
  padding: 14px 40px;
}

.faq-tag {
  color: #f2b705;
  font-weight: 500;
}

.pg-faq-right h2 {
  font-size: 40px;
  margin: 15px 0 30px;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.faq-answer {
  display: none;
  padding: 18px;
  background: #fff;
}

/* Responsive */
@media(max-width: 992px) {
  .pg-faq-form-wrapper {
    flex-direction: column;
  }
}

/*=================Why Choose us==========*/
.why-choose-us {

  background: #f8fafc;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.section-title span {
  color: #f59e0b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ffc107, #092a52);
}

.why-card:hover {
  transform: translateY(-10 -5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-card .icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f2937;
}

.why-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/*============footer=============*/

.swal-btn-padding {
  padding: 8px 25px !important;
  font-size: 16px;
}

/* ================= NEW MODERN FOOTER =================== */

.new-footer {
  background: white;
  /*padding: 40px 0 0;*/
  border-top: 1px solid #eee;
  font-family: Arial, sans-serif;
}

.new-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  text-align: center;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.footer-top .col-sm-6 {
  padding: 0;
}

.new-footer .footer-top .stat {
  flex: 1;
}

.new-footer .footer-top h3 {
  color: #c28a00;
  font-size: 24px;
  margin-bottom: 3px;
  font-weight: bold;
}

.new-footer .footer-center {
  padding-top: 40px;
  padding-bottom: 40px;
}

.new-footer .footer-cols {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.new-footer .footer-cols .col {
  width: 23%;
}

.new-footer .footer-cols .col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.new-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.new-footer ul li {
  margin-bottom: 7px;
}

.new-footer ul li a {
  text-decoration: none;
  color: #555;
}

.new-footer .download-app img {
  width: 140px;
  margin-right: 10px;
  margin-top: 10px;
}

/* Bottom area */
.new-footer-bottom {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  margin-top: 20px;
}

.new-footer-bottom .bottom-flex {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* ================= Floating Contact Button =================== */

.contact-fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease;
}

.contact-fab:active {
  transform: scale(0.9);
}

.contact-options {
  position: fixed;
  bottom: 140px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.contact-options.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: scale(0);
  animation: popIn 0.3s forwards;
}

.contact-option:nth-child(1) {
  animation-delay: 0.05s;
}

.contact-option:nth-child(2) {
  animation-delay: 0.15s;
}

.contact-option.call {
  background: #28a745;
}

.contact-option.whatsapp {
  background: #25D366;
  margin-top: 10px;
}

@keyframes popIn {
  0% {
    transform: scale(0) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .new-footer .footer-cols {
    flex-direction: column;
  }

  .new-footer .footer-cols .col {
    width: 100%;
  }

  .new-footer-bottom .bottom-flex {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

.benefit-box-new {
  text-align: center;
  padding: 20px 10px;
}

.benefits_icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits_icon i {
  font-size: 28px;
  color: #1a6d8a;
}

.benefit-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.benefit-box-new {
  display: flex;
  align-items: center;
}

/*=============category============*/


.section-categories-new h2 span {
  color: #f59e0b;
}

.section-categories-new p {
  color: #6b7280;
  font-size: 16px;
}

/* Tile */
.category-tile {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-tile:hover img {
  transform: scale(1.12);
}

/* Overlay */
.category-tile .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.category-tile h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-tile span {
  color: #facc15;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.category-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.section-categories-new .col-lg-3,
.section-categories-new .col-md-4,
.section-categories-new .col-sm-6 {
  margin-bottom: 32px;
}


@media (min-width: 992px) {
  .category-carousel {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .category-carousel .owl-stage-outer {
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .category-carousel {
    display: block;
  }
}

.navbar-brand>img {
  display: inline-block !important;
}

.split-hero {
  display: flex;
  height: 520px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* LEFT SIDE */
.split-content {
  width: 45%;
  padding: 70px 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.split-content h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 35px;
}

.hero-cta .btn-dark {
  padding: 12px 32px;
  border-radius: 5px;
  margin-right: 15px;
}

/* RIGHT IMAGE */
.split-image {
  width: 55%;
  background-size: contain;
  background-position: center;
}

/* MOBILE HEADER */
.header-mobile {

  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}

.mobile-menu-btn {
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  transition: 0.3s;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.close-mobile-menu {
  font-size: 26px;
  float: right;
  cursor: pointer;
}

@media (max-width: 480px) {

  .split-content {
    padding: 20px 13px !important;
    width: 100%;
  }

  .split-content h1 {
    font-size: 20px !important;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .split-content p {
    font-size: 8px !important;
  }

  .split-image {
    width: 100%;
    min-height: 15rem;
    background-repeat: no-repeat;
  }

  .split-hero {
    height: auto;
    flex-direction: column-reverse;
    border-radius: 0;
  }

  .hero-cta .btn-dark, .hero-cta .btn-link {
    padding: 5px 11px;
    font-size: 0.9rem;
    margin-right: 0;
  }

  .hero-tag {
    margin-bottom: 0;
  }

  .welcome-content h2 {
    font-size: 16px;
  }

  .home__about__right {
    width: 60%;
  }

  .welcome-content p {
    font-size: 11px;

  }

  .home-section {
    margin: 3rem 0;
  }

  .btn {
    border-radius: 5px;
    padding: 5px 14px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 26px;
  }

  .agent-carousel .owl-controls .owl-buttons div, .partner-carousel .owl-controls .owl-buttons div, .properties-carousel .owl-controls .owl-buttons div, .blog-carousel .owl-controls .owl-buttons div, .shop-slider .owl-controls .owl-buttons div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
  }

  .property-item .property-item-wrap .item-title {
    font-size: 16px;
  }

  .property-item .property-item-wrap .location {
    font-size: 11px;
  }

  .property-item .property-item-wrap .item-featured img {
    height: 20rem;
  }

  .pg-left h2 {
    font-size: 25px;
  }

  .pg-left p {
    font-size: 13px;
  }

  .pg-btn {
    padding: 7px 12px;
  }

  .pg-right h3 {
    font-size: 20px;
  }

  .pg-steps li {
    font-size: 16px;
  }

  .pg-left, .pg-right {
    padding: 20px;
  }

  .card-explore__link {
    background: #092a52;
    color: white;
    padding: 2px 11px;
    border-radius: 10px;
    font-size: 1.2rem;
  }

  .different-left {
    padding: 20px;
  }

  .different-left h2 {
    font-size: 28px;
  }

  .different-bg-section {
    padding: 40px 0;
  }

  .diff-card {
    padding: 0;
  }

  .different-bg-section {
    margin-bottom: 6rem;
  }

  .pg-form-left {
    padding: 42px 22px;
  }

  .pg-faq-right {
    padding: 20px;
  }

  .pg-faq-right h2 {
    font-size: 26px;
  }

  .faq-question {
    padding: 10px;
  }

  .benefits_icon {
    width: 30px;
    height: 30px;
  }

  .new-footer .footer-top {
    gap: 0;
    background: beige;
  }

  .benefit-title {
    font-size: 14px;
  }

  .benefit-box-new .benefits p {
    font-size: 1rem;
  }

  .logo-normal {
    height: 5rem;
  }

  .split-content p {
    margin-bottom: 15px;
  }

  .single-property-status {
    font-size: 12px!important;
    padding: 4px 13px!important;
        top: -40px!important;
  }
}

@media (max-width: 767px) {
  .mobile_add_pt {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .meta-property {
    display: none;
  }

  .logo-with-menuclick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 87%;
    margin: auto;
    padding: 1rem 0;
  }
}

.mobile-login-box {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.mobile-login-box a {
  display: inline-block;
  margin-right: 10px;
}

.mobile-login-box .button,
.mobile-login-box .btn {
  width: 100%;
  margin-bottom: 8px;
  
}