

/* TRANSPARENT NAVBAR BY DEFAULT */
.custom-navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 6px 0;
}

/* LOGO SIZE */
.navbar-logo {
  height: 60px;
  width: auto;
}

/* NAV LINKS LEFT & CLEAN */
.navbar-nav {
  align-items: center;
}

.navbar-dark .nav-link {
  padding: 6px 14px;
  font-family: Poligon Regular;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
/* Navbar links zoom animation */
.navbar-nav .nav-link{
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 15px;                 /* optional */
}

/* Hover effect */
.navbar-nav .nav-link:hover{
  transform: scale(1.15);
  color: #ffffff;                  /* color optional */
}

.navbar-nav{
  align-items: center;
}

.navbar-nav .nav-item{
  padding: 0 6px;
}

@media (max-width: 768px){
  .navbar-nav .nav-link:hover{
    transform: none;
  }
}
.hero-section{
  margin-bottom: 0;
  padding-bottom: 0;
}

/* SCROLL PE BLACK */
.custom-navbar.scrolled {
  background: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  color:#000;
}
.career-hero picture,
.career-hero img{
  width: 100%;
  height: 100%;
  display: block;
}

/* Image behaviour (same as About Us) */
.career-hero img{
  object-fit: cover;
  object-position: center top;    /* 🔥 mobile friendly */
}


.projects-content {
  padding: 40px 60px;
}

.projects-content h1 {
  font-size:48px;
  margin-bottom:20px;
  font-weight: 500;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing"; 
}

.projects-content p {
  font-size: 20px;
  line-height: 1.7;
  text-align: justify; 
  margin-bottom:25px;
  font-family: "Calibri", sans-serif;
}
@media (max-width: 992px) {
  .projects-content {
    padding: 35px 30px;
  }

  .projects-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .projects-content p {
    font-size: 17px;
    line-height: 1.6;
    text-align: left; /* better readability on tablets */
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .career-hero picture,
  .career-hero img {
    height: 70vh; /* prevents oversized hero */
  }

  .projects-content {
    padding: 30px 20px;
  }

  .projects-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .projects-content p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .career-hero picture,
  .career-hero img {
    height: 60vh;
  }

  .projects-content {
    padding: 25px 16px;
  }

  .projects-content h1 {
    font-size: 26px;
  }

  .projects-content p {
    font-size: 15px;
  }
}
/* Footer */
.footer{
  background:#000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
   color:#fff;
  padding:60px 80px 30px;
  font-family: Poligon Regular, sans-serif;
}

/* TOP */
.footer-top{
  display:flex;
  gap:80px;
  align-items:flex-start;
}

/* Columns */
.footer-col{
  text-align:left;
}

.footer-logo{
  max-width:160px;
  margin-bottom:20px;
}

.footer-col p{
  font-size: 20px;
  line-height:1.7;
  opacity:0.85;
}

/* Lists */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:12px;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
  font-size: 20px;
}

.footer-col a:hover{
  opacity:0.7;
}

/* Headings */
.footer-col h4{
  font-size: 20px;
  margin-bottom:18px;
  font-weight:500;
}

/* Social */
.social-icons a{
  margin-right:15px;
  font-size: 20px;
}

/* Bottom */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid #222;
  display:flex;
  justify-content:flex-end;
}    
.footer-bottom-right a{
  color:#fff;
  margin-left:20px;
  font-size:18px;
  text-decoration:none;
}
/* ================= POLICY POPUP OVERLAY ================= */

.policy-modal{
  position: fixed;
  inset: 0;
  display: none;                 /* JS se show/hide */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* ================= POPUP BOX ================= */

.policy-content{
  background: #fff;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;

  /* 🔥 Control heading–paragraph gap here */
  --hp-gap: 28px;
}

/* ================= HEADING ================= */

.policy-content h2{
  margin-bottom: var(--hp-gap);
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
}

/* ================= PARAGRAPH ================= */

.policy-content p{
  margin-top: 0;
  margin-bottom: 18px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ================= CLOSE BUTTON ================= */

.policy-close{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.policy-close:hover{
  color: #000;
}

/* ================= SCROLLBAR (OPTIONAL PREMIUM) ================= */

.policy-content::-webkit-scrollbar{
  width: 6px;
}

.policy-content::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
}

.policy-content::-webkit-scrollbar-track{
  background: transparent;
}
@media (max-width: 992px){

  /* NAVBAR */
  .navbar-logo{
    height: 48px;
  }

  .navbar-dark .nav-link{
    font-size:14px;
    padding:6px 10px;
  }

 

  /* FOOTER */
  .footer{
    padding:50px 40px 30px;
  }

  .footer-top{
    flex-wrap:wrap;
    gap:40px;
  }
}
@media (max-width: 600px){

  /* NAVBAR */
  .custom-navbar{
    padding:8px 0;
  }

  .navbar-logo{
    height:42px;
  }

  /* HERO */
  .career-hero{
    height:60vh; /* same as About Us */
  }

  .hero-content{
    left:20px;
    right:20px;
    bottom:40px;
    max-width:100%;
  }

  .hero-content h1{
    font-size:32px;
  }

  .hero-content p{
    font-size:16px;
  }

  /* SECTION SPACING */
  .career-section{
    padding:50px 20px;
  }

  /* TEXT SCALE */
  .career-left h2{
    font-size:30px;
  }

  .career-left p{
    font-size:18px;
    line-height:1.7;
  }

  /* FORM */
  .form-group{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .form-group .line{
    left:0;
    width:100%;
  }

  .enquire-btn{
    width:100%;
    text-align:center;
  }

  /* FOOTER */
  .footer{
    padding:40px 20px 25px;
  }

  .footer-top{
    flex-direction:column;
    gap:30px;
  }

  .footer-col p,
  .footer-col a{
    font-size:18px;
  }

  .footer-bottom{
    justify-content:center;
  }

  .footer-bottom-right a{
    font-size:16px;
    margin-left:12px;
  }
}
.project-filter-section{
  padding:80px 0;
  background:#f8f9fb;
}

.project-filter-section .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* Heading */
.project-filter-section .section-heading{
  font-size:42px;
  font-weight:500;
  margin-bottom:25px;
  text-align:left;
}

/* Tabs */
.property-tabs{
  display:flex;
  gap:18px;
  margin-bottom:25px;
}

.property-tabs .tab{
  padding:10px 24px;
  border-radius:30px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  font-size:15px;
  transition:.3s;
}

.property-tabs .tab.active,
.property-tabs .tab:hover{
  background:#000;
  color:#fff;
  border-color:#000;
}

/* Search Bar */
.search-bar{
  display:flex;
  align-items:center;
  gap:15px;
  background:#fff;
  padding:16px;
  border-radius:60px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.search-bar select,
.search-bar input{
  border:none;
  outline:none;
  font-size:15px;
  padding:10px;
  width:100%;
}

.search-bar select{ max-width:180px; }
.search-bar input{ flex:1; }

/* Search Button */
.search-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:#000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.search-btn:hover{ background:#333; }

.search-btn svg{ transition:.3s; }
.search-btn:hover svg{ transform:scale(1.1); }

/* Cards */
.category-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.category-card{
  position:relative;
  height:280px;
  overflow:hidden;
  border-radius:18px;
  text-decoration:none;
}

.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.category-card span{
  position:absolute;
  bottom:20px;
  left:20px;
  background:rgba(0,0,0,.65);
  color:#fff;
  padding:8px 20px;
  border-radius:30px;
  font-size:16px;
}

.category-card:hover img{
  transform:scale(1.12);
}

/* Responsive */
@media(max-width:900px){
  .search-bar{
    flex-wrap:wrap;
    border-radius:20px;
  }
  .search-bar select{
    max-width:100%;
  }
  .category-grid{
    grid-template-columns:1fr;
  }
}

/* Responsive*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow-x: hidden;
}

.container {
  width: 100%;
}
