/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700;800;900&display=swap");
/* Mahtab Root Variables */
:root {
  --mehroon: #6d2932; /* Dark Red */
  --green: #006400; /* Dark Green */
  --grey: #36454f; /* Charcoal */
  --light-grey: #f8f9fa; /* grey */
  --white: #ffffff;
  --black: #212529;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  overflow-x: hidden;
}

body {
  font-family: "Playfair Display", sans-serif;
  color: var(--grey);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  padding-bottom: 15px;
  color: var(--mehroon);
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--green);
}
.btn-custom {
  background-color: var(--mehroon);
  color: white;
  border-color: var(--mehroon);
  &:hover {
    background-color: transparent;
    color: var(--mehroon);
    border-color: var(--mehroon);
  }
}
/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--mehroon);
}

/* 2. NAVBAR */
.navbar {
  transition: all 0.3s ease;
}
.navbar-brand img {
  width: 85px;
  object-fit: cover;
}
.navbar .nav-link {
  color: var(--light-grey);
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 0 10px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white);
}

.nav-scroll {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.nav-scroll .nav-link {
  color: var(--grey);
}
.nav-scroll .nav-link:hover,
.nav-scroll .nav-link.active {
  color: var(--mehroon);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* 3. HOME (HERO SECTION) */
#home .carousel,
#home .carousel-inner,
#home .carousel-item {
  height: 100vh;
  min-height: 35rem;
}

#home .carousel-item img {
  object-fit: cover;
  min-height: 35rem;
  width: 100%;
  height: auto;
  display: block;
}

#home .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#home .carousel-caption {
  top: 11%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15%;
  z-index: 1;
}

#home .carousel-content {
  max-width: 800px;
}

#home .company-name {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  animation: fadeInDown 1s ease-out;
}
#home .fst-alp {
  font-size: clamp(3rem, 9vw, 5.5rem);
}
#home .tagline {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  color: var(--white);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.5s;
  animation-fill-mode: backwards;
}

#home .animated-highlights {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  height: 30px;
  position: relative;
  overflow: hidden;
}

#home .animated-highlights span {
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  animation: highlight-anim 9s infinite ease-in-out;
}
#home .animated-highlights span:nth-child(1) {
  animation-delay: 0s;
}
#home .animated-highlights span:nth-child(2) {
  animation-delay: 3s;
}
#home .animated-highlights span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes highlight-anim {
  0%,
  33.33% {
    opacity: 0;
    transform: translateY(50%);
  }
  5%,
  28.33% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  #home .carousel-caption {
    text-align: left;
    padding: 0 10%;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 1.2rem 0;
  }
  .navbar .nav-link {
    color: var(--grey);
  }
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: var(--green);
  }
  #home .carousel,
  #home .carousel-inner,
  #home .carousel-item {
    height: 55vh;
  }
  #home .company-name {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  #home .tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
}

/* 4. ABOUT, HISTORY, LEADERSHIP SECTIONS */
.img-fluid {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-text p {
  font-size: 1rem;
  color: #555;
}

.section-text .lead {
  font-weight: 500;
  color: var(--black);
}

#vision {
  position: relative;
  background: url("../images/ocp-img.jpg") center center / cover no-repeat fixed;
  padding: 80px 0;
  z-index: 1;
}

#vision .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0.6);
  z-index: -1;
}

.vms-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 2rem 1.8rem;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.vms-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.vms-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mehroon), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.4s ease;
}

.vms-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.vms-card h5 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.vms-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 0;
}

.vms-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.vms-card:nth-child(1) {
  animation-delay: 0.2s;
}
.vms-card:nth-child(2) {
  animation-delay: 0.4s;
}
.vms-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 5. SERVICES */
.service-card {
 background: #84b178;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mehroon), var(--green));
  transition: all 0.4s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mehroon), var(--green));
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.3s ease;
}

.service-card:hover .icon {
  background: linear-gradient(135deg, var(--green), var(--mehroon));
  transform: scale(1.1);
}

.service-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 6. GALLERY / PORTFOLIO */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  font-size: 2.5rem;
  color: var(--white);
}

/* Gallery Popup Modal */
.modal.fade .modal-dialog {
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
}
.modal.show .modal-dialog {
  transform: translateX(0);
}
.modal-content {
  background-color: transparent;
  border: none;
}
.modal-body {
  padding: 0;
  position: relative;
}
.modal-img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  margin: auto;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.modal-img.slide-out {
  opacity: 0;
  transform: scale(0.95);
}
.modal-img.slide-in {
  opacity: 1;
  transform: scale(1);
}
.modal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.modal-nav:hover {
  opacity: 1;
}
.modal-nav.prev {
  left: 15px;
}
.modal-nav.next {
  right: 15px;
}

/* 7. CONTACT US */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-info-item i {
  font-size: 1.5rem;
  color: var(--green);
  margin-right: 15px;
  margin-top: 5px;
}
.contact-info-item a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-item a:hover {
  color: var(--mehroon);
}

/* 8. FOOTER */
footer {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}
footer h5 {
  color: var(--white);
  margin-bottom: 20px;
}
footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--white);
}
footer .list-unstyled li {
  margin-bottom: 10px;
}
footer .social-icons a {
  font-size: 1.5rem;
}
.footer-bottom {
  background-color: var(--mehroon);
  padding: 15px 0;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--light-grey);
}

/* 9. EXTRA FUNCTIONALITIES */
.floating-buttons {
  position: fixed;
  bottom: 4.8rem;
  z-index: 1000;
}

.floating-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#contact-icons,
.atop {
  right: 1.3rem;
}
#contact-icons .whatsapp-btn {
  background-color: #25d366;
}
#contact-icons .call-btn {
  background-color: var(--mehroon);
}
.atop {
  bottom: 1rem;
}
#back-to-top {
  right: 20px;
  background-color: var(--black);
  display: none;
}

/* Scroll Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.clients-carousel {
  /*overflow: hidden;*/
  position: relative;
  background: #fff;
  padding: 30px 0;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 100s linear infinite;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}


.client-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
h2.ou-cl-sec {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    padding-bottom: 15px;
    color: var(--mehroon);
}

.client-item img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Continuous Scrolling Animation */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .client-item {
    width: 150px;
    margin: 0 15px;
  }
}

@media (max-width: 576px) {
  .client-item {
    width: 120px;
    margin: 0 10px;
  }
}

.para-pr-se p {
    font-size: 20px;
    color: #343434;
    font-family: inherit;
}


section.proj-tp-sec {
    margin-bottom: 105px;
}



.para-pr-se i.bi.bi-arrow-right {
    margin-left: 5px;
    margin-top: 2px;
}
.para-bt-sec {
    display: flex;
}

.para-bt-sec p {
    background: #7c0000;
    color: #fff;
    padding: 10px 10px 10px 10px;
    border-radius: 5px 5px 5px 5px;
    cursor: pointer;
}

.bi-arrow-right::before {
    content: "\f138";
    margin-left: 10px;
}

.col-lg-6.Pjt-pa-sec p {
    font-size: 16px;
    color: #555;
}
.para-bt-sec a {
    text-decoration: none;
    color: #fff;
}

/*.project-section {*/
/*    padding: 40px 0;*/
/*}*/

.p-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.p-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.p-card p {
    font-size: 14px;
    color: #555;
    line-height: 22px;
}

.p-card p {
    font-size: 18px;
}


.services-section {
  width: 100%;
}

.service-box {
  min-height: 420px;
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.svc-wrap {
  width: 100%;
  position: relative;
}

.svc-row {
  display: flex;
  width: 100%;
}

.svc-col {
  position: relative;
  width: 33.333%;
  height: 420px;
  overflow: hidden;
}

.svc-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.svc-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* text */
.svc-text {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.svc-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.svc-text span {
  display: block;
  width: 45px;
  height: 3px;
  background: #f4c400;
  margin: 12px auto;
}

.svc-text p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* bottom diagonal */
.svc-wrap::after {
  content: "";
  display: block;
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 10px,
    #e5e5e5 10px,
    #e5e5e5 20px
  );
}

/* responsive */
@media (max-width: 991px) {
  .svc-row {
    flex-direction: column;
  }

  .svc-col {
    width: 100%;
    height: 350px;
  }
}


#about {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

/* SVG chevron background */
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1400' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpolygon points='0,0 200,250 0,500 120,500 320,250 120,0' fill='%23f5c400'/%3E%3Cpolygon points='200,0 400,250 200,500 280,500 480,250 280,0' fill='%23f2f2f2'/%3E%3Cpolygon points='400,0 600,250 400,500 480,500 680,250 480,0' fill='%23f2f2f2'/%3E%3Cpolygon points='600,0 800,250 600,500 680,500 880,250 680,0' fill='%23f2f2f2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* content above background */
#about .container {
  position: relative;
  z-index: 1;
}

/* ===== Construction Process Section ===== */

.cp-wrap {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
  font-family: inherit;
}

/* RIGHT SIDE BUILDING BACKGROUND IMAGE */
.cp-wrap::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/building-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: 1;               /* 🔥 very light like demo */
  pointer-events: none;
  z-index: 0;
}

.cp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;                  /* content above bg */
}

/* ===== Title ===== */

.cp-title {
  text-align: center;
  margin-bottom: 70px;
}

.cp-title h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  margin: 0;
}

.cp-title span {
  display: block;
  width: 48px;
  height: 3px;
  background: #f5c400;
  margin: 14px auto 0;
}

/* ===== Steps Layout ===== */

.cp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-step {
  width: 340px;
  text-align: center;
  padding: 0 10px;
}

/* icon image */
.cp-icon-img {
  width: 100;
  height: auto;
  margin-bottom: 22px;
}

/* number */
.cp-num {
  font-size: 54px;
  font-weight: 700;
  color: #f5c400;
  line-height: 1;
  margin-bottom: 12px;
}

/* heading */
.cp-step h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 10px;
}

/* text */
.cp-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin: 0;
}

/* arrows */
.cp-arrow {
    font-size: 90px;
    color: #000;
    margin: 0 18px;
    font-weight: 900;
    line-height: 1;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {
  .cp-wrap::after {
    display: none;   /* 🔥 mobile me background hide */
  }

  .cp-steps {
    flex-direction: column;
  }

  .cp-arrow {
    display: none;
  }

  .cp-step {
    width: 100%;
    max-width: 320px;
    margin-bottom: 50px;
  }

  .cp-step:last-child {
    margin-bottom: 0;
  }
}


.why-choose-section {
  width: 100%;
  background: #000;
   
}

/* LEFT IMAGE */
.why-image {
  min-height: 520px;
  background-image: url("assets/images/wcu-buil-img.jpg"); /* building image */
  background-size: cover;
  background-position: center;
}

/* RIGHT CONTENT */
.why-content {
  height: 100%;
  padding: 80px 70px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
}

.why-content h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color:#fff;
}

.line {
  display: block;
  width: 40px;
  height: 3px;
  background: #f4c300;
  margin-bottom: 25px;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #ddd;
}

.project-details {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.project-details li {
    margin-bottom: 25px;
    font-size: 17px;
    display: flex;
}

.project-details strong {
    width: 121px;
    display: inline-block;
    font-size: 17px;
    line-height: 38px;
    margin-right: 20px;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-yellow {
  background: #f4c300;
  color: #000;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 600;
}

.btn-dark {
  background: #222;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 13px;
}

a.btn-yellow:hover {
    border: 1px solid #f4c300;
    background: transparent;
    color: #ffcd00;
    font-weight: 700;
    font-size: 17px;
    border-radius: 20px;
}

/*.cp-map-section {*/
/*  position: relative;*/
  /*padding: 100px 0;*/
/*  background: #fff;*/
/*  overflow: hidden;*/
/*}*/

/* ARROW BACKGROUND */
/*.cp-map-section::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  width: 45%;*/
/*  height: 100%;*/
/*  background: url("assets/images/arrow-bg.png") no-repeat center;*/
/*  background-size: cover;*/
/*  opacity: 0.15;*/
/*}*/

/* MAP */
/*.cp-map-wrap {*/
/*  position: relative;*/
/*  text-align: center;*/
/*}*/

/*.cp-map-img {*/
/*  max-width: 100%;*/
/*  opacity: 14.4;*/
/*}*/

/* DOTS */
/*.cp-dot {*/
/*  position: absolute;*/
/*  width: 8px;*/
/*  height: 8px;*/
/*  background: #f4c300;*/
/*  border-radius: 50%;*/
/*}*/

/* dot positions (adjust if needed) */
/*.d1 { top: 40%; left: 32%; }*/
/*.d2 { top: 45%; left: 35%; }*/
/*.d3 { top: 38%; left: 48%; }*/
/*.d4 { top: 42%; left: 50%; }*/
/*.d5 { top: 55%; left: 28%; }*/
/*.d6 { top: 60%; left: 30%; }*/

/* CONTENT */
/*.cp-map-content {*/
/*  padding: 40px 60px;*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/

/*.cp-map-content h2 {*/
/*  font-size: 36px;*/
/*  font-weight: 700;*/
/*  letter-spacing: 1px;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.cp-line {*/
/*  display: block;*/
/*  width: 40px;*/
/*  height: 3px;*/
/*  background: #f4c300;*/
/*  margin-bottom: 25px;*/
/*}*/

/*.cp-map-content p {*/
/*  color: #777;*/
/*  font-size: 15px;*/
/*  line-height: 1.8;*/
/*  margin-bottom: 35px;*/
/*}*/

/* BUTTON */
/*.cp-btn {*/
/*  display: inline-block;*/
/*  background: #f4c300;*/
/*  color: #000;*/
/*  padding: 12px 26px;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*}*/


/*.or-prjt-nw-pg-rigt a {*/
/*    background: #6d2932;*/
/*    color: #fff;*/
/*    border-radius: 20px;*/
/*    padding: 10px 30px 12px 37px;*/
/*    text-decoration: none;*/

/*}*/


/*.or-prjt-nw-pg p {*/
/*    text-align: center;*/
/*    font-size: 23px;*/
/*    color: #000;*/
/*    margin-bottom: 50px;*/
/*}*/


/* map section fix */
.cp-map-section {
  position: relative;
}

/* map wrap */
.cp-map-wrap {
  position: relative;
  z-index: 1;
}

/* map image should NOT block clicks */
.cp-map-img {
  pointer-events: none;
}

/* dots bhi click block na kare */
.cp-dot {
  pointer-events: none;
}
.or-prjt-nw-pg-rigt {
  position: relative;
  z-index: 5;
  text-align: center;
}

.or-prjt-nw-pg-rigt a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #6d2932;
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* arrow icon */
.or-prjt-nw-pg-rigt a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* hover effect */
.or-prjt-nw-pg-rigt a:hover {
  background: #8b3a44;
  transform: translateY(-3px);
}

/* arrow move on hover */
.or-prjt-nw-pg-rigt a:hover i {
  transform: translateX(6px);
}

h4.or-his-head {
    color: #919191;
    font-size: 30px;
    margin-bottom: 30px;
        font-weight: 700;
}


/*img.or-his-boss-img {*/
    /*float: right;*/
/*    width: 27%;*/
/*    border-radius: 20px;*/
/*    border: 4px solid #169368;*/

/*}*/

.project-section {
  position: relative;
}

.project-section .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  padding: 0 15px;
}

.project-section .owl-nav button {
  background: #000 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
}

.project-section .owl-nav button:hover {
  background: #ffc107 !important;
  color: #000 !important;
}


.or-his-boss-img {
    width: 140px;
    border-radius: 20px;
    border: 4px solid #169368;
    margin-bottom: 15px;
}

.left-img {
    float: left;
    margin-right: 15px;
}

.right-img {
    float: right;
    margin-left: 15px;
}

 Mobile fix 
@media (max-width: 768px) {
    .left-img,
    .right-img {
        float: none;
        display: block;
        margin: 0 auto 15px;
    }
}



