/* ================== GENERAL STYLES ================== */
body {
  font-family: 'Inter', Arial, sans-serif;
}

/* ================== NAVBAR ================== */
/*.navbar {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
  /*z-index: 9999;*/
  /*background: #fff !important;*/
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.navbar .navbar-brand,*/
/*.navbar .nav-link,*/
/*.navbar .dropdown-toggle {*/
/*  color: #000 !important;*/
/*  transition: color 0.2s;*/
/*}*/

/* Active Link Styling */
/*.nav-link.active {*/
/*  font-weight: bold;*/
/*  color: #000 !important;*/
/*  border-bottom: 2px solid #ff6600;*/
/*}*/
/*.navbar .nav-link.active,*/
/*.navbar .nav-link:hover,*/
/*.navbar .dropdown-item:hover,*/
/*.navbar .dropdown-item:focus {*/
/*  color: #ffd700 !important;*/
/*  border-bottom: 2px solid #ffd700;*/
/*  background: transparent;*/
/*}*/
/*.navbar .dropdown-menu {*/
/*  background: #181818;*/
/*  border: 1px solid #181818;*/
/*}*/
/*.navbar .dropdown-item {*/
/*  color: #fff;*/
/*}*/
/*.navbar .dropdown-item:hover {*/
/*  color: #ffd700;*/
/*  background: #181818;*/
/*}*/

/* Sticky Navbar: Black BG on scroll */
/*.navbar-scrolled {*/
/*  background-color: #000 !important;*/
/*  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
/*  transition: background 0.3s ease-in-out;*/
/*}*/
/*.navbar.navbar-scrolled {*/
/*  background: #000 !important;*/
/*}*/
/*.navbar.navbar-scrolled .navbar-brand,*/
/*.navbar.navbar-scrolled .nav-link,*/
/*.navbar.navbar-scrolled .dropdown-toggle {*/
/*  color: #fff !important;*/
/*}*/

/* Hamburger toggler styles */
.navbar-light .navbar-toggler {
  border-color: #000;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar.navbar-scrolled .navbar-toggler {
  border-color: #fff;
}
.navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* ================== HERO SECTION ================== */
.hero-section {
  background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section p {
  font-size: 1.3rem;
}

/* ================== BUTTONS ================== */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.btn-orange {
  background-color: #ffd700 !important; /* Gold */
  border: none;
  animation: heartbeat 2s infinite ease-in-out;
}
.btn-orange:hover,
.btn-orange:focus {
  background-color: #232323 !important; /* Black BG */
  color: #fff !important;               /* White text */
}
/* ================== CARDS ================== */
.card {
  border: none;
  transition: 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
}

/* ================== SECTION SLIDER (Owl/Bootstrap) ================== */
.section-slider {
  padding: 40px 0;
  background-color: #e2e6e9;
}

.section-slider .slider-box {
  text-align: center;
  padding: 15px;
}

.section-slider .slider-box img {
  width: 100%;
  border-radius: 10px;
}

.section-slider .slider-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

/* ================== MARQUEE SLIDER ================== */
.marquee-slider {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  background: transparent !important;
}
.marquee-slider .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-slider .slider-box {
  flex: none;
  width: 300px;
  margin-right: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px #0002;
  overflow: hidden;
  text-align: center;
}
.marquee-slider .slider-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.marquee-slider .slider-text {
  padding: 8px 0;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  background: #f7f7f7;
  border-radius: 0 0 12px 12px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .marquee-slider .slider-box { width: 200px; }
  .marquee-slider .slider-box img { height: 110px; }
}
.marquee-slider:hover .marquee-track {
  animation-play-state: paused;
}

/* ================== WHY CHOOSE CB INTERIOR ICON CSS ================== */
.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.icon-circle i {
  color: #333;
  transition: color 0.3s ease;
}
.icon-circle:hover {
  transform: scale(1.1);
  background-color: #e0e0e0;
}
.icon-circle:hover i {
  color: orange;
}
.section-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
}
a.scroll-click .section-text {
  transition: color 0.3s ease;
}
a.scroll-click:hover .section-text {
  color: orange;
}

/* ================== "WHAT YOU GET" SECTION ================== */
.main-box {
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
}
.img-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.text-box-head {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.text-box-subhead {
  font-size: 14px;
  color: #555;
}
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.cta-button:hover {
  background: #e65c00;
  color: white;
}

/* ================== MODAL STYLES ================== */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}
.modal-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.modal-image {
  width: 40%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.modal-form {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group {
  margin-bottom: 10px;
}
.radio-group label {
  margin-right: 10px;
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.orange-btn {
  background-color: orange;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

/* Modal close button (desktop and mobile) */
.custom-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  background: transparent;
  border: none;
  z-index: 1055;
}
.custom-close-btn:hover {
  color: #ff6600;
  cursor: pointer;
}
.modal-close-btn-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  opacity: 0.9;
}
/* Hide mobile close button on desktop */
@media (min-width: 768px) {
  .modal-close-btn-mobile {
    display: none !important;
  }
}
/* Modal Responsive */
@media (max-width: 768px) {
  .modal-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .modal-image {
    width: 100%;
    height: 20%;
  }
  .modal-form {
    width: 100%;
    padding: 15px;
    justify-content: center;
  }
}

/* ================== TRANSITION SECTION (WALL TEXTURE) ================== */
.transition-section {
  padding: 100px 0;
  /*background-color: #ffe082;*/ /* Light wall yellow fallback */
  background: linear-gradient(90deg, #fffbe6 0%, #ffd700 100%);
  background-repeat: repeat;
  background-size: auto;
}

.transition-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
  margin-left: 40px;
  margin-bottom: 50px;
  color: black;
  opacity: 1;
  line-height: 1.2;
  transition: opacity 0.8s ease;
}
.transition-title span {
  display: block;
  margin-top: 10px;
}
.transition-title.fade-out {
  opacity: 0;
}

.transition-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.transition-image-item {
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}
.transition-image-item.visible {
  transform: translateY(0);
  opacity: 1;
}
.transition-image-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
/* 1st and 3rd image larger height */
.transition-image-grid .transition-image-item:nth-child(1) img,
.transition-image-grid .transition-image-item:nth-child(3) img {
  height: 280px;
}

/* ================== FOOTER ================== */
.desktop-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffd700;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 1;
}

/* Footer Buttons */
.footer-btn {
  color: #000;
  text-decoration: none;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  border-radius: 5px;
  flex: 1;
}
.footer-btn i {
  font-size: 15px;
  margin-bottom: 1px;
}

/* Show mobile footer ONLY on small screens */
@media (max-width: 768px) {
  .desktop-footer {
    display: none !important;
  }
  .mobile-footer {
    display: flex !important;
  }
}
/* Hide Mobile Footer on larger screens */
@media (min-width: 769px) {
  .mobile-footer {
    display: none !important;
  }
}

/* ================== FOOTER DETAILED ================== */
.homestyler-footer {
  background: #000 !important;
  color: #fff !important;
  padding: 60px 0 30px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}
.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-column ul li a:hover {
  color: #ffd700 !important;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #222;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #fff;
  font-size: 22px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ffd700 !important;
}
.footer-copyright {
  color: #bbb !important;
  font-size: 14px;
  margin-top: 10px;
}


/* ---- Footer About & Links Custom Styles ---- */
.footer-section ul,
.footer-section {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section a,
.footer-section ul a,
.footer-section li a,
.footer-section .about-link {
  color: #fffbe6 !important;         /* White (brand off-white) */
  text-decoration: none !important;  /* Remove underline */
  transition: color 0.2s;
  font-weight: 500;
}
.footer-section a:hover,
.footer-section ul a:hover,
.footer-section li a:hover,
.footer-section .about-link:hover {
  color: #ffd700 !important;         /* Yellow on hover */
  text-decoration: none !important;  /* No underline on hover */
}
.footer-section h3 {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer-section li {
  margin-bottom: 8px;
}
/* Optional: For a clean look, make sure background is dark */
.footer-container {
  background: #232323;
  color: #fffbe6;
  padding-top: 35px;
  padding-bottom: 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}
.footer-column {
  min-width: 200px;
}
@media(max-width: 600px){
  .footer-top { flex-direction: column; gap: 10px; }
  .footer-column { min-width: 0; }
}
@media (max-width: 768px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-section {
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .footer-social {
    margin-top: 10px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer-section {
    width: 100%;
  }
}

/* ================== TRANSITION SECTION RESPONSIVE ================== */
@media (max-width: 767px) {
  .transition-image-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
  }
  .transition-image-item {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .transition-image-item img {
    height: 250px !important;
    object-fit: cover;
    border-radius: 10px;
  }
  /* Optional: hide duplicate row */
  .transition-image-grid:nth-of-type(2) {
    display: none;
  }
  .transition-title {
    font-size: 2rem;
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .transition-image-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
@media (max-width: 768px) {
  .transition-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .transition-title {
    font-size: 2rem;
    margin-left: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .transition-image-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .transition-image-item img {
    height: 200px !important;
  }
  .transition-title {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }
}

/* ================== BANNER IMAGE MOBILE ================== */
@media (min-width: 768px) {
  .banner-image-mobile {
    display: none !important;
  }
}