/* Header background */
.main-header,
.header-sticky,
.navbar,
.navbar-expand-lg {
    background-color: #ffffff !important;
}

/* Nav links text color */
.main-header .nav-link,
.main-header a,
.main-header ul li a {
    color: #000000 !important;
}

/* Dropdown menu background */
.main-header .submenu ul {
    background-color: #ffffff !important;
}

/* Dropdown links */
.main-header .submenu ul li a {
    color: #000000 !important;
}

/* Hover state (optional – keeps it clean) */
.main-header .nav-link:hover,
.main-header .submenu ul li a:hover {
    color: #000000 !important;
    opacity: 0.7;
}

/* Button text */
.header-btn .btn-default {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
}

/* Top Small Navbar */
.top-bar {
    background-color: #0dc1d8;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left text */
.top-left a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

/* Social icons */
.top-right a {
    color: #ffffff;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.top-right a:hover {
    opacity: 0.8;
}

/* Mobile fix */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
    }
}

.navbar {
    padding: 9px 0;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
}


.how-we-work-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #fff;
    transition: 0.3s;
}

.how-we-work-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.how-we-work-step {
    font-weight: 600;
    color: #0dc1d8;
    margin-bottom: 1px;
    font-size: 16px;
}

.icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 1px;
}

.how-we-work-content h3 {
    font-size: 18px;
    color: #000;
    margin: 0;
}

/* Mobile: only show step and heading, hide icons if needed */
@media (max-width: 768px) {
    .icon-box img {
        width: 50px;
        height: 50px;
    }
}


.how-we-work {
    background: var(--primary-color);
    padding: 25px 0;
}

.main-footer {
    padding: 35px 0 0;
    background: var(--primary-color);
}


.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    margin-top: 6px;
    padding: 6px 0;
}


@media only screen and (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 109px 0 142px;
        margin-top: -36px;
    }
}


.project-item {
    margin-bottom: 20px;
}

.project-image {
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 4s ease;
}

/* Scroll effect on hover */
.scroll-hover:hover img {
    transform: translateY(-40%);
}


.project-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.project-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.project-slide {
    flex: 0 0 25%;
    padding: 10px;
}

.project-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .project-slide {
        flex: 0 0 50%;
    }
}


.our-project {
    padding: 60px 0 10px;
}

.section-title {
    margin-bottom: 8px;
}


.vision-mission {
    padding: 19px 0 19px;
    background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.section-row {
    margin-bottom: 40px;
}


.google-map {
    padding: 21px 0 31px;
}

.page-contact-us {
    padding: 21px 0 50px;
}

.achievements-list .why-choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.achievements-list .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c9a24d;
    /* premium gold */
}

.achievements-list .icon-box:hover {
    background: #f4f4f4;
    color: #c9a24d;
}

.achievement-image img {
    width: 100%;
    border-radius: 12px;
}

.why-choose-us {
    padding: 30px 0;
    background-color: var(--secondery-color);
}

.our-services {
    padding: 41px 0;
}

.page-project {
    padding: 70px 0;
}

/* SIDEBAR */
.project-sidebar {
    height: 100%;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.project-list li {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    background: #f5f5f5;
    transition: 0.3s;
}

.project-list li.active,
.project-list li:hover {
    background: #000;
    color: #fff;
}

/* PROJECT CARD */
.project-card {
    height: 100%;
}

.project-info {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-info li {
    margin-bottom: 6px;
}

/* GALLERY */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.project-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
}


.completed-projects {
    padding-top: 40px;
}

.client-review {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.client-review h6 {
    margin-bottom: 6px;
    font-weight: 600;
}

.client-review p {
    margin: 0;
    font-style: italic;
}

.contact-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.15);
    /* soft gold bg */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #c9a24d;
    /* luxury gold */
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
    text-transform: capitalize;
}

.contact-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.contact-card a {
    color: #555;
    text-decoration: none;
}

.contact-card a:hover {
    color: #c9a24d;
}

.icon-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 9px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.icon-bar a:hover {
    background-color: #000;
}

/* Brand colors */
.facebook {
    background: #3B5998;
}

.twitter {
    background: #55ACEE;
}

.google {
    background: #dd4b39;
}

.linkedin {
    background: #007bb5;
}

.youtube {
    background: #bb0000;
}

.instagram {
    background: #E1306C;
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

/* Overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;              /* JS will change to flex */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.modal-content {
  background: #ffffff;
  width: 420px;
  max-width: 92%;
  padding: 28px 26px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: popupFade 0.35s ease;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Title */
.modal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

/* Labels */
.modal-content label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 12px;
  color: #333;
}

/* Inputs & Dropdown */
.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease;
}

.modal-content input:focus,
.modal-content select:focus {
  border-color: #a51919;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 14px 0 18px;
  color: #444;
}

.checkbox input {
  width: auto;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #a51919;
  color: #ffffff;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #8f1414;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .modal-content {
    padding: 22px 18px;
  }

  .modal-content h2 {
    font-size: 18px;
  }
}
.service-page {
  margin: 60px auto;
}

/* Card Style */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Divider Line */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #a51919;
  border-radius: 4px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Image */
.service-img {
  flex: 1;
}

.service-img img {
  width: 100%;
  border-radius: 14px;
}

/* Content */
.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.service-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

/* List */
.service-info ul {
  padding-left: 18px;
  margin: 0;
}

.service-info ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  list-style: disc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    padding: 22px;
  }

  .service-card::before {
    display: none;
  }
}


.video-section {
  padding: 20px 0;
  background: #f6f6f6;
}

 
.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.video-thumb {
  position: relative;
  height: 190px;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: #fff;
  color: #000;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ff4d4d;
  color: #fff;
}

.video-content {
  padding: 18px;
}

.video-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.video-content p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: fr;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-container {
  display: flex;
  width: 700px;
  max-width: 95%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

/* LEFT IMAGE */
.modal-left {
  width: 45%;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM */
.modal-right {
  width: 55%;
  padding: 32px;
  position: relative;
}

.modal-right h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* CLOSE */
.close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* PROPERTY TYPE */
.property-type {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.property-type label input {
  display: none;
}

.property-type span {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.property-type input:checked + span {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* INPUTS */
.modal-right input,
.modal-right select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* PHONE */
.phone-field {
  display: flex;
  gap: 8px;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin: 10px 0;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: #9c1c1f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* TERMS */
.terms {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .modal-container {
    flex-direction: column;
  }

  .modal-left {
    display: none; /* hide image */
  }

  .modal-right {
    width: 100%;
    padding: 24px;
  }
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info a {
    color: #fff;           /* change if needed */
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}


.page-services {
    padding: 15px 0 19px;
}