/* ===== BASIC RESET ===== */
body {
  margin: 0;
  font-optical-sizing: auto;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
  background: #7b8b5e;
  transition: background 0.4s ease, box-shadow 0.4s ease;
    font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-style: normal;
}

/* Scrolled state */
/* .navbar.scrolled {
  background: #7b8b5e; */
  /* box-shadow: 0px -10px 25px rgba(0, 0, 0, 0.8); */
  /* opacity: 2;
} */

/* Text */
.navbar a {
  color: #adacacf8;
  transition: color 0.4s ease;
  font-family: "Raleway", sans-serif;
}

/* .navbar.scrolled a {
  color: #7b8b5e;
} */

.navbar-brand img {
  height: 100px;
  width: 320px;
}

.navbar-nav .nav-link {
  color: #eeededf8;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-4px) scale(1.1);
  color: #929e7b;
}

/* Underline animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7b8b5e, #808872);
  transition: width 0.3s ease;
}

/* ------------------------------------------ */
/* SPECIAL STYLE ONLY FOR PHONE NUMBER LINK   */
/* ------------------------------------------ */
.navbar-nav .phone-text {
  font-family: Arial, sans-serif !important; /* Your new font */
  font-weight: normal !important; 
  color: #eeededf8 !important; /* keep same color unless you want to change */
}


.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Remove caret arrow from dropdown */
.navbar .dropdown-toggle::after {
  display: none !important;
}

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus {
  color: inherit !important;
  /* Keeps same color */
  text-decoration: none !important;
  /* No underline */
  opacity: 1 !important;
  /* No fade */
}

.nav-social a {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 500px;
  color: #eeededf8;
  padding: 0 5px;
  display: inline-block;
  transition: 0.3s ease;
  text-decoration: none
  
}
.nav-social{
  padding-left: 20px;
}
.nav-social a:hover {
  color:  #929e7b; 
  transform: translateY(-2px);
 }



/* ============================================
   DESKTOP DROPDOWN
============================================ */
.navbar .dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: dropdownFade 0.25s ease-out;
  background-color:#db8a20 ;
}

.navbar .dropdown-item {
  padding: 10px 20px;
  font-size: 16px;
  /* background-color: #db8a20 ; */
  color: #fff;
}

.navbar .dropdown-item:hover {
  background: #f0f0f0;
  color: #db8a20;
}

@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover open on desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* ============================================
   RESPONSIVE NAVBAR — TABLET
============================================ */
@media (max-width: 1024px) {
  .navbar {
    padding: 8px 0;
  }

  .navbar-brand {
    font-size: 28px !important;
  }

  .navbar-nav .nav-link {
    margin: 0 10px;
    font-size: 16px;
  }
}

/* ============================================
   MOBILE (Dropdown + Navbar)
============================================ */
@media (max-width: 767px) {
  .navbar {
    padding: 6px 0;
    /* background: rgba(0, 0, 0, 0.4); */
    box-shadow: none;
  }

  /* .navbar.scrolled { */
    /* background: rgba(20, 20, 20, 0.9); */
  /* } */

  .navbar-brand {
    font-size: 22px !important;
  }

  #navbarNav {
    text-align: center;
    padding: 15px 0;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    font-size: 18px;
  }

  /* Disable hover pop effect on mobile */
  .navbar-nav .nav-link:hover {
    transform: none;
    scale: 1;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  /* =============================
     MOBILE DROPDOWN FIX
  ============================= */
  .navbar .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .navbar .dropdown-item {
    padding: 14px 20px;
    font-size: 17px;
    border-bottom: 1px solid #db8a20;
  }

  .navbar .dropdown-item:last-child {
    border-bottom: none;
  }

  .navbar .dropdown-menu.show {
    animation: mobileDrop 0.3s ease-out;
  }

  @keyframes mobileDrop {
    0% {
      opacity: 0;
      transform: translateY(-6px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   EXTRA SMALL MOBILE
============================================ */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 20px !important;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    margin: 8px 0;
  }
}

/* Footer styling */
.site-footer {
  background-color: #444243;
  color: #adacacf8;
  font-optical-sizing: auto;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  padding-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 85px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 25px;
}
.footer-col{
  padding-left: 30px;
}

.footer-col h4,
.footer-col h5 {
  color: #adacacf8;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.7;
  color: #adacacf8;
}
.phone-text {
  font-family: Arial, sans-serif; /* change to any font */
  font-weight: normal;
}


.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #adacacf8;
  font-size: 14px;
  transition: all 0.3s ease;
  
}

.footer-col ul li a:hover {
  color: #6a8140;
  padding-left: 4px;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6a8140;
}

.tagline {
  font-size: 14px;
  color: #adacacf8;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #adacacf8;
  border-radius: 50%;
  color: #333;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #6a8140;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #000000;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 14px;
  color: #adacacf8;
}

.footer-bottom a {
  color: #adacacf8;
  font-weight: 500;
  text-decoration: none;
}

/* FOOTER FORM */
.footer-form {
  flex: 1;
  min-width: 260px;
}

.footer-title {
  color: #7b8b5e;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Input Group */
.footer-input {
  position: relative;
  margin-bottom: 18px;
}

.footer-input input,
.footer-input textarea {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid#adacacf8;
  border-radius: 10px;
  outline: none;
  font-size: 0.95rem;
  color: #fff;
  transition: 0.3s ease;
}

.footer-input textarea {
  height: 70px;
  resize: none;
}

/* Floating Label */
.footer-input label {
  position: absolute;
  left: 14px;
  top: 10px;
  color: #adacacf8;
  font-size: 0.9rem;
  pointer-events: none;
  transition: 0.3s ease;
  font-weight: 400;
}

.footer-input input:focus+label,
.footer-input input:valid+label,
.footer-input textarea:focus+label,
.footer-input textarea:valid+label {
  top: -10px;
  left: 10px;
  background: #7b8b5e;
  padding: 0 5px;
  color: #adacacf8;
  font-size: 0.75rem;
}

/* Input Glow */
.footer-input input:focus,
.footer-input textarea:focus {
  border-color: #7b8b5e;
}


/* Submit Button */
.footer-btn {
  width: 100%;
  padding: 12px;
  background: #7b8b5e;
  border: none;
  color: black;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}


.footer-btn:hover {
  background: #8ea976;
  transform: translateY(-3px);
}
.footer-form {
  margin-bottom: 40px;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Smooth scroll reveal base styles */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional hover lift for cards and boxes */
.spotlight-card:hover,
.feature-box:hover,
.about-gallery .img-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

/* ===== Brand Slider Animation ===== */

/* Full-width section */
#brands {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  overflow: hidden;
}

/* Break Bootstrap container limit */
#brands .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Slider wrapper */
.brand-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

/* Track (continuous scroll) */
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollBrands 10s linear infinite;
}

/* Brand logos (Desktop default) */
.brand-img {
  width: 230px;       /* More reasonable width so mobile is easier */
  height: auto;
  object-fit: contain;
  margin: 20px;
}
.brand-slider {
  cursor: pointer;
}

.brand-img {
  pointer-events: none; /* ensures entire area clicks, not individual images */
}
/* Animation */
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ======================= */
/*      RESPONSIVE CSS     */
/* ======================= */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .brand-track {
    animation-duration: 24s;
    gap: 30px;
  }

  .brand-img {
    width: 200px;    /* scale down */
    margin: 15px;
  }

  #brands h2 {
    font-size: 2.5rem !important;
  }
}

/* Large mobile (480px and below) */
@media (max-width: 480px) {
  .brand-track {
    animation-duration: 28s;
    gap: 20px;
  }

  .brand-img {
    width: 140px;
    margin: 12px;
  }

  #brands h2 {
    font-size: 2.2rem !important;
  }
}

/* Small mobile (360px and below) */
@media (max-width: 360px) {
  .brand-track {
    animation-duration: 30s;
    gap: 15px;
  }

  .brand-img {
    width: 120px;
    margin: 10px;
  }

  #brands h2 {
    font-size: 2rem !important;
  }
}


/* ================================
   TESTIMONIAL SECTION WRAPPER
================================ */
.testimonials-section {
  padding: 70px 0;
  background: #fff;
}

.testimonials-section .container {
  max-width: 1550px;
  /* EXACT alignment with WPC Manufactures */
  margin: 0 auto;
  padding: 0 20px;
  /* Same padding as your site */
}

/* ================================
   TITLE
================================ */
.section-title {
  text-align: center;
  font-size: 3.9rem;
  font-weight: 400;
  color: #6f8b53;
  margin-bottom: 45px;
  letter-spacing: -0.3px;
  /* pixel-perfect typography */
}

/* ================================
   CARD
================================ */
.testimonial-card {
  text-align: center;
  padding: 25px;
  animation: fadeUp 0.6s ease-in-out;
}

.client-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.client-name {
  font-size: 20px;
  font-weight: 700;
}

.client-role {
  color: #777;
  margin-bottom: 10px;
  font-size: 15px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ================================
   SWIPER FIX
================================ */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: #e6fac1 !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #6a8140 !important;
  opacity: 1;
}

/* ================================
   ANIMATION
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  text-align: center;
  padding: 25px;
  animation: fadeUp 0.6s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  /* Lifts upward */
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 15px;
  }
}

/* WhatsApp floating button
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 22px;
  margin-right: 8px;
}

.whatsapp-float:hover {
  background: #88ffb5;
  transform: translateY(-4px);
} */
 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}
.phone-float {
  position: fixed;
  bottom: 90px; /* above WhatsApp icon */
  right: 20px;
  background-color: #007bff; /* blue color */
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.phone-float:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* ================================
   MOBILE – CENTER SOCIAL ICONS
================================ */
@media (max-width: 767px) {
  .navbar-nav .nav-social {
    width: 100%;
    justify-content: center;
    padding-left: 0;
    margin-top: 12px;
  }

  .navbar-nav .nav-social a {
    padding: 0 10px;
  }
}
/* ================================
   MOBILE & EXTRA-SMALL FOOTER CENTERING
================================ */

/* Mobile: up to 768px */
@media (max-width: 768px) {

  /* Stack columns vertically and center all content */
  .site-footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontally */
    text-align: center;
    gap: 25px;
    padding: 0 15px;
  }

  .site-footer .footer-col {
    padding-left: 0 !important; /* remove desktop padding */
    width: 100%;                /* optional: full width */
    max-width: 400px;           /* keep columns from stretching too wide */
  }

  /* Center social icons */
  .site-footer .social-icons {
    justify-content: center;
    margin: 0 auto;
  }

  .site-footer .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Footer text adjustments */
  .site-footer .footer-col p,
  .site-footer .footer-col .phone-text {
    font-size: 14px;
  }

  /* Footer bottom */
  .site-footer .footer-bottom {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
  }
}

/* Extra-small devices: up to 480px */
@media (max-width: 480px) {
  .site-footer .footer-col h5 {
    font-size: 1rem;
  }

  .site-footer .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .site-footer .footer-bottom {
    font-size: 11px;
  }
  .site-footer{
    margin: 0;
  }
}
.door-size-footer tbody td {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

