/* Highlight nav items */
.menu-link {
  transition: 0.3s;
  font-weight: 500;
}

.menu-link:hover,
.menu-link:focus,
.menu-link.active {
 
  color: #000 !important;
  border-radius: 6px;
  padding: 6px 12px;
}

/* Dropdown hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #ffeb3b;
  color: #000;
}



/* Make navbar links black and bold */
.navbar .nav-link {
    color: #000 !important;     /* Black */
    font-weight: 600 !important; /* Semi-bold */
    font-size: 16px;
}

/* Hover effect */
.navbar .nav-link:hover {
    color: #f1c40f !important;   /* Yellow hover */
}

/* Active page highlight */
.navbar .nav-link.active {
    color: #f1c40f ;   /* Yellow when active */
    font-weight: 700;
}

/* Dropdown menu item styling */
.dropdown-item:hover {
    background-color: #f1c40f !important;
    color: #000 !important;
}


/* 🔹 Hero Section Background */
.hero-section {
  height: 90vh;
  background: url('images/carousel-1.jpg') no-repeat center center/cover;
  position: relative;
}
.hero-sectionn {
  height: 50vh;
  background: url('images/carousel-1.jpg') no-repeat center center/cover;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay */
}
.hero-sectionn::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* Dark overlay */
    /* color: white; */
}

.hero-section .container {
  position: relative;
  z-index: 4;
}

.hero-sectionn .container {
  position: relative;
  z-index: 4;
}

/* Make image larger */
.about-img-wrapper img {
  width: 100%;
  height: 450px;        /* Increased height */
  object-fit: cover;    /* Keeps image beautiful */
  border-radius: 12px;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 40px;
  background: #ffc107;
  color: #000;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.experience-badge h3 {
  font-size: 32px;
  font-weight: 700;
}

.experience-badge p {
  font-size: 15px;
  margin: 0;
}


.services-fullrow-section .service-card {
  height: 400px; /* Adjust height as needed */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.services-fullrow-section .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-fullrow-section .service-card .overlay {
  z-index: 1;
}

.services-fullrow-section .service-card .card-content {
  z-index: 2;
}

.services-fullrow-section .service-card h5 {
  font-size: 1.25rem;
}

.services-fullrow-section .service-card p {
  font-size: 0.9rem;
}

.services-fullrow-section .service-card .btn {
  width: 120px;
}

.services-fullrow-section .service-card:hover {
  transform: translateY(-5px);
}

.construction-about-section {
  background-color: #f7f7f7;
}

.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.architecture-about-section {
  background-color: #f7f7f7;
}

.architecture-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}


.mechanical-about-section {
  background-color: #f7f7f7;
}

.mechanical-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.interior-about-section {
  background-color: #f7f7f7;
}

.interior-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.experience-badge {
  text-align: center;
  line-height: 1.2;
  padding-top: 18px;
}


.appointment-section {
  min-height: 100vh;
  background: url('images/appointment.jpg') no-repeat center center/cover;
  position: relative;
}

.appointment-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* Dark overlay */
}

.appointment-section .container {
  position: relative;
  z-index: 2;
}

.card {
  border: none;
}

/* Hero Section */
.testimonial-hero {
  height: 60vh;
  position: relative;
}

.testimonial-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.testimonial-hero .container {
  position: relative;
  z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fff;
  border: none;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #f1c40f;
}
