/* ==================================================
   B3 Constructions - Main Stylesheet
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary-blue: #0056b3;
  --primary-blue-hover: #004494;
  --accent-red: #d9534f;
  --accent-red-hover: #c9302c;
  --black: #111111;
  --dark-gray: #333333;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-gray: #666666;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --transition: all 0.3s ease-in-out;
}

/* --- Global Reset & Typography --- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  color: var(--text-gray);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: 80px; /* Offset for fixed navbar on inner pages */
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: var(--transition);
}
a:hover {
  color: var(--accent-red);
}
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,86,179,0.3);
}
.btn-secondary {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-secondary:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(217,83,79,0.3);
}
.section-padding {
  padding: 80px 0;
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
}
.section-title p {
  color: var(--text-gray);
  max-width: 700px;
  margin: 15px auto 0;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  border: 5px solid var(--light-gray);
  border-top: 5px solid var(--primary-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- Page Header (Inner Pages) --- */
.page-header {
  position: relative;
  background-image: url('../images/pages.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 90px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  animation: headerFadeIn 0.8s ease-out both;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 70, 0.65) 0%,
    rgba(17, 17, 17, 0.55) 50%,
    rgba(180, 30, 30, 0.45) 100%
  );
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red), var(--primary-blue));
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
@keyframes headerFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}
.breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a {
  color: var(--primary-blue);
}
.breadcrumb-item.active {
  color: var(--light-gray);
}

/* --- Top Info Bar --- */
.top-bar {
  background: linear-gradient(135deg, #0a0a1a 0%, #111827 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: var(--body-font);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.top-bar-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-info li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.top-bar-info li i {
  color: var(--accent-red);
  font-size: 0.78rem;
}
.top-bar-info li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-bar-info li a:hover {
  color: #fff;
}
.top-bar-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.top-bar-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  transition: all 0.25s ease;
}
.top-bar-social li a:hover {
  background: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 15px 0;
}
.navbar.transparent-home {
  background: transparent;
  box-shadow: none;
  position: absolute;
  width: 100%;
  z-index: 1030;
}
.navbar.transparent-home .nav-link,
.navbar.transparent-home .navbar-brand {
  color: var(--white) !important;
}
.navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1030;
}
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: var(--black) !important;
}
.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black) !important;
}
.navbar-brand span {
  color: var(--primary-blue);
}
.nav-link {
  color: var(--black) !important;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-blue) !important;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-red);
  transition: var(--transition);
}
.nav-link:hover::before, .nav-link.active::before {
  width: 100%;
}

/* --- Dropdown Customization (Hover) --- */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 8px 0;
  margin-top: 0;
  border-top: 3px solid var(--accent-red);
  /* Hide by default, show on hover */
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }
  /* Prevent Bootstrap from toggling via JS on desktop hover items */
  .nav-item.dropdown > .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
  .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.dropdown-item {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 22px;
  color: var(--dark-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-item i {
  color: var(--primary-blue);
  font-size: 0.8rem;
  width: 14px;
}
.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(0, 86, 179, 0.06);
  color: var(--primary-blue);
  padding-left: 28px;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--primary-blue);
  color: var(--white);
}
.dropdown-divider {
  margin: 5px 0;
  border-color: #eee;
}

/* --- Hero Slider Section (Home) --- */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  margin-top: -80px; /* Counteract body padding on home */
}
.hero-section .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover !important;
  background-position: center !important;
}
.hero-section .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  color: var(--white);
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #dddddd;
  max-width: 600px;
}

/* --- Stats Counter --- */
.stats-section {
  background-color: var(--primary-blue);
  padding: 50px 0;
  color: var(--white);
}
.stat-box {
  text-align: center;
}
.stat-box i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-red);
}
.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--white);
}
.stat-box p {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

/* --- About Us --- */
.about-img-wrapper {
  position: relative;
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--accent-red);
  z-index: -1;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.about-features li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
}
.about-features i {
  color: var(--primary-blue);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --- Timeline (About Page) --- */
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--primary-blue);
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 3px solid var(--white);
}
.timeline-date {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

/* --- Team (About Page) --- */
.team-member {
  text-align: center;
  margin-bottom: 30px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
}
.team-member:hover {
  transform: translateY(-10px);
}
.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.team-info {
  padding: 20px;
}
.team-info h4 {
  margin-bottom: 5px;
}
.team-info p {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--light-gray);
  color: var(--dark-gray);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* --- Services --- */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 5px;
  transition: var(--transition);
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-bottom: 4px solid transparent;
  height: 100%;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-bottom-color: var(--primary-blue);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-blue);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: var(--white);
}

/* --- Projects / Gallery --- */
.filter-buttons {
  text-align: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--dark-gray);
  padding: 8px 20px;
  margin: 0 5px;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition);
}
.filter-btn:hover::after, .filter-btn.active::after {
  width: 100%;
}
.filter-btn.active {
  color: var(--primary-blue);
}
.project-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
}
.project-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 86, 179, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.project-item:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}
.project-item:hover img {
  transform: scale(1.1);
}
.project-info h4 {
  color: var(--white);
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition);
}
.project-info p {
  color: var(--light-gray);
  transform: translateY(20px);
  transition: var(--transition);
}
.project-item:hover .project-info h4,
.project-item:hover .project-info p {
  transform: translateY(0);
}
.project-zoom {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
  transform: translateY(-20px);
  transition: var(--transition);
}
.project-item:hover .project-zoom {
  transform: translateY(0);
}
.project-zoom:hover {
  color: var(--accent-red);
}

/* --- Why Choose Us --- */
.why-us-section {
  background: var(--black);
  color: var(--white);
}
.why-us-section .section-title h2 {
  color: var(--white);
}
.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-right: 20px;
}
.feature-content h4 {
  color: var(--white);
  font-size: 1.2rem;
}
.feature-content p {
  color: #aaaaaa;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 15px;
  border-left: 4px solid var(--primary-blue);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-gray);
}
.rating i {
  color: #ffc107;
}
.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.client-info h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}
.client-info p {
  color: var(--accent-red);
  font-size: 0.9rem;
  margin: 0;
}
.swiper-pagination-bullet-active {
  background: var(--primary-blue) !important;
}

/* --- FAQ --- */
.accordion-item {
  border: 1px solid #eee;
  margin-bottom: 15px;
  border-radius: 5px !important;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--black);
  padding: 20px;
  background: var(--light-gray);
}
.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary-blue);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-body {
  padding: 20px;
  color: var(--text-gray);
}

/* --- Blog --- */
.blog-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-content {
  padding: 25px;
}
.blog-date {
  color: var(--accent-red);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}
.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.blog-title a {
  color: var(--black);
}
.blog-title a:hover {
  color: var(--primary-blue);
}
.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue);
}
.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}
.read-more:hover i {
  transform: translateX(5px);
}
/* Sidebar */
.sidebar-widget {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.sidebar-widget h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-blue);
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.sidebar-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar-list a {
  color: var(--text-gray);
}
.sidebar-list a:hover {
  color: var(--primary-blue);
}

/* --- Contact --- */
.contact-info-box {
  background: var(--primary-blue);
  color: var(--white);
  padding: 40px;
  border-radius: 5px;
  height: 100%;
}
.contact-item {
  display: flex;
  margin-bottom: 30px;
}
.contact-icon {
  font-size: 2rem;
  color: var(--accent-red);
  margin-right: 20px;
}
.contact-text h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.contact-text p, .contact-text a {
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.contact-form .form-control {
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}
.map-container {
  height: 450px;
  margin-top: 50px;
  border-radius: 5px;
  overflow: hidden;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--accent-red);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-banner .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
}
.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--accent-red);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: #aaaaaa;
  padding: 80px 0 20px;
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}
.footer-logo span {
  color: var(--primary-blue);
}
.footer-widget h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaaaaa;
}
.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}
.footer-social {
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
}
.footer-social a:hover {
  background: var(--primary-blue);
}
.newsletter-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  margin-bottom: 10px;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* --- Floating Buttons --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 4px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--black);
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

/* --- Melbourne Project Styles --- */
.melbourne-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.melbourne-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 83, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.project-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.melbourne-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.melbourne-title span {
    color: var(--accent-red);
}

.melbourne-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-style: italic;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 0.95rem;
}

.stat-pill i {
    color: var(--accent-red);
}

.ready-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #111;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.vastu-badge {
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}
