/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fb;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: absolute; /* floats on top of banner */
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25); /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}
.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #8c0001;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}
/* ================= MOBILE & TABLET HEADER FIX ================= */

.menu-toggle{
  display:none;
}

/* Mobile + Tablet */
@media (max-width:1024px){

  header{
    position:relative;
    background:#fff;
  }

  .header-flex{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    height:65px !important;
    padding:0 8px !important;   /* left right gap reduce */
  }
  /* Logo left */
  .logo{
    margin:0;
  }

  .logo img{
    height:45px;
  }

  /* Hide desktop menu */
  nav{
    display:none;
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    text-align:center;
 box-shadow:0 8px 20px rgba(0,0,0,0.1);
  }

  nav a{
    padding:14px;
    border-bottom:1px solid #eee;
  }

  /* Show menu when toggle click */
  nav.show{
    display:flex;
  }

  /* Hide connect button */
  .btn-header{
    display:none;
  }

  /* Toggle right side */
  .menu-toggle{
    display:block;
    font-size:26px;
    color:#8b0000;
 cursor:pointer;
    margin:0;
  }

}
/* ================= PROJECT DROPDOWN ================= */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Projects main link */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

/* SUBMENU */
.nav-submenu {
  position: absolute;

  top: 100%;
  left: 50%;

  transform: translateX(-50%) translateY(12px);

  width: 210px;

  background: #ffffff;
  padding: 8px;

  border-radius: 12px;

  box-shadow: 0 12px 35px rgba(0,0,0,0.15);

  /* IMPORTANT */
  display: block;
  opacity: 0;
 visibility: hidden;
  pointer-events: none;

  z-index: 99999;

  transition: all 0.3s ease;
}
/* submenu links */
.nav-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;

  padding: 11px 14px;

  color: #8c0001 !important;

  font-size: 14px !important;
  font-weight: 600;

  border-radius: 8px;

  white-space: nowrap;
}


/* remove nav underline */
.nav-submenu a::after {
  display: none !important;
}
/* icons */
.nav-submenu a i {
  width: 20px;
  text-align: center;
  color: #8c0001;
}


/* hover item */
.nav-submenu a:hover {
  background: #8c0001;
  color: #ffffff !important;
}
.nav-submenu a:hover i {
  color: #ffffff;
}


/* SHOW DROPDOWN ONLY ON HOVER */
@media (min-width: 1025px) {

  .nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(8px);
  }

  .nav-dropdown:hover .nav-dropdown-link i {
    transform: rotate(180deg);
  }
}
/* =====================================================
   PROJECT DROPDOWN - MOBILE
===================================================== */

@media (max-width: 1024px) {

  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-link {
    width: 100%;
    justify-content: center;
  }

  .nav-submenu {
    position: static;

    width: 100%;
    padding: 0;

    background: #f8f8f8;

    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    display: none;
  }
.nav-dropdown.open .nav-submenu {
    display: block;
  }
.nav-submenu a {
    justify-content: center;

    padding: 11px 15px !important;

    border-bottom: 1px solid #eeeeee;

    font-size: 14px !important;
  }

  .nav-dropdown.open .nav-dropdown-link i {
    transform: rotate(180deg);
  }
}


/* =====================================================
   PROJECT PAGE BANNER - FINAL
===================================================== */

.banner-section {
  width: calc(100% - 50px);
  max-width: 1900px;
  height: 820px;

  margin: 0 auto 55px;

  background-image: url('../images/Project Page banner img.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  position: relative;
  overflow: hidden;

  border-radius: 0;
  box-shadow: none;
}
/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

  .banner-section {
    width: calc(100% - 30px);
    height: 520px;

    margin: 0 auto 40px;

    background-image: url('../images/project banner mobile.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .btn-banner {
    padding: 10px 22px;

    font-size: 14px;
  }
}
/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

  .banner-section {
    width: calc(100% - 20px);
    height: 390px;

    margin: 0 auto 30px;

    background-image: url('../images/project banner mobile.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .banner-content h1 {
    font-size: 27px;
  }

  .banner-content p {
    font-size: 15px;
  }
}
/* ================= MOBILE + TABLET NAV ================= */
@media (max-width: 1024px) {

  /* Hide Top Bar */
  .top-bar {
    display: none !important;
  }

 } 
/* ================= PROJECT STRIP ================= */
.project-strip {
  width: 100%;
  padding: 80px 40px;
  position: relative;
  background-color: #f8f9fb;
  background-image: url('../images/sectionbgimg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.project-strip > * {
  position: relative;
  z-index: 1;
}
/* ================= UPDATED HEADER DESIGN ================= */
.project-header {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.project-header .bg-text {
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(140, 0, 1, 0.25);
  letter-spacing: 4px;
  margin: 0;
  line-height: 1;
}

.project-header .main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 42px;
  font-weight: 700;
  color: #8c0001;
  margin: 0;
}

/* Responsive heading */
@media (max-width: 1200px) {
  .project-header .bg-text {
    font-size: 90px;
  }

  .project-header .main-text {
    font-size: 34px;
  }
}
/* ================= CARDS ================= */
.project-cards-wrap {
  width: 100%;
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* ================= TABS ================= */
.project-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: -20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  color: #8c0001;
  border: 1.5px solid #8c0001;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #8c0001;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(140, 0, 1, 0.15);
}
.tab-content {
  display: none;
  width: 100%;
}

.tab-content.active {
  display: block;
}
/* ================= CARD ================= */
.strip-card {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: flex 0.55s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.project-cards-wrap:has(.strip-card:hover) .strip-card img {
  filter: grayscale(100%);
}

.project-cards-wrap:has(.strip-card:hover) .strip-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.strip-card:hover {
  flex: 1.35 1 0;
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.strip-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 16px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  color: #ffffff;
  z-index: 2;
  transition: 0.4s ease;
}

.strip-info h3 {
  font-size: 17px;
  font-weight: 600;
}

.strip-info p {
  font-size: 16px;
  opacity: 0.85;
  margin-top: 3px;
}

.strip-details {
  position: absolute;
  left: 0;
  bottom: -170px;
  width: 100%;
  background: #8c0001;
  padding: 18px 16px;
  transition: 0.45s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
 flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.strip-details h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff7c5;
}

.strip-details span {
  display: block;
  font-size: 16px;
  margin: 6px 0;
  color: #fff7c5;
}

.strip-card:hover .strip-details {
  bottom: 0;
  opacity: 1;
  transform: translateY(0);
}

.strip-card:hover .strip-info h3,
.strip-card:hover .strip-info p {
  opacity: 0;
  transform: translateY(10px);
}

.commercial-wrap {
  justify-content: center;
}

.commercial-card {
  flex: 0 1 320px;
  max-width: 320px;
}
.commercial-card:hover {
  flex: 0 1 360px;
  max-width: 360px;
}

.strip-card {
  position: relative;
}
.sold-out-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: #a70809;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sold-out-card img {
  filter: grayscale(20%) brightness(0.85);
}
/* ================= HIDE DESKTOP IN MOBILE ================= */
@media (max-width: 991px) {
  .project-strip {
    display: none;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .project-strip-mobile {
    display: block;
    padding: 20px;
    background-color: #f8f9fb;
    background-image: url('../images/sectionbgimg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .project-header-mobile {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-text-mobile {
    order: 1;
    font-size: 24px;
    font-weight: 700;
    color: #8c0001;
    margin-bottom: -8px;
  }

  .bg-text-mobile {
    order: 2;
    font-size: 40px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(140, 0, 1, 0.33);
    margin: 0;
    letter-spacing: 2px;
  }
.mobile-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 20px;
  }

  .project-strip-mobile .mobile-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
  }

  .project-strip-mobile .mobile-card img {
    width: 170px;
    height: 190px;
    object-fit: cover;
  }

  .project-strip-mobile .mobile-info {
    padding: 12px 16px;
  }

  .project-strip-mobile .mobile-info h3 {
    font-size: 16px;
    color: #8c0001;
  }

  .project-strip-mobile .mobile-info p {
    font-size: 14px;
  }

  .project-strip-mobile .mobile-info span {
    font-size: 13px;
  }
}
.strip-card,
.mobile-card {
  position: relative;
}

.sold-out-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: #a70809;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sold-out-card img {
  filter: grayscale(20%) brightness(0.85);
}

/* ================= HIDE MOBILE IN DESKTOP ================= */
@media (min-width: 992px) {
  .project-strip-mobile {
    display: none;
  }
}
/* ================= FOOTER ================= */

.footer {
  width: 100%;
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
/* 🔹 FIX ADDED HERE */
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
  text-decoration: none;   /* Removes underline */
}
.footer-col ul li a:hover {
  color: #fff7c5;
  padding-left: 4px;
}

/* Logo */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* About text */
.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  font-family: Arial, sans-serif;
}

/* Business info */
.footer-info li {
  opacity: 0.9;
}
/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
/* ================= VELAVAN FLOATING BUTTONS + CHATBOT ================= */

/* Dialogflow host */
#vpDfMessenger {
  --df-messenger-button-titlebar-color: #8c0000;
  --df-messenger-chat-background-color: #ffffff;
  --df-messenger-font-color: #222;
  --df-messenger-send-icon: #8c0000;
  --df-messenger-chat-icon: none;

  position: fixed !important;
  right: 20px !important;
  bottom: 95px !important;
  z-index: 99999 !important;
}

/* COMPLETELY hide Dialogflow default launcher */
#vpDfMessenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}
df-messenger::part(chat-button) {
  display: none !important;
}

/* Desktop buttons */
.vp-desktop-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 100000;
}
.vp-action-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform 0.25s ease;
}

.vp-action-btn:hover {
  transform: scale(1.08);
}

.vp-whatsapp { 
  background: #25D366; 
}

.vp-call { 
  background: #0d6efd; 
}
.vp-chat { 
  background: #b30000; 
}

.vp-chat i,
.vp-mobile-bar-item i {
  pointer-events: none;
}
/* Mobile bottom bar hidden in desktop */
.vp-mobile-bottom-bar {
  display: none;
}

#vpChatToggleBtn,
#vpMobileChatToggleBtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* ================= MOBILE + TABLET ================= */

@media (max-width: 1024px) {

  /* Hide desktop floating buttons */
  .vp-desktop-actions {
    display: none !important;
  }

  /* Mobile bottom bar */
  .vp-mobile-bottom-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: calc(100% - 24px);
    max-width: 360px;
    background: #c61f26;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
    z-index: 100002;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px 8px calc(4px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }
 .vp-mobile-bar-item {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
  }
 .vp-mobile-chat {
    background: #c61f26;
    
  }

  /* Dialogflow chat position in mobile */
  #vpDfMessenger {
    right: 10px !important;
    bottom: 125px !important;
    z-index: 99999 !important;
  }
}

/* Hide Dialogflow default launcher completely */
df-messenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}

df-messenger-button {
  display: none !important;
}

/* Prevent any default bubble appearing */
df-messenger {
  --df-messenger-chat-icon: none !important;
}
.mobile-only-social {
  display: none;
}

@media (max-width: 576px) {
  .mobile-only-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
  }
  .mobile-only-social a {
    width: 38px;
    height: 38px;
    background: #8c0001;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease;
  }

  .mobile-only-social a:hover {
    background: #c62828;
    transform: scale(1.08);
  }
}
/* ==================================================
   PROJECT PAGE FINAL FIXES
================================================== */

.footer {
  width: 100%;
  margin-top: 0 !important;
}

.footer-about {
  font-family: Arial, sans-serif !important;
}



.enquiry-section {
  padding-bottom: 50px;
}
