:root {
--hover-color: #50B08C;
--text-body: #212529;
--text-muted: #6c757d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px;}
body { background-color: #fff; font-family:'Mulish', sans-serif; font-weight:400; font-size:1rem; color: var(--text-body);
       line-height:1.6; -webkit-font-smoothing:antialiased; }
h1,h2,h3 { font-weight:600; line-height:1.2; margin:0 0 .6em; color: #000; letter-spacing:-0.01em; }
h1 { font-size: 1.5rem;} /* Big but thin */
h2 { font-size: 1.25rem; }
h3 { font-size: 1rem; }
h4 { font-size: .875rem; } /* Keep small headers slightly bolder for hierarchy */
h5 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
p { color: var(--text-body); }
.small-text { color: #6c757d; /* muted */}

a {text-decoration: none;}

.container {
  width: 100%;
  max-width: 1200px;   /* adjust if needed (1100–1300px) */
  margin: 0 auto;      /* center horizontally */
  padding: 0 10px;     /* space on left & right */
}
@media (max-width: 768px) { .container { padding: 0 15px;}}

.layout-1col { 
  margin-top: 2rem;
  margin-bottom: 2rem; 
  display: block; }

.layout-2col {
  margin-top: 2rem;
  margin-bottom: 2rem; 
  display: grid;
  grid-template-columns: 1fr 280px; /* content | sidebar */
  gap: 20px;
}

@media (max-width: 768px) {
  .layout-2col { padding: 1rem 2rem; grid-template-columns: 1fr; }
  .sidebar { order: 2; /* stays below content */}
}
 
.section-header { margin-bottom: 20px; }

.section-title {
  font-weight: 600;
  color: #3C312E;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #50B08C;

}

/* description */
.section-desc {
  color: #6F6F6F;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 auto;
}


.feature-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3C312E;
  margin: 30px 0;
  position: relative;
}

.feature-title::before,
.feature-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #E0D8D5;
}

.feature-title::before {
  left: 0;
}

.feature-title::after {
  right: 0;
}

/* --- NAVIGATION --- */
.site-header { 
background-color: #3c312e;
display: flex;
width: 100%;
left: 0;  
padding: 1rem 2rem;   

top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
justify-content: space-between; 
align-items: center; 
}
.logo img { height: 60px; width: auto; display: block;}

.nav-links { list-style: none; display: flex;}
.nav-links a { 
    position: relative; /* ADD THIS */
    padding: 8px 12px;
    color: #F5F5F5;
    text-transform: uppercase;
    text-decoration: none; 
    font-size:.875rem; 
    font-weight: 600; 
    transition: var(--transition); }

.nav-links a:hover { color:#50B08C; }

/* 
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #50B08C;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
*/

/* Parent LI needs relative positioning */
.nav-links li { position: relative;}
/* Hide the sub-menu by default */

.sub-menu {
  background: #FFFFFF;
  position: absolute;
  z-index: 1001;
  
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  list-style: none;

  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.has-dropdown:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Sub-menu list items */
.sub-menu li { width: 100%;}
.sub-menu li a { color: #0F2A25; display: block; display: block; white-space: nowrap; transition: background-color 0.25s ease, color 0.25s ease; }

/* Background change on hover for sub-links */
.sub-menu li a:hover { /* background-color: #E6F4EF; */ color: #50B08C;}
/* --- HAMBURGER STYLING --- */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: var(--white, #fff); transition: 0.3s; }


/* --- MOBILE RESPONSIVENESS (Update your existing Media Query) --- */
@media (max-width: 900px) {
    .site-header { padding: 0.8rem 3%; display: flex; justify-content: space-between; align-items: center;}
    .menu-toggle { margin-left: 10px; display: flex; /* Show hamburger */ z-index: 1002;}
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: #0A192F; padding: 2rem 0; text-align: center; box-shadow: 0 10px 10px rgba(0,0,0,0.2); }
    /* Class to show menu when toggled */
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; padding: 15px 0; }
    /* Sub-menu adjustments for mobile */
    .sub-menu { background: #FFFFFF; position: static; width: 100%; display: none; }
    .has-dropdown:hover .sub-menu { display: block; }
}

/* --- HERO SLIDER (Updated for Multiple Images) --- */
.hero-slider-container { position:relative; width:100%; height:60vh; overflow:hidden; background:#000; z-index: 1; /* Keep this low */}
.hero-slider { width:100%; height:100%; }
.slide { position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition:opacity 1s ease-in-out; display:flex; align-items:center; padding:0 5%; z-index:1; }
.slide.active { opacity:1; z-index:2; }
.slide img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; object-position:center 20%; z-index:-2; }
.slide::after { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); z-index:-1; }
.hero-content { color: #F5F5F5; position:relative; z-index:10; }
.hero-content .title { font-size:2.5rem; margin-bottom:0.8rem; line-height:1.1; }
.hero-content p { font-size:1.5rem; color: #F5F5F5; margin-bottom:2rem; opacity:0.9; }

/* Navigation Dots Styles */
.slider-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:100; }
.dot { width:12px; height:12px; background:rgba(255,255,255,0.4); border-radius:50%; cursor:pointer; transition:var(--transition); }
.dot.active,.dot:hover { background:var(--white); transform:scale(1.2); }
@media (max-width:768px) { .hero-content h1 { font-size:2.2rem; } .hero-content p { font-size:1rem; } }


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(60, 49, 46, 0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Image Area */
.product-image-container { padding:10px; width:100%; height:240px; background:#fdfdfd; display:flex; align-items:center; justify-content:center; overflow:hidden; border-radius:var(--radius); }
.product-image-container a { width:100%; height:100%; display:block; }
.product-image-container img { width:100%; height:100%; object-fit:cover; display:block; border-radius:12px; }

/* Content Area */
.product-content { background-color: #F8F7F6; padding:1rem; display:flex; flex-direction:column; flex-grow:1;}
.product-content h3 { line-height:1; min-height:calc(1em * 2); color:var(--deep-teal); }
.product-content h3 a:hover{ color: #50B08C; transform: translateX(4px); }
.product-content a { color: var(--slate-grey); text-decoration:none; }
/*
.product-excerpt {  font-size:0.875rem; margin-bottom:.5rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical; overflow: hidden; height: calc(1.4em * 4); overflow:hidden; }
*/

/* --- PRODUCT PRICE RATING--- */
.product-price-rating { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: .5rem; }
.price-box { background:var(--light-bg); padding:6px 10px; border-radius:8px; margin:0; display:flex; align-items:center; gap:4px; }
.price-value { display:block; font-size:1.25rem; font-weight:600; color: #50B08C; }

/* --- BUTTON GROUP CONTAINER --- */
.product-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.product-actions.single {
  justify-content: left;
}
.product-actions.single .btn-primary {
  flex: unset;
  width: fit-content;
  padding: 10px 20px;
}

/* BASE BUTTON */
.btn-primary, .btn-secondary {
  flex: 1;
  padding: 9px 6px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #3C312E;
  color: #ffffff;
  border: 1px solid #3C312E;
}

a.btn-primary { color: #ffffff;}
a.btn-primary:hover {
  background: #50B08C;
  border-color: #50B08C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 176, 140, 0.25); /* green glow */
}

a.btn-secondary {
  background-color: #ffffff;
  color: #3C312E;
  border: 1px solid #E0D8D5;
}
a.btn-secondary:hover {
  background: #F3EFED; /* warm light hover */
  border-color: #3C312E;
  color: #50B08C;
  transform: translateY(-2px);
}

a.btn-primary:active,
a.btn-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}


@media (max-width: 400px) {
  .product-actions {
    flex-direction: column;
  }
}


/* SIDEBAR STYLES */
.sidebar-container {
  background: #FAF9F8; /* warm light instead of pure white */
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(60, 49, 46, 0.08); /* ties to header color */
}

.sidebar-container h3 {
  text-transform: uppercase;
  font-weight: 600;
  color: #3C312E; /* match header */
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #E8E3E1;
}

.sidebar-container h3:first-of-type {
  margin-top: 2rem;
}


.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* ICON (arrow) */
.sidebar-nav a::before {
  content: "›";
  font-size: 14px;
  color: #50B08C;
  transition: 0.25s ease;
}

/* HOVER */
.sidebar-nav a:hover {
  /* background: #EDE7E5; /* warm hover */
  color: #50B08C;
  transform: translateX(4px);
}

.sidebar-nav a:hover::before {
  transform: translateX(3px);
}
                 
.sidebar-search {
  display: flex;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0D8D5;
  background: #fff;
}

.sidebar-search input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  color: #3C312E;
}

.sidebar-search button {
  background: #50B08C;
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.sidebar-search button:hover {
  background: #3e9475;
}

/* --- BREADCRUMB STYLES --- */
.breadcrumb-container { padding:1rem 3%; background: #F3EFED; border-bottom:1px solid #e5e7eb; }
.breadcrumb-list { display:flex; flex-wrap:wrap; align-items:center; gap:0.5rem; list-style:none; margin:0; padding:0; }
.breadcrumb-item { display:flex; align-items:center; font-size:.75rem; }
.breadcrumb-item + .breadcrumb-item::before { content:"›"; margin:0 0.5rem; color:#9ca3af; font-weight:600; }
.breadcrumb-item a { text-decoration:none; font-weight:600; position:relative; }
.breadcrumb-item a:hover { color: #50B08C; }
.breadcrumb-item.active { color: #50B08C; font-weight:600; pointer-events:none; }
.breadcrumb-item.visited { color: purple;}
/* 
.breadcrumb-item a:hover::after { width:100%; }
*/

@media (max-width:600px) { .breadcrumb-container { padding:10px 5%; } .breadcrumb-list { font-size:0.75rem; } }

/* ---ERROR 404 --- */
/*
.error-page { height:50vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:0 5%; }
.error-code { font-size:10rem; font-weight:600; color:var(--light-bg); line-height:1; position:relative; margin-bottom:-40px; z-index:-1; }
.error-content h1 { color:var(--deep-teal); font-size:2.5rem; margin-bottom:1rem; }
.error-actions { margin-top:2rem; display:flex; gap:1rem; justify-content:center; }
.error-actions a { text-decoration:none; }
@media (max-width:600px) { .error-actions { flex-direction:column; } }
*/

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.error-404_code {
  font-size: 10rem;
  color: #3c312e;
  margin-bottom: 0.5rem;
}

.error-404_title {
  margin-bottom: 0.5rem;
}

.error-404_desc {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.error-404_btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #3c312e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #3C312E;
  color: #EDEDED;
  padding: 20px 0 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-brand img {
  max-width: 160px;
  opacity: 0.9;
}

.footer-contact {
  font-style: normal;

}

.icon-item {
  margin-bottom: 0;
  color: #D6D6D6;
}

.icon-item strong {
  color: #FFFFFF;
  margin-right: 5px;
}

.icon-item a {
  color: #D6D6D6;
  text-decoration: none;
  transition: color 0.25s ease;
}

.icon-item a:hover {
  color: #50B08C;
}

.icon-item::before {
  margin-right: 6px;
  color: #50B08C;
}

.icon-item:nth-child(1)::before { content: "📍"; }
.icon-item:nth-child(2)::before { content: "📞"; }
.icon-item:nth-child(3)::before { content: "✉"; }
.icon-item:nth-child(4)::before { content: "⏰"; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #BFBFBF;
}

.footer-copyright a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-copyright a:hover {
  color: #50B08C;
}

/* Add divider line under logo */
.footer-brand {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Add subtle hover lift */
.footer-item:hover {
  transform: translateX(2px);
  transition: 0.2s ease;
}

/* --- PAGINATION CONTAINER --- */
.pagination-container { margin:1rem 0; display:flex; justify-content:center; }
.pagination-list { display:flex; align-items:center; list-style:none; gap:8px; background: #F3EFED; padding:8px 15px; border-radius:12px; border:1px solid #eee; box-shadow:0 4px 15px rgba(0,0,0,0.03); }
.pagination-link { color:#212529; text-decoration:none; font-weight:600; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:all 0.3s ease; }
.pagination-link.active { background-color:#50B08C; color:#ffffff; box-shadow:0 4px 10px rgba(0,136,204,0.3); }
.pagination-link:hover:not(.active) { background-color:#50B08C; color:#ffffff; }
.pagination-link.prev,.pagination-link.next { width:auto; padding:0 20px; border-radius:30px; text-transform:uppercase; letter-spacing:1px; font-size:0.75rem; }
.pagination-link.prev span,.pagination-link.next span { margin:0 5px; }
@media (max-width:480px) { .pagination-link.prev span,.pagination-link.next span { display:none; } .pagination-link.prev,.pagination-link.next { width:40px; padding:0; } }

/* --- BRAND GRID --- */
.brand-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:15px; align-items:center; }
.brand-grid a { display:flex; align-items:center; justify-content:center; padding:18px; background:#f8fafc; border-radius:12px; border:1px solid #e2e8f0; transition:var(--transition); }
.brand-grid img { max-width:100%; max-height:40px; object-fit:contain; filter:grayscale(100%) opacity(0.7); transition:var(--transition); }
.brand-grid a:hover { transform:translateY(-4px); box-shadow:0 6px 18px rgba(0,0,0,0.06); border-color:var(--electric-blue); }
.brand-grid a:hover img { filter:grayscale(0%) opacity(1); }
@media (max-width:768px) { .brand-grid { gap:15px; } .brand-grid img { max-height:32px; } }

/* This hides the element visually but keeps it accessible to machines/crawlers */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; }
/* ===== BACK TO TOP ===== */
#backToTop { background: #DFF1EA; color: #0F2A25; position:fixed; bottom:30px; right:30px; z-index:99; 
             border:none; outline:none;  
             cursor:pointer; padding:8px 12px; border-radius:50%; display:none; transition:0.3s; }
#backToTop:hover { background: #50B08C;; transform:scale(1.05); }

/* PRODUCT SINGLE */
.product-single-top { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;}
.product-single-summary { display: flex; flex-direction: column; gap: 10px;}
.product-single-gallery img:hover { transform: scale(1.05); transition: 0.3s ease; }
.product-single-content { background-color: #F8F7F6; margin-top: 20px; padding: 20px; border: 1px solid #e5e3e1; border-radius: 12px; }
.product-single-content h2, .product-single-content h3, .product-single-content h4 {
    letter-spacing: 1px; margin-bottom: 10px; color: #3C312E; }
.product-single-content a { text-decoration:none; color: var(--text-body); }
.product-single-content .title { margin-bottom: 10px; font-weight: 600; }

.product-single-content p { margin-bottom:1rem; }
.product-single-content ul, .product-content ol { padding-left:1.2rem; margin-bottom:1.2rem; }
.product-single-content li { margin-bottom:.2rem; position: relative; padding-left: 5px; }

.product-single-content table { width:100%; border-collapse:collapse; background:var(--white); border:1px solid #eee; border-radius:8px; overflow:hidden; margin:1.4rem 0; }
.product-single-content th { background:var(--light-bg); color:var(--deep-teal); text-align:left; padding:6px 7px; font-weight:600; border-bottom:2px solid #eee; }
.product-single-content td { padding:6px 7px; border-bottom:1px solid #eee; }
.product-single-content tr:nth-child(even) { background:#fafafa; }

.product-single-main-image { background:#ffffff; border:1px solid #eee; border-radius:12px; padding:1rem; text-align:center; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
#featured-image { max-width:100%; max-height:100%; object-fit:contain; border-radius:12px; cursor: zoom-in;}
.product-single-thumb-strip { display:flex; flex-wrap:wrap; gap:5px; overflow-x:auto; padding-bottom:5px; }
.product-single-thumb-strip::-webkit-scrollbar { height:4px; }
.product-single-thumb-strip::-webkit-scrollbar-thumb { background:#ddd; border-radius:10px; }
.product-single-thumb { width:80px; height:80px; border:2px solid #eee; border-radius:8px; cursor:pointer; object-fit:cover; transition:var(--transition); }
.product-single-thumb:hover { color: #50B08C; border-color: #50B08C; }
.product-single-thumb.active { border-color: #50B08C; box-shadow:0 2px 8px rgba(0,136,204,0.2); }
.product-single-short-desc {line-height:1.4; min-height:calc(1em * 2)};

.product-single-box { background:var(--light-bg); padding:.5rem; border-radius:8px; margin:1rem 0; }
.product-single-label { font-size:0.75rem; display:block; color:#888; }
.product-single-value { display:block; font-size:1.25rem; font-weight:600; color: #50B08C; }
.product-single-actions { display:flex; flex-direction:column; gap:1rem; margin-bottom:1rem; }

.related-sidebar-list { margin-top:1rem; padding-top:1rem; border-top:1px solid #eee; }
.related-sidebar-list h3 { text-transform:uppercase; letter-spacing:1.5px; margin-bottom:1.2rem; }
.related-row { display:flex; align-items:center; text-decoration:none; padding:12px; margin-bottom:10px; background:#fff; border:1px solid #f0f0f0; border-radius:10px; }
.related-row-thumb { width:80px; height:80px; flex-shrink:0; background:#f8f9fa; border-radius:6px; display:flex; align-items:center; justify-content:center; margin-right:15px; overflow:hidden; }
.related-row-thumb img { max-width:85%; max-height:85%; object-fit:contain; }
.related-row-info { flex-grow:1; display:flex; flex-direction:column; }
.related-row-title a { font-size: 1rem; color: #3C312E;}
.related-row-price {font-weight:600; color: #50B08C; }

/* END PRODUCT SINGLE */


/* USE TOGETHHER */
.product-rating { display:flex; align-items:center; gap:4px; }
.product-rating .stars { color: #f5a623; font-size:0.75rem; letter-spacing:1px; }
.product-rating .rating-count { color:var(--slate-grey); font-size:0.75rem; opacity:0.7; font-weight:600; }
.empty-star { color:#DDD; }

.brand-category-tag {  font-size:0.75rem; font-weight:600; display: block; margin-bottom: .5rem; line-height:1; min-height:calc(1em * 2);}
.brand-category-tag .brand::after { content:"|"; margin-left:4px; margin-right:4px; }
.brand-category-tag a { color: #212529; text-decoration: none;}
.brand-category-tag a:hover { color: #50B08C; transform: translateX(4px);  }

/* END USE TOGETHHER */


/* WRAPPER (keep flex from earlier) */

.wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr; /* contact bigger */
  gap: 40px;
  margin-bottom: 20px;

}

@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
}

/* CARD STYLE (shared) */
.contact-form, .company {
    padding: 15px 30px;
    border-radius: 12px;
}

.contact-form {
    background-color: #F8F7F6;
}
.company {
    background: #3C312E;
}
/* --- Inquiry Form Styles --- */

.form-row { display: flex; gap: 5px;}
.form-row .form-group { flex: 1;}
@media (max-width: 768px) { .form-row { flex-direction: column; }}
.form-group { margin-bottom: 20px;} 
.form-group small { color: red;}
.form-group label { display: block; margin-bottom: 5px; font-weight: 600;} 
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 12px; outline: none; } 
.form-group input:focus, .form-group textarea:focus { border-color:#50B08C; } 
.hide-field { display:none; }

/* ========================= */
/* COMPANY INFO */
/* ========================= */

.company {
   
}
.company h2 {
    margin-bottom: 15px;
    color: #fff;
}

/* spacing for sections */
.company .info-block {
    margin-bottom: 40px;
}

/* text */
.company p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
    
}


.captcha-inline{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:8px;
}

.captcha-image{
    width:180px;
    height:60px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
}

.captcha-input{
    flex:1;
    min-width:160px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.captcha-input:focus{
    outline:none;
    border-color:#222;
}

.captcha-refresh{
    width:46px;
    height:46px;
    border:none;
    border-radius:8px;
    background:#111;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.captcha-refresh:hover{
    opacity:.9;
}

@media (max-width:768px){
    .captcha-inline{
        flex-direction:column;
        align-items:stretch;
    }

    .captcha-image{
        width:100%;
        max-width:220px;
    }

    .captcha-refresh{
        width:100%;
    }
}


/* ===============================
   Alert Base
================================= */
.alert{
    position:relative;
    padding:16px 18px;
    margin:0 0 20px 0;
    border-radius:10px;
    border:1px solid transparent;
    font-size:15px;
    line-height:1.6;
    box-shadow:0 4px 12px rgba(0,0,0,.04);
}

/* ===============================
   Success Alert
================================= */
.alert-success{
    background:#ecfdf3;
    border-color:#b7ebc6;
    color:#166534;
}

/* ===============================
   Error Alert
================================= */
.alert-danger{
    background:#fef2f2;
    border-color:#fecaca;
    color:#991b1b;
}

/* ===============================
   Close Button
================================= */
.alert .close{
    position:absolute;
    top:10px;
    right:12px;
    border:none;
    background:transparent;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    color:inherit;
    opacity:.65;
    padding:0;
}

.alert .close:hover{
    opacity:1;
}

/* ===============================
   List Styling
================================= */
.alert ul{
    margin:10px 0 0 18px;
    padding:0;
}

.alert li{
    margin-bottom:6px;
}

/* ===============================
   Strong Title
================================= */
.alert strong{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

/* ===============================
   Responsive
================================= */
@media (max-width:768px){

    .alert{
        padding:14px 15px;
        font-size:14px;
    }

    .alert .close{
        font-size:20px;
        top:8px;
        right:10px;
    }
}

/*
.nav-links a::after, .breadcrumb-item a::after {
content: ""; position: absolute; width: 0; height: 2px; background: #50B08C; left: 0; bottom: -4px; transition: 0.3s;
}
*/