/* Center section title */
.rts-portfolio-area2 .section-top.text-center {
  text-align: center;
  margin-bottom: 50px;
}

.rts-portfolio-area2 .section-top.text-center .section-title-area {
  width: 100%;
}

/* Product box styling */
.rts-portfolio-area2 .project-wrapper4 {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
}

.rts-portfolio-area2 .project-wrapper4:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image area */
.rts-portfolio-area2 .project-wrapper4 .image-area {
  overflow: hidden;
  position: relative;
  height: 200px; /* Add fixed height */
}

.rts-portfolio-area2 .project-wrapper4 .image-area img {
  width: 100%;
  height: 100%; /* Change to 100% to fill the container */
  object-fit: cover; /* This ensures the image covers the area without distortion */
  transition: transform 0.5s ease;
}

.rts-portfolio-area2 .project-wrapper4:hover .image-area img {
  transform: scale(1.05);
}

/* Content area */
.rts-portfolio-area2 .project-wrapper4 .content-area {
  padding: 20px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rts-portfolio-area2 .project-wrapper4 .content-area .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.rts-portfolio-area2 .project-wrapper4 .content-area .title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rts-portfolio-area2 .project-wrapper4 .content-area .title a:hover {
  color: #ff4000;
}

.rts-portfolio-area2 .project-wrapper4 .content-area .price {
  font-size: 24px;
  font-weight: 700;
  color: #ff4000;
  margin-bottom: 20px;
}

/* Button area */
.rts-portfolio-area2 .project-wrapper4 .content-area .button-area {
  margin-top: auto;
}

.rts-portfolio-area2 .project-wrapper4 .content-area .button-area .rts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 40%;
}

/* Load More button */
.rts-portfolio-area2 .load-more-btn {
  display: inline-block;
  padding: 12px 40px;
  margin-top: 40px;
  font-weight: 600;
}

.rts-portfolio-area2 .text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 767px) {
  .rts-portfolio-area2 .project-wrapper4 {
    width: 100%;
    height: 100%;
  }
  .rts-portfolio-area2 .project-wrapper4 .content-area {
    padding: 20px 15px;
  }

  .rts-portfolio-area2 .project-wrapper4 .content-area .title {
    font-size: 16px;
  }

  .rts-portfolio-area2 .project-wrapper4 .content-area .price {
    font-size: 20px;
  }
}

/* Banner Styles */
.rts-banner-slider-area {
  position: relative;
  overflow: hidden;
}

.rts-banner-wrapper {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images - replace with your actual images */
/* .rts-banner-wrapper.bg-one {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/images/banner/Carbazaar-banner01.png");
}

.rts-banner-wrapper.bg-three {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/images/banner/banner-bg-2.jpg");
}

.rts-banner-wrapper.bg-four {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/images/banner/banner-bg-3.jpg");
} */

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side content box */
.banner-content-box {
  max-width: 600px;
  background: rgba(29, 27, 27, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  /* border: 1px solid rgba(255, 64, 0, 0.3); */
  box-shadow: 0 20px 40px rgba(63, 61, 61, 0.4);
  color: #ffffff;
  animation: fadeInLeft 1s ease;
}

.banner-subtitle {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  line-height: 1.4;
}

.banner-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ff4000;
  text-transform: uppercase;
}

.banner-location {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #dddddd;
  max-width: 500px;
}

.banner-btn {
  display: inline-block;
  background: #ff4000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-btn .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.banner-btn:hover {
  background: #e63900;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 64, 0, 0.3);
}

.banner-btn:hover .arrow {
  transform: translateX(5px);
}

.banner-message {
  margin-top: 30px;
}

.message-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff4000;
  padding-bottom: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.message-link:hover {
  color: #ff4000;
  border-bottom-color: #ffffff;
}

/* Swiper Navigation */
.swiper-btn-area {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.swiper-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.swiper-btn:hover {
  background: #ff4000;
  border-color: #ff4000;
}

.swiper-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .banner-content-box {
    max-width: 550px;
    padding: 40px;
  }

  .banner-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .rts-banner-wrapper {
    min-height: 700px;
  }

  .banner-content-box {
    max-width: 500px;
    padding: 35px;
  }

  .banner-title {
    font-size: 42px;
  }

  .banner-subtitle {
    font-size: 20px;
  }

  .banner-location {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .rts-banner-wrapper {
    min-height: 600px;
    text-align: center;
  }

  .banner-content-box {
    max-width: 100%;
    padding: 30px;
    margin: 0 15px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .banner-location {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-btn {
    font-size: 16px;
    padding: 14px 30px;
  }

  .swiper-btn-area {
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 575px) {
  .banner-content-box {
    padding: 25px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .banner-location {
    font-size: 14px;
  }

  .banner-btn {
    font-size: 14px;
    padding: 12px 25px;
  }

  .message-link {
    font-size: 14px;
  }
}

/* About Features Styling */
.about-content-area .about-features {
  margin: 30px 0 20px;
}

.about-content-area .feature-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-content-area .feature-item:last-child {
  border-bottom: none;
}

.about-content-area .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 64, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-content-area .feature-item:hover .feature-icon {
  background: #ff4000;
  transform: rotateY(180deg);
}

.about-content-area .feature-icon img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.about-content-area .feature-item:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.about-content-area .feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  line-height: 1.3;
}

.about-content-area .feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content-area .feature-title {
    font-size: 18px;
  }

  .about-content-area .feature-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .about-content-area .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Center align items horizontally */
  }

  .about-content-area .feature-icon {
    margin-right: 0 !important;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Ensure the icon image itself is centered */
  .about-content-area .feature-icon img {
    display: block;
    margin: 0 auto;
  }

  /* If using Font Awesome icons */
  .about-content-area .feature-icon i {
    display: block;
    text-align: center;
  }

  /* Center the feature content text */
  .about-content-area .feature-content {
    text-align: center;
    width: 100%;
  }

  /* Center the feature title */
  .about-content-area .feature-title {
    text-align: center;
  }

  /* Center the feature paragraph */
  .about-content-area .feature-text {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .about-content-area .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .about-content-area .feature-icon img {
    width: 35px;
    height: 35px;
  }

  .about-content-area .feature-text {
    max-width: 100%;
    font-size: 14px;
  }
}

/* Additional centering CSS if needed */
.section-top.text-center {
  text-align: center;
  width: 100%;
}

.section-top.text-center .section-title-area {
  display: inline-block;
  max-width: 800px; /* Optional: limits width for better readability */
  margin-left: auto;
  margin-right: auto;
}

.section-top.text-center .section-title {
  text-align: center;
}

.section-top.text-center .sub-title {
  text-align: center;
}

/* Toggle Button Styles - Ensure visibility */
.menu-btn {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
  z-index: 100;
}

.menu-btn svg {
  display: block;
  width: 45px;
  height: 45px;
}

.menu-btn svg rect[fill="#FF3600"] {
  fill: #ff3600;
}

.menu-btn svg rect[fill="#ffffff"] {
  fill: #ffffff;
}

.menu-btn:hover {
  transform: scale(1.05);
}

.menu-btn:hover svg rect[fill="#FF3600"] {
  fill: #e63900;
}

/* Bottom right container */
.bottom-right {
  display: flex !important;
  align-items: center;
  gap: 15px;
}

/* Header wrapper */
.header-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* Logo area */
.logo-area-start img {
  max-height: 50px;
  width: auto;
}

/* Navigation area */
.nav-area ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown hover effect */
.main-nav.has-dropdown:hover .submenu {
  display: block !important;
}

.submenu li {
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #ff3600;
  padding-left: 25px;
}

/* Off-Canvas Menu Styles */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hide mobile navigation on desktop by default */
.mobile-only {
  display: none;
}

/* Desktop styles - hide menu in offcanvas on desktop */
@media (min-width: 992px) {
  .offcanvas-nav.mobile-only {
    display: none !important;
  }

  /* Show desktop menu */
  .desktop-menu {
    display: block;
  }
}

/* Mobile styles */
@media (max-width: 991px) {
  /* Hide desktop menu on mobile */
  .desktop-menu {
    display: none !important;
  }

  /* Show mobile navigation in offcanvas */
  .offcanvas-nav.mobile-only {
    display: block;
    margin-bottom: 30px;
  }

  .offcanvas-nav.mobile-only ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .offcanvas-nav.mobile-only ul li {
    margin-bottom: 15px;
  }

  .offcanvas-nav.mobile-only ul li a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .offcanvas-nav.mobile-only ul li a:hover {
    color: #ff4000;
  }
}

/* Offcanvas inner styles */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-close {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offcanvas-close:hover {
  background: #ff4000;
}

.offcanvas-close:hover svg path {
  stroke: #ffffff;
}

.offcanvas-body {
  padding: 25px;
}

.offcanvas-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #333;
}

.offcanvas-contact h4:first-child {
  margin-top: 0;
}

.offcanvas-contact p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.offcanvas-contact p a {
  color: #666;
  text-decoration: none;
}

.offcanvas-contact p a:hover {
  color: #ff4000;
}

/* .get-started-btn {
  display: inline-block;
  background: #ff4000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.get-started-btn:hover {
  background: #e63900;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 64, 0, 0.3);
}

.offcanvas-banner {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-banner h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #333;
}

.offcanvas-banner p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
} */

.offcanvas-social ul {
  list-style: none;
  padding: 10px;
  margin: 20px;
  gap: 12px;
}

.offcanvas-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.offcanvas-social ul li a:hover {
  background: #ff4000;
  transform: translateY(-5px);
}

.offcanvas-social ul li a img {
  width: 18px;
  height: 18px;
  filter: brightness(0.3);
}

.offcanvas-social ul li a:hover img {
  filter: brightness(0) invert(1);
}

/* Header Navigation Menu - White with Red Hover */
.header-two.header--sticky {
  background-color: #1a1a1a; /* Dark background for contrast */
}

/* Main navigation menu items - White */
.header-two.header--sticky .nav-area ul li a.main-menu {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

/* Hover effect - Red */
.header-two.header--sticky .nav-area ul li a.main-menu:hover {
  color: #ff0000 !important; /* Bright red on hover */
}

/* Active menu item - Also red to indicate current page */
.header-two.header--sticky .nav-area ul li.active a.main-menu {
  color: #ff0000 !important;
}

/* Dropdown toggle arrow - White */
.header-two.header--sticky
  .nav-area
  ul
  li.has-dropdown
  a.main-menu
  .dropdown-arrow,
.header-two.header--sticky .nav-area ul li.has-dropdown a.main-menu::after {
  color: #ffffff;
}

/* Dropdown menu container */
.header-two.header--sticky .nav-area ul li .submenu {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Dropdown menu items - Dark for readability */
.header-two.header--sticky .nav-area ul li .submenu li a {
  color: #333333 !important;
  transition: all 0.3s ease;
}

/* Dropdown menu items hover - Red */
.header-two.header--sticky .nav-area ul li .submenu li a:hover {
  color: #ff0000 !important;
  background: #f5f5f5;
  padding-left: 25px;
}

/* Logo adjustment for dark background - makes logo white if needed */
/* .header-two.header--sticky .logo-area-start img {
  filter: brightness(0) invert(1); /* Remove this if your logo is already light-colored */
/* max-height: 50px;
  width: auto;
/* } */
*/ 

/* Toggle button styling */
.header-two.header--sticky .menu-btn svg rect[fill="#FF3600"] {
  fill: #ff0000; /* Changed to red to match hover color */
}

/* Mobile responsive - hide menu on small screens */
@media (max-width: 991px) {
  .header-two.header--sticky .nav-area {
    display: none;
  }
}

/* Black background for the section */
.rts-portfolio-area2.area-3 {
  background-color: #000000;
}

/* White text for subtitle */
.rts-portfolio-area2.area-3 .section-title-area .sub-title {
  color: #ff4000 !important;
  opacity: 0.9;
}

/* White text for main title on dark background */
.rts-portfolio-area2.area-3 .section-title-area .section-title {
  color: #ffffff !important;
}

/* Black text for main title on light/white background */
.rts-portfolio-area2.area-3 .section-title-area .section-title.title-black {
  color: #000000 !important;
}
/* Orange color for the span inside title */
.rts-portfolio-area2.area-3 .section-title-area .section-title span {
  color: #ff4000 !important;
}

.submenu-drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  display: none;
  border-radius: 5px;
}

/* ===== Toggle Button Styles ===== */

.toggle-menu-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: transform 0.3s ease;
  /* Orange background for the entire button */
  background-color: #ff3600;
  border-radius: 15px;
  width: 45px;
  height: 45px;
}

.menu-btn:hover {
  transform: scale(1.05);
  background-color: #e63900; /* Darker orange on hover */
}

.menu-icon {
  display: block;
  width: 45px;
  height: 45px;
}

/* Remove the SVG background since we're using button background */
.menu-icon .menu-bg {
  display: none; /* Hide the SVG rectangle background */
}

/* Menu lines */
.menu-icon .menu-line {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.menu-btn:hover .menu-line {
  fill: #ffffff;
}

/* If you want to add animation to the menu lines on hover */
.menu-btn:hover .menu-line:nth-child(2) {
  transform: translateY(-2px);
}

.menu-btn:hover .menu-line:nth-child(4) {
  transform: translateY(2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .menu-btn {
    margin-left: 15px;
    width: 40px;
    height: 40px;
  }

  .menu-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .menu-btn {
    margin-left: 10px;
    width: 35px;
    height: 35px;
  }

  .menu-icon {
    width: 35px;
    height: 35px;
  }
}

/* NO CHANGES to product cards - they remain exactly as before */
/*about-us */
/* ========== About Us Page Specific Styles ========== */
.about-page-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 35px;
}

.about-page-features li {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-heading-1);
  font-weight: 500;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-page-features li i {
  color: var(--color-primary);
  font-size: 24px;
  flex-shrink: 0;
}

.about-page-contact-btn {
  min-width: 180px;
  margin-top: 10px;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary) !important;
  transition: var(--transition) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 32px !important;
}

.about-page-contact-btn:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
}

.about-page-contact-btn svg path {
  fill: var(--color-white);
  transition: var(--transition);
}

.about-page-contact-btn:hover svg path {
  fill: var(--color-primary);
}

/* Responsive styles for About Us page */
@media only screen and (max-width: 991px) {
  .about-page-features {
    margin: 25px 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-page-features li {
    font-size: 16px;
    margin: 14px 0;
    gap: 12px;
  }

  .about-page-features li i {
    font-size: 20px;
  }

  .about-page-contact-btn {
    min-width: 160px;
    padding: 14px 28px !important;
    font-size: 15px;
  }
}

/* About page spacer between sections */
.about-brand-spacer {
  height: 80px;
  width: 100%;
}

/* Responsive spacer for mobile */
@media only screen and (max-width: 767px) {
  .about-brand-spacer {
    height: 50px;
  }
}

/* View Details Button Styles */
.view-details-btn {
  display: inline-block;
  background-color: #ff3600 !important; /* Orange background */
  color: #ff3600 !important; /* White text */
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.view-details-btn:hover {
  background-color: #000000 !important; /* Black background on hover */
  color: #fff !important; /* Orange text on hover */

  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 64, 0, 0.2);
}

/* ===== Section Title Styles ===== */

/* Subtitle Styles */
.section-top .sub-title {
  color: #ffffff;
  opacity: 0.9;
}

/* Override any existing animation styles if needed */
.section-top .sub-title.wow.fadeInUp {
  animation-duration: 0.8s;
  animation-delay: 0.1s;
  animation-name: fadeInUp;
  visibility: visible;
}

/* Main Title Styles */
.section-top .section-title {
  color: #ffffff;
}

.section-top .section-title.wow.move-right {
  animation-name: moveright;
  visibility: visible;
}

/* Span inside title - Orange color */
.section-top .section-title span {
  color: #ff4000;
}

/* If you need to ensure the Wow.js animations work properly */
.wow {
  visibility: hidden;
}

.wow.fadeInUp,
.wow.move-right {
  visibility: visible;
}

/* Button in statistics section */
.rts-statistics-area .rts-btn.btn-primary {
  background: #ff4000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.rts-statistics-area .rts-btn.btn-primary:hover {
  background: #e63900;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 64, 0, 0.3);
}

/* Subheading Styles */
.section-title-area .sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ff3600;
  margin-top: 50px;
  margin-bottom: 15px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Divider (HR) */
.section-divider {
  border: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff4000,
    #ff4000,
    #ff4000,
    transparent
  );
  width: 400px;
  margin: 20px auto 0;
  border-radius: 1px;
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .section-title-area .sub-heading {
    font-size: 20px;
    padding: 0 15px;
  }

  .section-divider {
    width: 200px;
  }
}

/* Mobile Dropdown Styles - Updated */
.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown > .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
}

.mobile-dropdown > .dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #666;
  pointer-events: none; /* This prevents the arrow from capturing clicks separately */
}

.mobile-dropdown.active > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding-left: 20px;
  margin: 5px 0 10px;
  display: none;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

.mobile-submenu li {
  margin-bottom: 10px;
}

.mobile-submenu li a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-submenu li a:hover {
  color: #ff4000;
  padding-left: 5px;
}

/* Prevent the main Products link from navigating when dropdown is clicked */
.mobile-dropdown > .dropdown-toggle[href="product.html"] {
  cursor: pointer;
}

/* Footer with 4 columns layout */
.footer-wrapper-style-between {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 60px 0 40px;
}

/* Responsive footer */
@media (max-width: 991px) {
  .footer-wrapper-style-between {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-wrapper-style-between {
    grid-template-columns: 1fr;
  }
}

/* Products list styling */
.single-wized .nav-bottom li {
  margin-bottom: 10px;
}

.single-wized .nav-bottom li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.single-wized .nav-bottom li a:hover {
  color: #ff4000;
  padding-left: 5px;
}

/* Quick Links section */
.single-wized .title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.single-wized .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff4000;
}

/* Google Business Profile Section Styles */
.gbp-section {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.gbp-container {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #f6f6f6;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  transition: all 0.3s ease;
}

.gbp-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.gbp-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  font-family: "Poppins", "Arial", sans-serif;
  letter-spacing: -0.3px;
}

.gbp-button {
  display: inline-block;
  background-color: #ff4000;
  color: white;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border-radius: 50px;
  font-family: "Arial", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(66, 133, 247, 0.3);
  border: none;
  cursor: pointer;
}

.gbp-button:hover {
  background-color: #ff4000;
  color: #fff;
}

.gbp-button:active {
  transform: translateY(0);
}

.gbp-description {
  margin-top: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.3px;
}

/* Mobile Responsive CSS */
@media (max-width: 768px) {
  .gbp-section {
    margin-top: 35px;
    margin-bottom: 15px;
  }

  .gbp-container {
    padding: 25px 18px;
    border-radius: 12px;
  }

  .gbp-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .gbp-button {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
    margin: 0 10px;
  }

  .gbp-description {
    font-size: 12px;
    margin-top: 16px;
    padding: 0 10px;
  }
}

/* Extra Small Devices (phones below 480px) */
@media (max-width: 480px) {
  .gbp-section {
    margin-top: 25px;
  }

  .gbp-container {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .gbp-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .gbp-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .gbp-description {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Tablet Devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .gbp-container {
    padding: 30px 20px;
  }

  .gbp-title {
    font-size: 24px;
  }

  .gbp-button {
    padding: 13px 30px;
    font-size: 17px;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  .gbp-container {
    background: linear-gradient(135deg, #2d2d3a 0%, #1e1e2a 100%);
  }

  .gbp-title {
    color: #ffffff;
  }

  .gbp-description {
    color: #cccccc;
  }
}
