body {
      font-family: Arial, sans-serif;
      background-color: #fff;
    }
  .navbar {
  background-color: #eee;
      font-family: 'system-ui', 'sans-serif';
}

.navbar .nav-link,
.navbar-brand,
.dropdown-item {
  color: #000 !important;
  font-weight: 600;
}
.navbar-brand img {
    max-height: 50px; /* adjust logo size */
    width: auto;
}
.navbar .nav-link:hover,
.dropdown-item:hover {
  color: #FFD700 !important;
  font-weight: 600;
}

.navbar-brand span {
  color: #FFD700;
}

/* Optional: make dropdowns look nicer */
.dropdown-menu {
  border: none;
  background-color:#eee;
}

.dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
}

/* Hover dropdown */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove gap */
    transition: all 0.3s ease;
}

/* Optional: smooth fade-in */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}


    /* Hero Slider */
    .slider-section .item {
      position: relative;
    }
    .slider-section img {
      height: 600px;
      width: 100%;
      object-fit: cover;
    }
    .slider-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
    }
    .slider-content h1 {
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }
    .slider-content .btn {
      margin-top: 20px;
      background: #FFD700;
      border: none;
      font-weight: bold;
      color: #000;
      padding: 12px 25px;
    }
    /* Completed Works */
    .section-title {
      text-align: center;
      margin: 60px 0 20px;
      font-size: 2.5rem;
      font-weight: bold;
      color: #000;
    }
    .section-title span {
      color: #FFD700;
    }
    .section-subtitle {
      text-align: center;
      margin-bottom: 40px;
      color: #666;
    }
    .completed-works .card {
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      height: 100%;
    }
    .completed-works .card:hover {
      transform: translateY(-5px);
    }
    .badge-category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #FFD700;
      color: #000;
      font-weight: bold;
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 0.8rem;
    }
	
	.card .btn:hover{
		background-color:#FFD700 !important;
		border-color:#FFD700 !important;
	}
	
    .cta-section {
      text-align: center;
      margin: 50px 0;
    }
    .cta-section .btn {
      background: #FFD700;
      border: none;
      font-weight: bold;
      color: #000;
      padding: 14px 30px;
      font-size: 1.1rem;
    }
    footer {
      background: #000;
      color: #FFD700;
      text-align: center;
      padding: 15px 0;
    }
	
	/* Pagination styles */
.pagination .page-item .page-link {
  color: #000;              /* text color */
  border: 1px solid #FFD700; /* border matches theme yellow */
  margin: 0 4px;
  border-radius: 8px;
}

.pagination .page-item.active .page-link {
  background-color: #FFD700; /* theme yellow */
  border-color: #FFD700;
  color: #000;               /* black text */
}

.pagination .page-item .page-link:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #000;
}

.project-details{
	background-attachment: fixed;   
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover; 
}

/* Hero Section */
.project-hero {
  position: relative;
  height: 100vh;
}


.project-hero .overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* black overlay */
  z-index: 1;
}

.project-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 1px #000000;
}

/* Content below hero */
.project-content {
  background: #fff;
  position: relative;
  z-index: 5;
  width: 100%;
}

.project-video iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}

form input, .form-control{
	border-radius: 0 !important;
    padding: 10px !important;
    font-size: 1.2rem !important; 
    border-color: #ffd7008c !important;
	box-shadow:none !important;
	}
input[type=submit]{
	background: #FFD700 !important;
}


.project_thumbnail{
	height:225px !important;
	object-fit: cover !important;
}