:root {
  --primary-color: #F59E0B;
  /* Golden yellow */
  --text-color: #ffffff;
  /* White for text and links */
  --hover-color: #f4d35e;
  /* Lighter golden yellow on hover */
  --border-color: #d4af37;
  /* Same golden color for borders */
  --black-color: #000000;
  /* Black for text */
}

.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-hero-section {
  background-color: #eeca56;
  /* Use correct relative path */
  background-size: cover;
  background-position: center;
  height: 150px;
  /* Reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark transparent overlay */
  padding: 10px 20px;
  width: 100%;
  color: #fff;
  text-align: center;
}



/* Navbar */
.navbar-custom {
  background-color: var(--text-color);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: var(--black-color);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: var(--hover-color);
}

/* Underline animation */
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--hover-color);
  transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
  width: 100%;
}

/* Increase space between links */
.navbar-custom .navbar-nav {
  gap: 25px;
  /* Controls spacing between links */
}



/* Enquiry Button */
.btn-enquiry {
  background-color: var(--text-color);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-enquiry:hover {
  background-color: var(--hover-color);
  color: #fff;
}

/* Footer Link Styling */
/* Footer Link Base Style */
footer .footer-link {
  color: var(--text-color);
  /* Light white */
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* On Hover */
footer .footer-link:hover {
  color: var(--hover-color) !important;
  /* Light golden */
}


/* Social Icons Hover (Optional) */
footer a i:hover {
  color: var(--hover-color);
}




#heroCarousel .carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-color);
}

#heroCarousel .slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  max-width: 500px;
}

#heroCarousel .slide-title {
  font-size: 3rem;
  font-weight: bold;
}

#heroCarousel .slide-text {
  font-size: 1.2rem;
  margin: 15px 0;
}

#heroCarousel .slide-btn {
  border-color: var(--border-color);
  color: var(--text-color);
}

#heroCarousel .slide-btn:hover {
  background-color: var(--hover-color);
  color: var(--text-color);
}


/* Slide 3 Specific Hero */
.hero-slide {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('your-slide3-bg.jpg') no-repeat center center / cover;
  color: var(--text-color);
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-color);
}

.hero-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn:hover {
  background-color: var(--hover-color);
  color: var(--text-color);
}


:root {
  --primary-color: #d4af37;
  /* Golden yellow */
  --text-color: #ffffff;
  /* White for text and links */
  --hover-color: #f4d35e;
  /* Lighter golden yellow on hover */
  --border-color: #d4af37;
  --black-color: #000000;
}

.about-company {
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.about-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  border: 2px solid var(--border-color);
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.feature-list li {
  font-size: 1rem;
  color: var(--black-color);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 3px;
}

.about-btn {
  background-color: var(--primary-color);
  color: var(--black-color);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid var(--border-color);
  text-decoration: none;
  display: inline-block;
}

.about-btn:hover {
  background-color: var(--hover-color);
  color: var(--black-color);
}

.fixed-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.secondary-header .nav-link {
  color: #333;
  font-weight: 500;
}

.secondary-header .nav-link:hover {
  color: var(--hover-color);
}




.inspiration-section h2 {
  color: var(--black-color);
}

.view-all {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.view-all:hover {
  color: var(--hover-color);
}

.inspiration-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.inspiration-card img {
  width: 100%;
  height: auto;
  display: block;
}

.inspiration-card:hover {
  transform: translateY(-5px);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
}

.card-overlay span {
  color: var(--text-color);
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: bold;
}

.accordion-button:not(.collapsed)::after {
  content: '-';
  font-size: 1.5rem;
  color: #d4af37;
}

.custom-breadcrumb {
  text-align: center;
  /* Center text horizontally */
}

.custom-breadcrumb a {
  color: #000;
  padding: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Hover effect */
.custom-breadcrumb a:hover {
  color: #333;
  text-decoration: underline;
}

/* Optional: spacing between breadcrumb items */
.custom-breadcrumb span {
  padding: 0 5px;
}

.about-section {
  padding: 60px 0;

}

.brochures-card {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochures-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Make hamburger menu icon bold and dark */

.custom-toggler {
  padding: 6px;
  border: #d4af37 1px solid;
}

/* Mobile header background & padding */
@media (max-width: 991px) {
  .navbar-custom {
    background-color: #fff;
    /* Change to match theme */
    padding: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25D366;
}


.inspiration-card img {
  transition: transform 0.4s ease-in-out;
}

.inspiration-card:hover img {
  transform: scale(1.05);
}

.hover-opacity {
  transition: opacity 0.4s ease-in-out;
}

.inspiration-card:hover .hover-opacity {
  opacity: 1 !important;
}


.whyus-card {
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 15px;
}

.whyus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.whyus-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}


.process-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
}

.icon-wrapper i {
  line-height: 1;
}


body {
  padding-top: 70px; /* Adjust to match navbar height */
}

/* Dropdown menu */
.navbar .dropdown-menu {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  min-width: 200px;
  transition: all 0.3s ease;
}

.navbar .dropdown-item {
  padding: 0.6rem 1.2rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: #ffc107;
  color: #fff;
  border-radius: 0.25rem;
}

.navbar .dropdown-menu li + li {
  margin-top: 0.2rem;
}

/* Dropdown arrow */
.navbar .dropdown-toggle .dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.7rem;
  color: #ffc107;
}

/* Rotate arrow when dropdown is open */
.navbar .dropdown.show .dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}


