﻿/********** Template CSS **********/
:root {
    --primary: #8B1D3E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 0px;
    padding: 0 0rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: gold;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}
/* HEADER */
.rr-header {
  width: 100%;
  overflow: hidden;
}

/* SLIDER */
.rr-slider {
  position: relative;
  width: 100%;
}

/* SLIDE */
.rr-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.rr-slide.active {
  position: relative;
  opacity: 1;
}

/* IMAGE */
.rr-img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */
.rr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(14, 46, 80, 0.6),
    rgba(139, 29, 62, 0.6)
  );
}

/* CONTENT */
.rr-content {
  position: absolute;
  top: 50%;
  left: 5%;              /* minimal left spacing */
  transform: translateY(-50%);
  max-width: 600px;
  text-align: left;
  color: #fff;
  z-index: 2;
}


.rr-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color:#A48D42;
}

.rr-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTON */
.rr-btn {
  padding: 14px 36px;
  background: linear-gradient(135deg, #D4AF37, #1A5826);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.rr-btn:hover {
  background:#5E9131;
}

/* NAV BUTTONS */
.rr-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  z-index: 5;
}

.rr-nav.prev { left: 20px; }
.rr-nav.next { right: 20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .rr-content h1 {
    font-size: 20px;
  }

  .rr-content p {
    font-size: 12px;
  }
  .rr-nav{
      width: 30px;
  height: 30px;
  font-size: 15px;
  }
  .rr-btn{
      padding: 5px 15px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 5px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(139, 29, 62, 0.31);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(238, 94, 130, 0.54) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background:#a79a33;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ================= TRANSPARENT TOP BAR ================= */
.topbar-transparent {
    position: relative;
    width: 100%;
    background: #1F7D31DB;
   
    z-index: 1050;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
}

/* Left info */
.topbar-left span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.topbar-left i {
    color: #D4AF37; /* Bootstrap primary */
    font-size: 13px;
}

/* Right social icons */
.topbar-right a {
    color: #D4AF37;
    margin-left: 12px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.topbar-right a:hover {
    color: #0d6efd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .topbar-left span {
        margin-right: 10px;
    }
}
/* ================= SOCIAL ICON HOVER ANIMATION ================= */

.topbar-right a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #FFC300;                 /* static color */
    font-size: 14px;

    border-radius: 50%;
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Outer animated ring */
.topbar-right a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    border: 1.5px solid #D4AF37;
    opacity: 0;
    transform: scale(0.6);

    transition: all 0.35s ease;
}

/* Hover effect */
.topbar-right a:hover {
    color: #D4AF37;
    transform: translateY(1.5px);
}

/* Ring animation on hover */
.topbar-right a:hover::before {
    opacity: 1;
    transform: scale(1.15);
}

/* Icon pulse on hover */
.topbar-right a:hover i {
    animation: socialPulse 0.6s ease;
}

/* Pulse keyframes */
@keyframes socialPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}
/* Default state — visible */
.topbar-transparent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: 
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

/* When navbar becomes sticky */
.nav-bar.sticky-top .topbar-transparent {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
}
.about-section {
  padding: 90px 6%;
  background: #fffaf7;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.about-tag {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

.about-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-left h2 span {
  color: #D4AF37;
}

.about-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.feature-card {
 background: #ffffff;
 padding: 10px 10px;
  border-radius: 5px;
  
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eac8d1;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(177, 32, 69, 0.08), transparent);
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(181, 155, 161, 0.52);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(177, 32, 69, 0.12);
  color: #D4AF37;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  background: #D4AF37;
  color: #fff;
  transform: scale(1.1);
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* RIGHT SIDE */
.about-right {
  width: 100%;
}

/* IMAGE GRID */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  position: relative;
}

/* IMAGE COMMON */
.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* POSITIONING */
.img-one {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.img-two {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  transform: translateY(-20px); /* move UP */
}

.img-three {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* EXPERIENCE CARD */
.experience-box {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #D4AF37;
  color: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  transform: translateY(20px); /* move DOWN */
}

.experience-box h3 {
  font-size: 38px;
  margin-bottom: 6px;
  color: #EAC8D1;
}

/* =========================
   RESPONSIVE (KEEP GRID)
   ========================= */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 180px);
  }

  .img-two {
    transform: translateY(-12px);
  }

  .experience-box {
    transform: translateY(12px);
  }
}

.cities-section {
  padding: 80px 6%;
  background: #fdf9f7;
}

.cities-header {
  text-align: center;
  margin-bottom: 50px;
}

.cities-header h2 {
  font-size: 38px;
  margin-bottom: 6px;
}

.cities-header .subtitle {
  font-size: 18px;
  color: #D4AF37;
  font-weight: 600;
}

.cities-header .desc {
  color: #666;
  margin-top: 8px;
}

/* GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.city-card {
  position: relative;
  height: 340px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(13, 13, 13, 0.77), rgba(244, 196, 211, 0.29) );
}

.city-card:hover {
  transform: translateY(-10px);
}

/* CONTENT */
.city-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.city-overlay h3 {
  font-size: 22px;
  margin-bottom: 4px;
  color: #eac8d1;
}

.city-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

.city-overlay p {
  font-size: 14px;
  margin: 8px 0;
}

.city-overlay strong {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #ffd4dc;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    height: 280px;
  }
}
.service-locations {
    margin-top: 15px;
}

.location-title {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    color: #ffffff;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.loc-btn {
    padding: 6px 14px;
    border-radius:  5px;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: default;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.loc-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}
.service-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* allows wrapping on small screens */
    gap: 12px;
    text-align: center;
}

/* Title */
.location-title {
    font-weight: 600;
    color: #ffffff;
    margin-right: 10px;
    white-space: nowrap;
}

/* Button wrapper */
.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual location button */
.loc-btn {
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: default;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.loc-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .service-locations {
        justify-content: center;
    }

    .location-title {
        width: 100%; 
        text-align: center;
    }

    .location-buttons {
        justify-content: center;
    }
}
.rr-breadcrumb {
  background: linear-gradient(135deg, #c0cad5, #D4AF37);
  padding: 70px 6%;
  color: #fff;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.breadcrumb-left h1 {
  font-size: 42px;
  margin-bottom: 6px;
  font-weight: 700;
}

.breadcrumb-left p {
  font-size: 15px;
  opacity: 0.9;
}

/* RIGHT BREADCRUMB */
.breadcrumb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-right a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.breadcrumb-right a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-right span {
  color: #ffd6e0;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .breadcrumb-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .breadcrumb-left h1 {
    font-size: 30px;
  }
}
