/* Extracted CSS: navbar, footer, and .simple-slider.project-slider only */

:root {
  --lodha-blue: #0f3464;
  --lodha-blue-dark: #004d8c;
  --lodha-cream: #f0ece7;
  --lodha-text-dark: #1a1a1a;
  --lodha-white: #ffffff;
}

/* =============================
   Navbar
============================= */

header {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.35s ease-in-out;
}

header.scrolled {
  background: #fff !important;
}

.navbar {
  width: 100%;
  position: relative;
  flex: 1;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.navbar::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .navbar::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo {
  display: flex;
  justify-content: flex-start;
  padding-left: 10px;
}

.logo img {
  width: auto;
  height: 60px;
  filter: none;
}

#mainNav {
  display: flex;
  justify-content: flex-end;
}

header .navbar ul,
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 10px 20px;
  margin: 0;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--lodha-blue);
}

.hamburger {
  justify-self: end;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  z-index: 10000;
  position: relative;
  transition: background 0.2s ease;
}

.hamburger:hover,
.hamburger.is-active {
  background: rgba(15, 52, 100, 0.08);
}

.hamburger-icon {
  display: inline-block;
  line-height: 1;
  color: var(--lodha-blue);
  transition: color 0.2s ease, transform 0.2s ease;
}

.hamburger.is-active .hamburger-icon {
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .hamburger {
    display: inline-flex;
  }

  #mainNav {
    display: block;
  }

  #mainNav .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: min(82vw, 320px);
    height: 100vh;
    padding: 90px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    background: #fff;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
    transition: right 0.35s ease, visibility 0.35s ease;
    visibility: hidden;
    pointer-events: none;
    z-index: 9998;
    overflow-y: auto;
  }

  #mainNav .nav-links.show {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }

  #mainNav .nav-links li {
    width: 100%;
  }

  #mainNav .nav-links li a {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 5px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  #mainNav .nav-links {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    padding: 10px 20px;
    flex-direction: row;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }
}

/* =============================
   Project Slider
============================= */

.simple-slider.project-slider {
  position: relative;
  width: 100%;
  padding: 10px 0 30px;
  overflow: visible !important;
}

.simple-slider.project-slider .slider-track-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 5px;
}

.simple-slider.project-slider .slider-track {
  display: flex;
  gap: 15px;
  margin-left: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.simple-slider.project-slider .slide {
  flex: 0 0 calc((100% - 30px) / 3);
  min-width: calc((100% - 30px) / 3);
  max-width: calc((100% - 30px) / 3);
}

.simple-slider.project-slider .project {
  display: block;
  overflow: hidden;
  height: 100%;
  background: var(--lodha-blue);
  border: 2px solid var(--lodha-blue);
  color: var(--lodha-white);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-slider.project-slider .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.simple-slider.project-slider .inner-content-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--lodha-white);
  font: bold 1.1em Montserrat, sans-serif !important;
}

.simple-slider.project-slider .inner-content-head h3 {
  margin: 0;
  padding: 0 0 4px;
  color: var(--lodha-white);
  border-bottom: 2px solid var(--lodha-white);
  font-size: 16px;
  line-height: 1.35;
  text-transform: uppercase;
}

.simple-slider.project-slider .inner-content-head svg,
.simple-slider.project-slider .arrow-logo {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  color: var(--lodha-white);
}

.simple-slider.project-slider .project p {
  margin: 0 0 10px;
  padding: 0 10px;
  color: var(--lodha-white);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.simple-slider.project-slider .img-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  contain: layout style;
}

.simple-slider.project-slider .img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.simple-slider.project-slider .img-section:hover img {
  transform: scale(1.1);
}

.simple-slider.project-slider .dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 20px;
  margin-top: 25px;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.simple-slider.project-slider .dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-slider.project-slider .dots span:hover {
  background: #666;
  transform: scale(1.2);
}

.simple-slider.project-slider .dots span.active {
  background: var(--lodha-blue);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(15, 52, 100, 0.3);
}

.simple-slider.project-slider .slider-prev,
.simple-slider.project-slider .slider-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  padding: 15px 18px;
  border: none;
  border-radius: 5px;
  background: rgba(15, 52, 100, 0.8);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
}

.simple-slider.project-slider .slider-prev {
  left: -15px;
}

.simple-slider.project-slider .slider-next {
  right: -15px;
}

.simple-slider.project-slider .slider-prev:hover,
.simple-slider.project-slider .slider-next:hover {
  background: rgba(15, 52, 100, 1);
}

@media (max-width: 1024px) {
  .simple-slider.project-slider .slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .simple-slider.project-slider .slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .simple-slider.project-slider .img-section {
    height: 300px;
  }

  .simple-slider.project-slider .inner-content-head {
    padding: 8px 10px;
  }

  .simple-slider.project-slider .inner-content-head h3 {
    font-size: 14px;
  }

  .simple-slider.project-slider .project p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .simple-slider.project-slider .img-section {
    height: 250px;
  }
}

/* =============================
   Footer
============================= */

footer {
  background: var(--lodha-cream);
}

footer hr {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(15, 52, 100, 0.12);
}

.footer-links {
  background-color: var(--lodha-cream);
  padding: 20px;
}

.footer-links a {
  color: var(--lodha-text-dark);
  text-decoration: none;
}

.footer-section {
  border-bottom: 1px solid rgba(15, 52, 100, 0.18);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-title {
  position: relative;
  padding: 10px 0;
  color: var(--lodha-blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-title::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 20px;
}

.footer-section.active .footer-title::after {
  content: "-";
}

.footer-content {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
}

.footer-section.active .footer-content {
  display: flex;
}

.footer-content span,
.footer-content span a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-content span img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.footer-content a {
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-content a:hover,
.footer-links-right a:hover {
  color: var(--lodha-blue);
}

.footer-copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px 20px;
  background: var(--lodha-blue);
}

.footer-copyright-text {
  color: var(--lodha-white);
  font-size: 13px;
  text-align: left;
}

.footer-links-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links-right a {
  color: var(--lodha-white);
  font-size: 13px;
  text-decoration: none;
}

@media (min-width: 767px) {
  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin: 0 auto;
    padding: 60px;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title {
    margin-bottom: 10px;
    border-bottom: 2px solid var(--lodha-blue);
    padding-bottom: 10px;
  }

  .footer-title::after {
    display: none;
  }

  .footer-section {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .footer-copyright-bar {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-copyright-text {
    text-align: center;
  }

  .footer-links-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Mobile fixed footer */

@media only screen and (max-width: 600px) {
  .fix-footer {
    display: flex !important;
  }

  .footer-copyright-bar {
    margin-bottom: 72px;
  }
}

.fix-footer {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  background: var(--lodha-blue-dark);
  border-top: 2px solid var(--lodha-blue);
}

.fix-footer p {
  flex: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fix-footer p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--lodha-white) !important;
  text-decoration: none;
}

.fix-footer p a span {
  color: var(--lodha-white);
  font-size: 12px;
  font-weight: 500;
}

.fix-footer img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
