 body{
      font-family: 'Poppins', sans-serif;
      color:#111;
    }

    #mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar {
  background: transparent;
  padding: 20px 0;
}

.navbar.scrolled {
  background: #000;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-item a {
  text-decoration: none;
  font-weight: 500;
  color: #fff !important;
  margin: 0 12px;
}

    /* HERO */
    .hero{
      min-height:90vh;
      background:url('img/banner.jpg') center/cover no-repeat;
      position:relative;
      display:flex;
      align-items:center;
    }
    .hero::before{
      content:'';
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.45);
    }
    .hero-content{
      position:relative;
      color:#fff;
      max-width:600px;
    }
    .form{
      z-index: 99;
    }
    .hero h1{
      font-size:3rem;
      font-weight:700;
    }
    .hero p{
      margin:20px 0;
      opacity:.9;
    }

    /* SECTION TITLE */
    .section-title{
      font-weight:700;
      margin-bottom:40px;
    }

    /* CATEGORY SECTION */
    .category-card{
      position:relative;
      overflow:hidden;
      border-radius:16px;
    }
    .category-card img{
      width:100%;
      transition:.5s;
    }
    .category-card:hover img{
      transform:scale(1.08);
    }
    .category-overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.4);
      display:flex;
      align-items:flex-end;
      padding:20px;
      color:#fff;
    }

    /* FEATURE BOX */
    .feature-box{
      background:#fff;
      border-radius:18px;
      padding:30px;
      box-shadow:0 20px 40px rgba(0,0,0,.08);
      height:100%;
    }

    /* GALLERY */
    .gallery img{
      border-radius:18px;
    }

    /* CTA */
    .cta{
      background:#000;
      color:#fff;
      padding:80px 0;
    }

    /* FOOTER */
    footer{
      background:#111;
      color:#bbb;
      padding:40px 0;
    }

    /* ===== Portfolio Parallax Section ===== */
.portfolio-parallax {
  position: relative;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    ),
    url("img/bg-p.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  padding: 100px 0;
  color: #ffffff;
}

/* Heading */
.portfolio-parallax h2 {
  color: #ffffff;
  font-size: 2.4rem;
  letter-spacing: 0.3px;
}

/* Paragraph text */
.portfolio-parallax p { 
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

/* Link styling */
.portfolio-parallax a {
  color: #3da9ff;
  transition: color 0.3s ease;
}

.portfolio-parallax a:hover {
  color: #ffffff;
  text-decoration: underline;
}

 

/* Mobile fix (parallax disabled for performance) */
@media (max-width: 768px) {
  .portfolio-parallax {
    background-attachment: scroll;
    padding: 70px 15px;
  }
}


/* Footer Styling */
.footer-section {
  background-color: #0f0f0f;
  padding: 25px 0;
  color: #bfbfbf;
  font-size: 14px;
}

.footer-section p {
  color: #bfbfbf;
}

/* Footer Menu */
.footer-menu li {
  margin: 0 6px;
}

.footer-menu a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
  .footer-menu li {
    display: inline-block;
    margin: 4px 6px;
  }
}
/* Inner Page Header */
.inner-page-header {
  position: relative;
  height: 320px;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("img/bg-p.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Page Title */
.page-title {
  margin-top: 100px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb-wrap {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 14px;
}

.breadcrumb-wrap a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-wrap span {
  margin: 0 6px;
  color: #e0e0e0;
}

.breadcrumb-wrap .active {
  color: #ffb37b;
}

/* Mobile */
@media (max-width: 768px) {
  .inner-page-header {
    height: 260px;
  }

  .page-title {
    font-size: 30px;
  }

  .breadcrumb-wrap {
    left: 15px;
    bottom: 15px;
  }
}
