/* Global Variables */
:root {
  --primary-color:  #000;
  --secondary-color: #29a4ce;
  --accent-color: #28a745;
  --text-dark: #1a202c;
  --text-medium: #2d3748;
  --text-light: #4a5568;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}
section.about img {
    width: 90%;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
/* Top Bar and Navbar */
.top-bar {
  background-color: var(--bg-white);
  padding: 0.5rem 1rem;
}
section.about {
    padding: 60px 0px;
    background-color: #e4e9eb;

}
.top-bar a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--primary-color);
}

.header {
    background-color: rgb(33 37 41) !important;
    box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 0.625rem 1.25rem;
}

.navbar-brand {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar .nav-link {
  color: var(--bg-white);
  margin: 0 0.625rem;
  font-weight: 500;
  transition: var(--transition);
}


.logo img {
  width: 150px;
  height: auto;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: var(--bg-white);
  border: none;
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: var(--transition);
}



.drop-menu {
  display: flex;
}

ul.dropdown-menu-drop {
  padding: 0;
}

ul.dropdown-menu-drop li {
  list-style: none;
}

h6.dropdown-header {
  font-size: 1.125rem;
  color: var(--text-dark);
}
.hero {
    background: url(https://beechems.com/agilenobel/wp-content/uploads/2025/07/header3-scaled.png);
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: -120px;
    top: 48px;
  }
}
 .navbar-toggler {
    border: none;
    background-color: #fff;
  }
@media (max-width: 768px) {
.cta-title {
    font-size: 20px !important;
}
  .navbar {
    padding: 0.625rem 0;
  }
  .navbar-collapse {
    padding: 0.625rem;
  }
  .navbar-toggler {
    border: none;
  }
  .drop-menu {
    display: block;
  }
  .dropdown-item {
    white-space: normal;
  }
}

/* Hero Section */
section.hero {
  padding: 200px 0;
  text-align: center;
  height: 70vh;
}

section.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

section.hero p.lead {
  color: #fff;
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.hero img {
  width: 100%;
  height: auto;
}
a.btn {
    background: transparent linear-gradient(90deg, #477AD9 0%, #1FBAAE 100%) 0% 0% no-repeat padding-box;
    color: #fff !important;
}
/* Buttons */
.btn-view-all, .get-quote-btn, .ps-btn--warning {
  background: transparent linear-gradient(90deg, #477AD9 0%, #1FBAAE 100%) 0% 0% no-repeat padding-box;
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-view-all:hover, .get-quote-btn:hover, .ps-btn--warning:hover {
  background-color: #0073aa;
  transform: translateY(-2px);
}

.email-cta {
  background: var(--primary-color);
  padding: 0.625rem 1rem;
  border-radius: 25px;
  color: var(--bg-white);
  text-decoration: none;
  transition: var(--transition);
}

.email-cta:hover {
  background: #0073aa;
}

/* Category Section */
.category-section {
  background-color: var(--bg-light);
  padding: 2.5rem 0;
  transition: var(--transition);
}

.category-section:hover {
  background-color: #e9ecef;
}

.category-item {
  background-color: var(--bg-white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-link img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: var(--transition);
}

.category-item:hover .category-link img {
  transform: scale(1.1);
}

.category-name {
  display: block;
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition);
}

.category-name:hover {
  color: var(--accent-color);
}

/* Grid Layout */
.grid-8col {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}

@media (max-width: 1200px) {
  .grid-8col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-8col {
    grid-template-columns: 1fr;
  }
  .category-item {
    margin-bottom: 1.25rem;
  }
  .category-link img {
    width: 80px;
    height: 80px;
  }
}

/* Banner Section */
.banner-area {
  padding: 5rem 0;
}

.banner-item {
    padding: 4px;
    margin-bottom: 1.875rem;
    border: 2px solid #6363;
    border-radius: 10px;
}

.banner-item:hover, .right-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.banner-image, .right-banner img {
  width: 80%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.get-quote-btn{
position: absolute;
bottom: 12px;
}
.banner-item:hover .banner-image, .right-banner:hover img {
  opacity: 0.9;
}

.banner-content, .right-banner-content {
  padding: 1rem;
  min-height: 300px;
  position: relative;
  background: linear-gradient(to top, var(--bg-white), #f9f9f9);
}

.banner-title a, .right-banner-title a {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 0.9375rem;
  transition: var(--transition);
}



.banner-price {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.banner-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.banner-info li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.banner-info .label {
  font-weight: 500;
  color: var(--text-medium);
}

.banner-info .value {
  color: var(--primary-color);
}

/* Featured Section */
.featured-section {
  background-color: #f0f4f8;
  padding: 3.75rem 0;
}

.featured-card, .right-featured {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.1875rem;
  transition: var(--transition);
}

.featured-card:hover, .right-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.featured-image, .right-featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.featured-card:hover .featured-image, .right-featured:hover img {
  transform: scale(1.05);
}

.featured-content, .right-featured-content {
  padding: 1.5625rem;
  text-align: center;
  background: linear-gradient(to top, var(--bg-white), #eef2f7);
}

.featured-title a, .right-featured-title a {
  color: #2c5282;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.25rem;
  display: block;
  transition: var(--transition);
}

.featured-title a:hover, .right-featured-title a:hover {
  color: #48bb78;
}

.featured-price {
  color: #2c5282;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.featured-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5625rem 0;
}

.featured-info li {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.featured-info .label {
  font-weight: 500;
  color: var(--text-medium);
}

.featured-info .value {
  color: #2c5282;
}
@media (min-width: 768px) {
   .new-grid .col-md-6 {
        /* flex: 0 0 auto; */
        width: 100%;
    }
}
.new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px; /* Optional spacing between columns */
}
/* About Section */
.ps-about--info {
    padding: 80px 0;
}


.jk-about-title h3 {
  color: var(--text-dark);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.3125rem 0 0;
}

.jk-about-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

.jk-about-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.jk-about-content a:hover {
  color: #0073aa;
}

.jk-about-bottom {
  margin-top: 1.25rem;
}

.jk-about-bottom p {
  color: var(--text-medium);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 2.5rem;
}

.jk-about-point-box {
  background-color: var(--bg-white);
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.jk-about-point-box:hover {
  transform: translateY(-5px);
}

.prfle_img_bx i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.jk-about-point-box:hover .prfle_img_bx i {
  transform: scale(1.1);
}

.content-box h2 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.3125rem;
}

.content-box h3 {
  color: var(--text-medium);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Ratings Section */
.ratings-section {
  padding: 2rem;
  background: var(--bg-light);
  color: var(--text-dark);
}

.ratings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ratings-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

.ratings-header a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

.rating-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.avg-rating {
  text-align: center;
  border-right: 1px solid #eee;
}

.avg-rating h3 {
  font-size: 2.5rem;
  margin: 0;
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.rating-distribution {
  padding: 0 1.5rem;
  border-right: 1px solid #eee;
}

.rating-bar {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bar {
  flex: 1;
  background: #e9ecef;
  margin: 0 0.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  background: var(--accent-color);
  height: 8px;
  display: block;
}

.user-satisfaction {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-meter {
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.satisfaction-item {
  text-align: center;
  margin-bottom: 1rem;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.reviewer {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  background: #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0.75rem;
}

.review-details {
  font-size: 0.9rem;
}

.review-details strong {
  font-size: 1rem;
  display: block;
}

.review-stars {
  color: #ffc107;
  font-size: 1rem;
  margin: 0.25rem 0;
}

.product-name {
  font-size: 0.85rem;
  color: #666;
}

/* Footer */
.footer-top {
  background: #2b2f36;
  color: var(--bg-white);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info a {
  color: var(--bg-white);
  text-decoration: none;
}

.contact-info svg {
  margin-right: 0.5rem;
}

.contact-info .social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bg-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-decoration: none;
}

.footer-form {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1rem;
}

.footer-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

.footer-form button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #00695c;
  color: var(--bg-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.footer-bottom {
  background: #f1f1f1;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  color: var(--text-dark);
}

.footer-bottom h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-bottom .share-icons a {
  margin-right: 10px;
  font-size: 20px;
}

.footer-copy {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
}

.footer-copy a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  color: #0d6efd !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #005a8d38, #6dc8e038);
    padding: 40px 0px;
  
    text-align: center;
    color: #000000;
}x

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: var(--bg-white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-cta:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

/* Forms and Inputs */
.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  background: var(--bg-white);
  padding: 0.5rem;
  border-radius: 28px;
}

.input-group .btn {
  background: transparent;
  color: var(--bg-white);
}

input#srch-term {
  border: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(255 255 255);
}
i.fa.fa-search {
  color: var(--primary-color);
}



.ts {
  width: 70px;
  height: 67px;
  background-position: -5px -66px;
}

/* Media Queries */
@media (max-width: 768px) {
  button.btn.btn-cta {
    margin-bottom: 20px;
}
  .banner-image, .right-banner img, .featured-image, .right-featured img {
    height: 180px;
  }
  .banner-content, .right-banner-content, .featured-content, .right-featured-content {
    padding: 0.9375rem;
  }
  .banner-title a, .right-banner-title a, .featured-title a, .right-featured-title a {
    font-size: 1.2rem;
  }
  .banner-price, .featured-price {
    font-size: 1rem;
  }
  .banner-info li, .featured-info li {
    font-size: 0.9rem;
  }
  .get-quote-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
  .jk-about-title h2 {
    font-size: 1.5rem;
  }
  .jk-about-title h3 {
    font-size: 2rem;
  }
  .jk-about-content p {
    font-size: 0.9rem;
  }
  .jk-about-bottom p {
    font-size: 1rem;
  }
  .ps-btn--warning {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
  .content-box h2 {
    font-size: 1.1rem;
  }
  .content-box h3 {
    font-size: 1rem;
  }
  .rating-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .rating-summary > div {
    border-right: none !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
  }
  .rating-summary > div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .footer-top h3, .footer-bottom h4 {
    font-size: 1.25rem;
  }
  .footer-form textarea {
    height: 120px;
  }
}