/* *************************************MASTER CSS AND HOME PAGE************************************* */

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
}



:root{
--charcoal:#2c2c2c;
--light:#f8f8f8;
}

body{
font-family:'Poppins',sans-serif;
}

.navbar{
background:#fff;
box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

.navbar-nav .nav-link{
color:#333;
margin-left:20px;
font-weight:500;
}

.navbar-nav .nav-link:hover{
color:var(--charcoal);
}

/* Navbar Logo */
.navbar-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Premium Button Style */
.btn-quote {
  background-color: #3a3a3a;   /* lighter than charcoal */
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-quote:hover {
  background-color: #1f1f1f;   /* darker on hover */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  color: #fff !important;
}

.btn-quote::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: 0.6s;
}

.btn-quote:hover::after {
  left: 100%;
}

.hero{
height:100vh;
background:url('../img/showroom-banner.jpg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
color:#fff;
}

.hero::before{
content:"";
position:absolute;
top:0;left:0;
width:100%;height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.section-padding{
padding:100px 0;
}

.section-title{
font-size:36px;
font-weight:600;
margin-bottom:60px;
}

.service-card{
padding:40px;
border:none;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.3s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
}

.project-item{
position:relative;
overflow:hidden;
}

.project-item img{
width:100%;
transition:0.4s;
}

.project-item:hover img{
transform:scale(1.1);
}

.project-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.7);
color:#fff;
padding:15px;
text-align:center;
}

.brand-slider{
overflow:hidden;
white-space:nowrap;
}

.brand-slider img{
height:80px;
margin:0 50px;
opacity:0.6;
transition:0.3s;
}

.brand-slider img:hover{
opacity:1;
}

.brand-track{
display:inline-block;
animation:scroll 25s linear infinite;
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.footer{
background:var(--charcoal);
color:#fff;
padding:40px 0;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
z-index:999;
}

.feature-box{
padding:30px;
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-8px);
}

.feature-icon{
font-size:40px;
color:var(--charcoal);
margin-bottom:20px;
}

.testimonial-box{
max-width:700px;
margin:auto;
padding:40px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.product-card{
padding:20px;
background:#fff;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.product-card img{
border-radius:5px;
}

.product-card:hover{
transform:translateY(-8px);
}

.testimonial-section{
background:linear-gradient(135deg,#2c2c2c,#1e1e1e);
color:#fff;
}

.testimonial-link{
text-decoration:none;
color:inherit;
display:block;
}

.glass{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
border-radius:12px;
padding:40px;
max-width:700px;
margin:auto;
transition:0.3s;
}

.glass:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.15);
}

.stars i{
color:#ffd700;
margin:0 3px;
}

.carousel-indicators [data-bs-target]{
background-color:#fff;
}



/* HOME PAGE PATCHES */



/* Product Carousel Indicators */
#productCarousel .carousel-indicators [data-bs-target]{
background-color:#2c2c2c;
width:10px;
height:10px;
border-radius:50%;
}

#productCarousel .carousel-indicators{
position: relative;
margin-top: 20px;
}

/* Fix Product Image Size */
.product-card img{
height:250px;
width:100%;
object-fit:cover;
border-radius:8px;
}

/* Smooth carousel height */
#productCarousel .carousel-inner{
transition:height 0.4s ease;
}

#productCarousel .carousel-item{
min-height:420px;
}

/* Ensure consistent project image size */
.project-item img{
  width:100%;
  height:300px;          /* fixed height */
  object-fit:cover;      /* prevents distortion */
  display:block;
}

/* Prevent abrupt layout shift */
#projectGrid{
  min-height:360px;
  transition:all 0.4s ease;
}

.project {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Fade Out */
.hide-project {
  opacity: 0;
  transform: scale(0.95);
}

/* Fade In Pop */
.show-project {
  opacity: 1;
  transform: scale(1);
}

.filter-btn.active-filter {
  background-color: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

/* ***************Prevent abrupt layout shift in Products Filterable section*************** */
#productFilterGrid {
  min-height: 360px;
  transition: all 0.4s ease;
}

.product-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Fade Out */
.hide-product {
  opacity: 0;
  transform: scale(0.95);
}

/* Fade In Pop */
.show-product {
  opacity: 1;
  transform: scale(1);
}

.product-item.mx-auto {
  float: none;
}

/* FORCE SAME SIZE – PRODUCT FILTER GRID */

#productFilterGrid .product-hover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

#productFilterGrid .product-hover img {
  width: 100%;
  height: 320px;        /* fixed height */
  object-fit: cover;    /* prevents distortion */
  border-radius: 10px;
  display: block;
}

/* =====================================
   PRODUCT BRAND HOVER OVERLAY
===================================== */

#productFilterGrid .product-hover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* Overlay Base */
.brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Brand Text */
.brand-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

/* Hover Effect */
.product-hover:hover .brand-overlay {
  opacity: 1;
}

.product-hover:hover .brand-content {
  transform: translateY(0);
}


/* *************************************CONTACT PAGE************************************* */


.address-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition: 0.3s ease;
}

.address-box:hover {
  transform: translateY(-5px);
}

.address-box i{
font-size:40px;
color:var(--charcoal);
}

.map-container iframe{
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-form .form-control{
padding:12px;
border-radius:6px;
}

.review-badge{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-small {
  height: 60vh;
}

.whatsapp-btn {
  background-color: #25D366;
  border: none;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/*Patches*/

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#formMessage {
  font-weight: 500;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.spinner-border {
  vertical-align: middle;
}

/*Linking SEO Page for Google Search promotion*/

.seo-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s ease;
}

.seo-link:hover {
  color: #ddd;
}

/*Footer Styling for SEO*/

.footer {
  background: #2c2c2c;
  color: #fff;
  padding: 60px 0 30px;
}

.footer h5 {
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer hr {
  border-color: rgba(255,255,255,0.1);
}

/* ===============================
   PROFESSIONAL RESPONSIVE NAVBAR
================================ */

.custom-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1350px;   /* increased from 1200px */
  margin: auto;
  padding: 15px 10px;  /* reduced side padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-logo span {
  font-weight: 600;
  font-size: 18px;
  color: #2c2c2c;
}

/* Desktop Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #000;
}

/* Simple Hamburger / Cross Toggle */

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  user-select: none;
}

.hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s ease;
}

.close-icon {
  opacity: 0;
}

/* Active state */
.hamburger.active .menu-icon {
  opacity: 0;
}

.hamburger.active .close-icon {
  opacity: 1;
}

/* Show hamburger only when collapsed */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* Mobile Slide Menu - Fully Glass */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;

  background: rgba(250,250,250,0.88);  /* translucent but NO blur */
  /* backdrop-filter removed */

  border-right: 1px solid rgba(0,0,0,0.05);

  padding: 90px 30px;
  transition: 0.35s ease;
}

.nav-menu.active {
  left: 0;
}

.nav-menu.active {
  left: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu ul li {
  margin-bottom: 20px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 17px;
  font-weight: 500;
}
