@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root{
    --primary:#1D4A66;
    --dark:#000000;
    --light:#f8fafc;
    --border:#e8edf2;
}
body {
    font-family: 'Inter', sans-serif !important;
}
.cursor {
    cursor:pointer;
}
.alert {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    border: none !important;
}
.alert-danger {
    background-color: #e31d49 !important;
}
.alert-info {
    background-color: #2B5F7F !important;
}
.alert-success {
    background-color: #1d9c73 !important;
}
.alert-warning {
    background-color: #e8a020 !important;
}
.top-bar marquee .m-item {
    margin-left: 20px;
}
/* --- Modern Page Banner Styling --- */
.page-banner {
    background: linear-gradient(135deg, #326e93 0%, #25506b 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.banner-content {
    text-align: center; /* Centered content is standard for page banners */
}

.banner-title {
    font-size: 2rem; /* Large, bold title */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: capitalize;
}

/* Breadcrumb Styling inside Banner */
.banner-breadcrumb .breadcrumb-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.banner-breadcrumb li, 
.banner-breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.banner-breadcrumb li a:hover {
    color: #bda881; /* Your Gold Accent Color on hover */
}

.banner-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}

.banner-breadcrumb .active {
    color: #bda881; /* Highlight current page in Gold */
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }
    .banner-title {
        font-size: 2.5rem;
    }
}
 
/* Container for the entire brand card */
.brand-display-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-display-card:hover {
    border-color: #0056b3; /* Your Corporate Blue */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* The box that forces all images into the same size area */
.brand-logo-box {
    width: 100%;
    height: 100px; /* Adjust height to your preference */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.brand-logo-box img {
    max-width: 100%;
    max-height: 100%;
    /* Key fix: maintains aspect ratio without cropping */
    object-fit: contain; 
    transition: 0.3s ease;
}

/* Optional: Corporate grayscale effect used in modern wholesale sites */
.brand-logo-box img {
    /*filter: grayscale(100%);*/
    opacity: 0.9;
}

.brand-display-card:hover .brand-logo-box img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Typography for brand title */
.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
}
  /* ══════════════════════════════════════
     VIDEO SECTION
  ══════════════════════════════════════ */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 480px;
    max-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */
.video-section video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: 0;
filter: brightness(0.55) saturate(0.8);
}

/* LAYERED GRADIENT OVERLAYS */
/* 1 — deep bottom vignette (lifts content) */
.vs-overlay-bottom {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
  to top,
  rgba(6, 14, 20, 0.96) 0%,
  rgba(6, 14, 20, 0.6)  28%,
  transparent           60%
);
}
/* 2 — brand colour wash from left */
.vs-overlay-left {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(105deg, rgb(29 68 102 / 72%) 0%, rgba(14, 45, 64, 0.45) 38%, transparent 68%);
}
/* 3 — subtle dark top edge */
.vs-overlay-top {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(to bottom, rgb(10 142 255 / 45%) 0%, transparent 22%);
}
/* 4 — diagonal accent stripe (decorative) */
.vs-stripe {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
  125deg,
  transparent 52%,
  rgba(232, 160, 32, 0.04) 52%,
  rgba(232, 160, 32, 0.04) 53%,
  transparent 53%
);
}
/* 5 — noise grain for depth */
.vs-grain {
position: absolute;
inset: 0;
z-index: 1;
opacity: 0.035;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
background-size: 128px 128px;
pointer-events: none;
}

/* CONTENT LAYER */
.vs-content {
position: relative;
z-index: 10;
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
display: flex;
flex-direction: column;
align-items: flex-start;
}

/* Eyebrow */
.vs-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(29, 74, 102, 0.35);
border: 1px solid rgba(232, 160, 32, 0.35);
border-radius: 100px;
padding: 6px 16px 6px 10px;
margin-bottom: 24px;
opacity: 0;
transform: translateY(16px);
animation: fadeUp 0.7s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vs-eyebrow-dot {
width: 22px;
height: 22px;
border-radius: 50%;
background: var(--accent);
display: flex;
align-items: center;
justify-content: center;
}
.vs-eyebrow-dot i { font-size: 9px; color: #fff; }
.vs-eyebrow span {
font-family: 'Inter', sans-serif !important;
font-size: 11.5px;
font-weight: 500;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255,255,255,0.75);
}

/* Main headline */
.vs-headline {
font-family: 'Inter', sans-serif !important;
font-size: clamp(52px, 7.5vw, 108px);
font-weight: 800;
line-height: 0.93;
letter-spacing: -0.025em;
color: #fff;
margin-bottom: 8px;
opacity: 0;
transform: translateY(22px);
animation: fadeUp 0.75s 0.38s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vs-headline .hl-accent {
color: transparent;
-webkit-text-stroke: 2px rgba(255,255,255,0.55);
}
.vs-headline .hl-gold { color: var(--accent); }

/* Sub headline */
.vs-sub {
font-family: 'Inter', sans-serif !important;
font-size: clamp(14px, 2vw, 22px);
font-weight: 500;
letter-spacing: 0.22em;
text-transform: uppercase;
color: rgba(255,255,255,0.55);
margin-bottom: 36px;
opacity: 0;
transform: translateY(18px);
animation: fadeUp 0.7s 0.54s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vs-sub .sub-line {
display: inline-block;
width: 36px;
height: 1.5px;
background: var(--accent);
vertical-align: middle;
margin-right: 12px;
}

/* Body copy */
.vs-body {
font-size: 15px;
font-weight: 300;
color: #fff;
line-height: 1.75;
margin-bottom: 44px;
opacity: 0;
transform: translateY(14px);
animation: fadeUp 0.7s 0.68s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* CTA buttons */
.vs-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.7s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.btn-primary {
    align-items: center;
    gap: 10px;
    background: #1d4a66;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
    height: 45px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #2f5c77; color:#fff !important; transform: translateY(-2px); }
.btn-primary i { font-size: 14px; }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    color: #fff;
    transform: translateY(-2px);
}
.btn-inventory-download {
    background: #5cb05c !important;
    font-size: 12px !important;
    padding: 12px !important;
}

/* STATS STRIP */
.vs-stats {
position: absolute;
bottom: 36px;
left: 0;
right: 0;
z-index: 10;
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
display: flex;
align-items: center;
gap: 0;
opacity: 0;
transform: translateY(14px);
animation: fadeUp 0.7s 1.0s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vs-stat {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 18px 28px;
border-left: 1px solid rgba(255,255,255,0.1);
}
.vs-stat:first-child { border-left: none; padding-left: 0; }
.vs-stat-num {
font-family: 'Inter', sans-serif !important;
font-size: 30px;
font-weight: 800;
color: #fff;
line-height: 1;
margin-bottom: 4px;
}
.vs-stat-num span { color: var(--accent); }
.vs-stat-label {
font-size: 11.5px;
font-weight: 400;
color: rgba(255,255,255,0.4);
letter-spacing: 0.08em;
text-transform: uppercase;
}

/* SCROLL HINT */
.vs-scroll-hint {
position: absolute;
bottom: 36px;
right: 60px;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
opacity: 0;
animation: fadeUp 0.7s 1.15s cubic-bezier(0.4,0,0.2,1) forwards;
}
.vs-scroll-hint span {
writing-mode: vertical-rl;
font-size: 10px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(255,255,255,0.3);
font-family: 'Inter', sans-serif !important;
}
.vs-scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
0%, 100% { transform: scaleY(1); opacity: 0.5; }
50% { transform: scaleY(1.3); opacity: 1; }
}

/* PLAY BUTTON overlay (center-ish) */
.vs-play-hint {
position: absolute;
top: 50%;
right: 10%;
transform: translate(0, -50%);
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
opacity: 0;
animation: fadeIn 0.8s 1.2s ease forwards;
}
.vs-play-circle {
width: 62px;
height: 62px;
border-radius: 50%;
border: 1.5px solid rgba(255,255,255,0.3);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: border-color 0.2s, background 0.2s, transform 0.2s;
position: relative;
}
.vs-play-circle::before {
content: '';
position: absolute;
inset: -8px;
border-radius: 50%;
border: 1px solid rgba(255,255,255,0.1);
animation: ripple 2.5s ease-out infinite;
}
@keyframes ripple {
0% { transform: scale(1); opacity: 0.5; }
100% { transform: scale(1.5); opacity: 0; }
}
.vs-play-circle:hover {
background: rgba(232,160,32,0.25);
border-color: var(--accent);
transform: scale(1.08);
}
.vs-play-circle i { font-size: 18px; color: #fff; margin-left: 3px; }
.vs-play-label {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255,255,255,0.35);
font-family: 'Inter', sans-serif !important;
}

/* MUTE TOGGLE */
.vs-mute-btn {
position: absolute;
top: 24px;
right: 24px;
z-index: 20;
width: 38px;
height: 38px;
background: rgba(0,0,0,0.35);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: rgba(255,255,255,0.7);
font-size: 13px;
transition: background 0.2s, color 0.2s;
}
.vs-mute-btn:hover { background: rgba(29,74,102,0.6); color: #fff; }

/* KEYFRAMES */
@keyframes fadeUp {
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
.vs-content { padding: 0 28px; }
.vs-stats { padding: 0 28px; bottom: 20px; }
.vs-stat { padding: 12px 16px; }
.vs-stat-num { font-size: 22px; }
.vs-play-hint { display: none; }
.vs-scroll-hint { display: none; }
.vs-headline { margin-top:10% }
.vs-eyebrow { margin-bottom:0px }
.video-section {
    position: relative;
    width: 100%;
    height: 30vh;
}
}
@media (max-width: 600px) {
.vs-content { padding: 0 20px; }
.vs-stats { flex-wrap: wrap; gap: 8px; padding: 0 20px; bottom: 16px; }
.vs-stat { flex: 0 0 calc(50% - 4px); border-left: none; padding: 10px 0; }
.vs-body { display: none; }
.vs-ctas { margin-top:10% }
.vs-ctas a { display:inline-block; float:left }
}


.get-price-heading {
  font-size: 75px;
  text-align: center;
  margin-top: 8%;
  margin-bottom: 8%;
  font-weight: 500;
  font-family: 'Inter', sans-serif !important;
  color: #FFA500;
  line-height: 1;
}
.team-area .single-item {
  margin-bottom: 30px;
}

.team-area .item .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.team-area .item .thumb::after {
  background: #232323 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
}

.team-area .team-items .item:hover .thumb::after {
  opacity: 0.7;
}

.team-area .item .thumb .overlay {
  top: -100%;
  left: 0;
  padding: 20px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: 1;
}

.team-area .item:hover .thumb .overlay {
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.team-area .item .thumb .overlay p {
  color: #ffffff;
}

.team-area .item .thumb .overlay h4 {
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.team-area .item .thumb img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-area .item:hover .thumb img {
  opacity: .6;
}

.team-area .item .thumb .social li {
  display: inline-block;
}

.team-area .item .thumb .social li a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin: 0 2px;
  text-align: center;
  width: 40px;
}

.team-area .info {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 10px 0px 10px;
  position: relative;
  text-align: center;
  z-index: 9;
  border-bottom: 5px solid #FFA500;
}
.team-area .info:hover {
    
}

.team-area .info .message {
  height: 50px;
  line-height: 40px;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.team-area .info .message a {
  background: #fff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  box-sizing: border-box;
  color: #ff5a6e;
  display: inline-block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  width: 50px;
}

.team-area .info .message a i {
  font-weight: 500;
}

.team-area .info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-area .info span {
  color: #FFA500;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  text-transform: uppercase;
}

.team-area .social li.twitter a {
  background-color: #00b6f1;
}

.team-area .social li.pinterest a {
  background-color: #bd081c;
}

.team-area .social li.facebook a {
  background-color: #3b5998;
}

.team-area .social li.google-plus a {
  background-color: #df4a32;
}

.team-area .social li.vimeo a {
  background-color: #1ab7ea;
}

.team-area .social li.instagram a {
  background-color: #cd486b;
}

.checkbox-mini {
    height: 15px !important;
    display: inline-block !important;
    float: left !important;
    width: 30px !important;
    margin-top: 5px !important;
}
.account_form label {
    color: #2B3137;
    font-weight: 550;
}
.account_form input {
    border: 1px solid #c1bdbd !important;
}
.account_form select {
    border-radius: 0px !important;
    border: 1px solid #c1bdbd !important;
}
.account_form button {
    margin-left:0px !important;   
}
.cat-a {
  font-size: 20px;
}
.teamimg {
    height: 300px;
    width: -webkit-fill-available;
}
.choose-us-section {
    padding: 5%;
    background-color: #01146d;
    color: #fff;
}
.choose-sec-mini {
    padding: 3%;
    padding-top:5%;
    background-color: #fff;
    color: black;
    border: 2px solid #fff;
    text-align: center;
    border-radius:5px;
    margin-top: 3%;
}
.choose-sec-mini h4 {
    font-size:25px;
}
.choose-sec-mini:hover {
    background-color: #FFA500;
    color: #fff;
}
.home-desc-left {
    text-align: justify;
}
.single_product {
    height: 150px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}
 

#scrollUp {
    display:none !important;
}
.quick-op {
    display:inline-block;
    margin-left: 5%;
    margin-right: 5%;
}
.quick-email {
    color:#254868;
}
.quick-whatsapp {
    color:#31d24e;
}



/* Filter Box */
.filter-box{
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.filter-box label{
    font-size:13px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:8px;
}

.filter-box .form-select{
    height:48px;
    border-radius:12px;
    border:1px solid #d8e0e7;
    font-size:14px;
    padding:0 14px;
    box-shadow:none;
    transition:.25s ease;
}

.filter-box .form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(29,74,102,.10);
}
.filter-input::placeholder {
    color: #999 !important;
    opacity: 1;
}

/* Product Card */
.product-card{
    background:#fff;
    border: 1px solid #507287;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
    transition:.3s ease;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.product-image-wrap{
    background:linear-gradient(135deg,#f4f8fb,#ffffff);
    padding:20px;
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-bottom: 1px solid #dfdfdf;
}

.product-image{
    max-height:180px;
    width:auto;
    object-fit:contain;
    transition:.35s ease;
}

.product-card:hover .product-image{
    transform:scale(1.06);
}

.product-body{
    padding:20px;
}
.product-main-title {
    color: #2F6689;
    font-size: 26px;
    line-height: 1.5;
}
.product-title{
    font-size:15px;
    font-weight:700;
    color:#111;
    line-height:1.5;
    min-height:46px;
}

.product-price{
    color:var(--primary);
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.login-note{
    color:#d62828;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.product-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:11px 16px;
    font-size:14px;
    font-weight:700;
    transition:.25s ease;
}

.product-btn:hover{
    background:#16394f;
    color:#fff;
}

.empty-box{
    background:#fff;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    font-weight:600;
}

/* Pagination */
.pagination .page-link{
    border:none;
    margin:0 4px;
    border-radius:10px;
    color:var(--dark);
    min-width:40px;
    text-align:center;
}

.pagination .active .page-link{
    background:var(--primary);
    color:#fff;
}

.pagination .page-link:hover{
    background:#eaf1f5;
}



/* Card */
.catalog-item{
    border: 1px solid #507287;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
    transition:.30s ease;
    height:100%;
}

.catalog-item:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

/* Image */
.catalog-thumb{
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.catalog-thumb img{
    max-height: 200px;
    width:auto;
    object-fit:contain;
    transition:.35s ease;
}

.catalog-item:hover .catalog-thumb img{
    transform:scale(1.05);
}

/* Body */
.catalog-body{
    padding:22px;
}

.catalog-title{
    font-size:14px;
    font-weight:800;
    color:#111;
    line-height:1.45;
    min-height:48px;
}
.catalog-meta-area {
    height:60px;
}

.catalog-meta{
    font-size:13px;
    color:#6b7280;
    margin-bottom:4px;
}

/* Badge Chips */
.info-chips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
    margin-bottom:14px;
}

.chip{
    padding: 0px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.chip-price{
    background:rgba(29,74,102,.08);
    color:var(--primary);
}

.chip-stock{
    background:#e8f8ef;
    color:#14804a;
}

.chip-out{
    background:#ffe8e8;
    color:#cc1f1f;
}

.chip-dark{
    background:#111;
    color:#fff;
}

.chip-soft{
    background:#eef3f6;
    color:#222;
}

/* Lead Time */
.lead-box{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:14px;
    padding: 5px 5px;
    font-size:12px;
    margin-bottom:16px;
}

/* Buttons */
.market-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-bottom:10px;
}

.market-btn{
    border: none;
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    transition: .25s ease;
}

.market-btn:hover{
    transform:translateY(-2px);
}


.invoice-btn{
    display:block;
    width:100%;
    text-align:center;
    background:var(--primary);
    color:#fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration:none;
    transition:.25s ease;
}

.invoice-btn:hover{
    background:#16394f;
    color:#fff;
}

/* Empty */
.empty-state{
    background:#fff;
    border-radius:22px;
    padding:60px 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.pd-wrap { padding: 5%; }

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-lg);
  border: 0.5px solid var(--color-border-tertiary);
  background: var(--color-background-secondary);
  overflow: hidden;
  /*cursor: zoom-in;*/
  position: relative;
}
.main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 1px solid #ebebeb;
}
.zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 11px;
  color: #fff;
  background: #285876;
  border-radius: 5px;
  padding: 0px 10px;
  pointer-events: none;
}

.thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--border-radius-md);
  border: 1px solid #ebebeb;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-background-secondary);
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb.active {
  border-color: #244868;
}

.desc-section {
  margin-top: 1rem;
  padding-bottom: 2.5rem;
}

.desc-label { 
    font-size: 24px;
    font-weight: 800;
    color: #222021;
    margin-bottom: 6px;
}
.desc-text { 
    font-size: 16px;
    color: #5e5e5e;
    line-height: 1.6;
}

.details { display: flex; flex-direction: column; gap: 0; }
.bold { font-weight:bold; }
.product-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: #285876;
    color: var(--brand);
    border-radius: 5px;
    padding: 3px 10px;
    margin-bottom: 8px;
    width: fit-content;
    text-align: center;
    color: #fff !important;
}
.product-title {
    font-size: 24px;
    color: #222021;
    line-height: 1.43;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}
.price-amount {
    font-size: 28px;
    font-weight: 500;
}
.price-amount .pricing {
    color:#3C7DA5;
    font-size: 26px;
    font-weight: 400;
}
.price-block {
  background: linear-gradient(135deg, #244868 0%, #2e5a82 100%);
  border-radius: var(--border-radius-lg);
  padding: 10px 15px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.price-login {
  background: #fff8ec;
  border: 0.5px solid #f0c060;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: #8a6000;
  margin-bottom: 1rem;
}
.price-login a {
  color: #244868;
  font-weight: 500;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}
.meta-item {
  background: var(--color-background-secondary);
  border-radius: var(--border-radius-md);
}
.meta-key {
  font-size: 14px;
  color: #244868;
  margin-bottom: 2px;
}
.meta-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.field-row {
  margin-bottom: 0.75rem;
}
.field-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-md);
  border: 0.5px solid var(--color-border-secondary);
  background: var(--color-background-primary);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
}
.qty-input {
  width: 100px;
  border-radius: 5px !important;
  height: 32px;
  text-align: center;
  border: 0.5px solid var(--color-border-secondary);
  background: var(--color-background-primary);
  font-size: 14px;
  color: var(--color-text-primary);
}

select.lead-select {
  width: 100%;
  height: 36px;
  border-radius: var(--border-radius-md);
  border: 0.5px solid var(--color-border-secondary);
  background: var(--color-background-primary);
  color: var(--color-text-primary);
  font-size: 13px;
  padding: 0 10px;
}

.marketplace-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.btn-mkt {
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  border: 0.5px solid;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-amazon {
  background: #ff9900;
  border-color: #e08800;
  color: #fff !important;
}
.btn-walmart {
  background: #0071ce;
  border-color: #005fa3;
  color: #fff !important;
}
.btn-ebay {
  background: #e53238;
  border-color: #c0272c;
  color: #fff !important;
}
.btn-login-to-view {
  background: #285775;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  width: fit-content;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 1rem;
}
.btn-cart {
  background: var(--color-background-primary);
  border-radius: 5px;
  border: 1.5px solid #244868;
  color: #244868 !important;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}
.btn-buy {
  background: #244868;
  border-radius: 5px;
  border: 1.5px solid #244868;
  color: #fff !important;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}
.btn-cart:hover {
  background: #e8f0f8;
}
.btn-buy:hover {
  background: #1a3550;
}

.special-note-label {
  color: #1d4a66;
}

.divider {
  height: 0.5px;
  background: var(--color-border-tertiary);
  margin: 0.75rem 0;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--border-radius-lg);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}


.table-product-details th {
    font-family: 'Inter', sans-serif !important;
     background: #FAFCFF;
}
.table-product-details td {
    font-family: 'Inter', sans-serif !important;
    background: #FAFCFF;
    text-align: center;
    font-size: 14px;
    color: #6c6c6c;
}
.table-product-details tr.moq {
    height: 70px;
    margin-top: 10px;
    border: none;   
}
.table-product-details th.moq {
    font-size: 28px;
    padding-top: 10px;
    border: none !important;
    color: #285876;
    background-color:transparent !important;
}
.table-product-details th.moq span {
    display: inline-block;
    margin-top: 10px;
    font-size: 22px;
}
.table-product-details .quantity-label {
    font-weight:bold;
    float:left;
    margin-top: 10px;
    margin-right: 10px;
}
.table-product-details td.moq  {
    padding-top: 10px;
    border: none !important;
    background-color:transparent !important;
    color: #285876;
 }
/* Sidebar */
.filter-card{
    background:#fff;
    border: 1px solid #eeeeee;
    border-radius:22px;
    padding:26px;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
    position:sticky;
    top:20px;
}

.filter-title{
    font-size:20px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:20px;
}

.filter-block{
    padding-bottom:22px;
    margin-bottom:22px;
    border-bottom:1px solid var(--border);
}

.filter-block:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.filter-label{
    font-size:14px;
    font-weight:800;
    color:#111;
    margin-bottom:14px;
    display:block;
}

.form-select,
.form-control{
    height:42px;
    border-radius:14px;
    border:1px solid #dbe4eb;
    box-shadow:none;
    font-size:14px;
}

.form-select:focus,
.form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(29,74,102,.10);
}

.form-check{
    margin-bottom:10px;
}

.form-check-input{
    width:18px;
    height:18px;
    border:1px solid #c8d5df;
}

.form-check-input:checked{
    background-color:var(--primary);
    border-color:var(--primary);
}

.form-check-label{
    padding-left:6px;
    font-size:14px;
    color:#222;
}

/* Top Toolbar */
.catalog-toolbar{
    background:#fff;
    border: 1px solid #eeeeee;
    border-radius:22px;
    padding:20px;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
    margin-bottom:24px;
}

.search-wrap .input-group-text{
    background:#fff;
    border-right:none;
    border-radius:14px 0 0 14px;
}

.search-wrap .form-control{
    border-left:none;
    border-radius:0 14px 14px 0;
    color:#000 !important;
}

.sort-label{
    font-size:13px;
    font-weight:800;
    color:#111;
    margin-right:10px;
}

/* Product Grid Placeholder */
.catalog-grid{
    min-height:250px;
}

/* Loading */
.loading-box {
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.spinner-border{
    color:var(--primary)!important;
}

/* --- Home Content: Asymmetrical & Bold --- */
.home-content {
    padding: 60px 0px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9fb 100%);
    overflow: hidden;
}
.home-content .badge-modern {
    background: #1D4A66;
    color: #fff;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}
.home-content .title {
    font-size: 3rem;
    font-weight: 800;
    color: #1D4A66;
    line-height: 1.25;
    margin-bottom: 30px;
}
.home-content .outline-text, {
    color: transparent;
    -webkit-text-stroke: 1.5px #1D4A66;
}
.home-content .main-para {
    font-size: 1.2rem;
    color: #444;
    border-left: 4px solid #1D4A66;
    padding-left: 20px;
    margin-bottom: 30px;
}
.home-content .image-stack {
    position: relative;
    padding: 20px;
}
.home-content .main-img {
    width: 100%;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}
.home-content .experience-card {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #1D4A66;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}
.home-content .experience-card h3 {
    font-weight: bold;
    font-size: 42px;
}


/* --- Home Brands: Clean & Glassy --- */
.home-brands {
    padding: 60px 0;
}
.home-brands .brand-top {
    text-align: center;
    margin-bottom: 60px;
}
.home-brands .title {
    font-size: 2.5rem;
    font-weight: 800;
}
.home-brands .highlight { color: #1D4A66; }
.home-brands .brand-glass-card {
    background: #fff;
    border: 1px solid #eee;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 30px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-brands .brand-glass-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #1D4A66;
}
.home-brands .brand-glass-card img {
    max-height: 70px;
    width: auto !important;
    opacity: 0.8;
}
.home-brands .brand-glass-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* --- Home Why: The Bento Grid --- */
.home-why {
    padding: 60px 0;
    background: #1D4A66;
}
.home-why .outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
}
.home-why .title {
    color: #fff;
    font-size: 3rem;
}
.home-why .why-header p {
    color: #fff;
    margin-top: 20px;
}
.home-why .why-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.home-why .bento-item {
    background: #e1e1e3;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #222;
}
.home-why .bento-item:hover {
    transform: translateY(-5px);
}
.home-why .bento-icon {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background-color: #1d4a66;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 30px;
    padding-top: 10px;
}
.home-why .bento-item h4 {
    color: #1d4a66;
    font-weight: 700;
    font-size: 28px;
}
.home-why .bento-item p {
    color: #000;
    font-size: 16px;
}
.home-why .bento-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 80px;
    color: rgba(0, 86, 179, 0.05);
}
.text-orange {
    color: #E8A020 !important;
}

/* --- Global Utilities used for Redesign --- */
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.highlight { color: #1D4A66; } /* Your Primary Corporate Blue */

/* Shared Section Title Styling */
.section-header-centered h2.title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
}
.section-header-centered p, .section-header p, .brand-text p, .why-header p {
    font-size: 16px;
    font-weight: 550;
    color: #838383;
}
.home-team .section-header-centered h2.title { color: #000; } /* Override for dark team section */

/* --- home-team Section Styling (Exact Match image_1.png + 5 Grid) --- */
.home-team {
    background-color: #F8F9FA; /* Matches image_1.png dark background */
}
/* Custom Flex Container for exact fitting of 5 columns */
.team-flex-container {
    display: flex;
    flex-wrap: nowrap; /* Forces one line */
    justify-content: center;
    gap: 15px; /* Spacing between cards */
}
/* Controls the size of each member to fit 5 on one line (calc 100% / 5) */
.team-item-wrap {
    flex: 0 0 calc(20% - 12px); /* 5 items (20%) minus gap allowance */
    max-width: calc(20% - 12px);
}
.home-team .team-card-v1 {
    position: relative;
    padding: 10px;
    background: #1D4A66;
    border-radius: 4px;
    transition: 0.3s ease;
    border-radius: 10px;
}
.home-team .team-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.home-team .gold-box-outer {
    position: relative;
    border: 2px solid #1D4A66; /* Primary Gold Frame from image_1.png */
    padding: 15px; /* Space between frame and image */
    margin-bottom: 25px;
    border-radius: 4px;
    /*display: flex;*/
    justify-content: center;
}
.home-team .image-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px; /* Reduced height to fit 5 items comfortably */
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
}
.home-team .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 50%;
}
.home-team .info-details .name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}
.home-team .info-details .position {
    font-size: 12px;
    font-weight: bold;
    color: #ffe6ad; /* Corporate Blue position title */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.home-team .icon-link {
    display: block;
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 6px;
    transition: 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Handles long emails gracefully in small columns */
}
.home-team .icon-link:hover {
    color: #1D4A66;
}
.home-team .icon-link i {
    color: #bda881; /* Gold Icons */
    margin-right: 5px;
    font-size: 0.9rem;
}

/* --- home-testimonials Section Styling (Layered Innovation) --- */
.home-testimonials {
    background-color: #f8f9fa; /* Off-white innovation break */
}
.home-testimonials .testimonial-layered-card {
    position: relative;
    padding: 20px 0; /* Creates vertical padding for layers */
    transition: 0.4s;
}
/* Base styles for decorative background layers */
.home-testimonials .layer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: 0.4s;
}
.home-testimonials .layer-dark {
    background: #1a1a1a;
    top: 15px;
    left: 15px;
    z-index: 1;
}
.home-testimonials .layer-blue {
    background: #1D4A66;
    top: 30px;
    left: 30px;
    z-index: 2;
}
/* Main foreground content layer */
.home-testimonials .main-content {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.05);
}
/* Innovation: Layers animate on hover */
.home-testimonials .testimonial-layered-card:hover .layer-dark {
  top: 10px;
  left: 10px;
}
.home-testimonials .testimonial-layered-card:hover .layer-blue {
  top: 20px;
  left: 20px;
}

/* Testimonial Typography (similar to image_2.png) */
.home-testimonials .quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: #1d4a66; /* Gold Quote from reference images */
  font-family: "Inter", sans-serif !important;
}
.home-testimonials .quote-icon.left {
  position: relative;
  left: -15px;
  top: 15px;
}
.home-testimonials .quote-icon.right {
  position: relative;
  float: right;
  right: 15px;
  bottom: 25px;
}
.home-testimonials .review-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 10px;
    padding: 0 30px;
}
.home-testimonials .client-meta {
    text-align: center;
}
.home-testimonials .client-meta .name {
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}
.home-testimonials .client-meta .verified {
    color: #28a745;
    font-size: 0.8rem;
    margin: 0;
}

/* Avatar Card (Initial based innovation) */
.home-testimonials .avatar-col {
    padding-right: 30px;
}
.home-testimonials .initial-circle {
    width: 130px;
    height: 130px;
    background: #1D4A66; /* Background matches dark team color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -2px;
}
.home-testimonials .owl-dots {
    display: none;
}

/* --- Scoped WhatsApp Modal Styling --- */

.home-whatsapp-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #fff;
    margin:auto;

}

/* Custom Header with Gradient */
.home-whatsapp-modal .modal-header-custom {
    background: linear-gradient(135deg, #1d4a66 0%, #3a5672 100%);
    padding: 15px 20px;
    position: relative;
    color: #fff;
    text-align: center;
}

.home-whatsapp-modal .header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-whatsapp-modal .modal-title {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}

.home-whatsapp-modal .modal-title span {
    opacity: 0.8;
    font-weight: 400;
}

/* Custom Close Button */
.home-whatsapp-modal .btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.home-whatsapp-modal .btn-close-custom:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

/* Body Styling */
.home-whatsapp-modal .modal-body {
    padding: 20px;
}

.home-whatsapp-modal .tagline {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

/* Feature Items */
.home-whatsapp-modal .feature-list {
    margin-bottom: 30px;
}

.home-whatsapp-modal .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.home-whatsapp-modal .check-icon {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.home-whatsapp-modal .feature-item p {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

/* Action Button */
.home-whatsapp-modal .modal-footer-action {
    text-align: center;
}

.home-whatsapp-modal .whatsapp-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.home-whatsapp-modal .whatsapp-btn-modern:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.4);
}

.home-whatsapp-modal .member-count {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

/* --- Home Services Section --- */
.home-services {
    background-color: #fcfcfc;
}

.home-services .section-header .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}

.home-services .section-header .title span {
    color: #1d4a66; /* Your brand blue */
}

.home-services .section-header .subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Service Card Design */
.home-services .service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.home-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #0056b3;
}

/* Icon Box Styling */
.home-services .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.home-services .blue-gradient { background: linear-gradient(135deg, #0056b3, #007bff); }
.home-services .gold-gradient { background: linear-gradient(135deg, #bda881, #d4c19d); }
.home-services .dark-gradient { background: linear-gradient(135deg, #1a1a1a, #333); }

.home-services .service-card h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111;
}

.home-services .service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List Styling */
.home-services .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.home-services .service-list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.home-services .service-list li i {
    color: #28a745; /* Success Green */
    margin-right: 8px;
}


/* --- Modern Grid FAQ Styling --- */
.faq-modern-section {
    background-color: #fcfcfc;
    padding: 100px 0;
}

.faq-modern-section .badge-mini {
    background: #0056b3;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-modern-section .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}
.faq-modern-section {
    color: #1D4A66;
}
.faq-modern-section .faq-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.faq-modern-section .faq-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #0056b3;
}

/* Accordion Item Reset */
.faq-modern-section .accordion-item {
    border: none;
    background: transparent;
}

/* Icon Wrap */
.faq-modern-section .faq-icon-wrap {
    width: 35px;
    height: 35px;
    background: #f0f4f8;
    color: #0056b3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
    transition: 0.3s;
}

.faq-modern-section .accordion-button:not(.collapsed) .faq-icon-wrap {
    background: #0056b3;
    color: #fff;
}

/* Question Styling */
.faq-modern-section .accordion-button {
    padding: 30px;
    background: transparent !important;
    box-shadow: none !important;
    font-weight: 700;
    color: #1a1a1a;
    border-radius: 20px !important;
    font-size: 1.05rem;
}

.faq-modern-section .accordion-button:not(.collapsed) {
    color: #0056b3;
}

/* Answer Body */
.faq-modern-section .accordion-body {
    padding: 0 30px 30px 80px;
    color: #666;
    line-height: 1.7;
}

.faq-modern-section .answer-content {
    margin-top: 10px;
}

/* Arrow Icon Customization */
.faq-modern-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1rem;
}

/* --- Modern Category Grid Styling --- */
.categories-grid-section {
    background-color: #ffffff;
}

.category-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

/* The Ghost Link Design */
.category-ghost-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: #f8faff; /* Very light brand tint */
    border: 1px solid rgba(0, 86, 179, 0.05);
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px; /* Ensures a nice uniform row feel */
    flex: 1 1 calc(25% - 15px); /* 4 per row on desktop */
}

.category-ghost-link .cat-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.05rem;
    transition: 0.3s;
}

.category-ghost-link .cat-arrow {
    font-size: 0.8rem;
    color: #1D4A66; /* Your Gold Accent Color */
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

/* Interactive Hover States */
.category-ghost-link:hover {
    background: #ffffff;
    border-color: #1D4A66; /* Your Brand Blue */
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.08);
    transform: translateY(-3px);
}

.category-ghost-link:hover .cat-title {
    color: #1D4A66;
}

.category-ghost-link:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ajax-add-to-cart {
    padding: 19px;
    height: 45px;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
}
.bank-details {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 5px;
}



.checkout-wrap {
    font-family: 'Inter', sans-serif !important;
    background: #fbfdff;
    min-height: 100vh;
    padding:5%;
}

/* ── Left Panel ── */
.checkout-left {
    background: #fff;
    padding: 40px 48px;
    min-height: 100vh;
}

.checkout-logo {
    width: 120px;
    margin-bottom: 32px;
}

.checkout-step-label {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.checkout-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

/* Contact / Ship-to row */
.info-block {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
}

.info-row + .info-row {
    border-top: 1px solid #e5e7eb;
}

.info-row .label {
    color: #9ca3af;
    min-width: 80px;
}

.info-row .val {
    flex: 1;
    padding: 0 12px;
}

.info-row .link-btn {
    font-size: 13px;
    color: #1a56db;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.info-row .link-btn:hover { text-decoration: underline; }

/* Shipping method pill */
.method-box {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #374151;
}

.method-box .free-badge {
    font-weight: 600;
    color: #111827;
}

/* Payment section */
.payment-note {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.bank-card {
    border: 2px solid #1a56db;
    border-radius: 8px;
    padding: 16px 20px;
    background: #fff;
    margin-bottom: 20px;
}

.bank-card .bank-method-title {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin-bottom: 10px;
}

.bank-detail-row {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.8;
}

/* Billing address radio */
.billing-option {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.billing-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background .15s;
}

.billing-option-item + .billing-option-item {
    border-top: 1px solid #e5e7eb;
}

.billing-option-item.selected {
    background: #f0f4ff;
}

.billing-option-item input[type="radio"] {
    accent-color: #1a56db;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Different billing address expanded form */
#billing-form {
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 16px;
    background: #fff;
}

#billing-form .form-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

#billing-form .form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 12px;
    color: #111827;
    background: #fff;
    transition: border-color .15s;
}

#billing-form .form-control:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .1);
    outline: none;
}

#billing-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Checkbox */
.sms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    margin: 20px 0;
    cursor: pointer;
}

.sms-check input[type="checkbox"] {
    accent-color: #1a56db;
    width: 16px;
    height: 16px;
}

/* Complete Order Button */
.btn-complete {
    width: 100%;
    background: #1e3a5f;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s;
}

.btn-complete:hover { background: #162d4a; }

/* ── Right Panel (Order Summary) ── */
.checkout-right {
    background: #f6f5f0;
    padding: 40px 40px 40px 32px;
    min-height: 100vh;
    border: 1px solid #e4e4e4;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.item-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.item-img-wrap img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.item-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #6b7280;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-name {
    flex: 1;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0;
}

.discount-input-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.discount-input-wrap .form-control {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 12px;
    color: #111827;
}

.discount-input-wrap .form-control:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .1);
    outline: none;
}

.btn-apply {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
}

.btn-apply:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

.summary-row.total .total-label {
    color: #111827;
}

.summary-row.total .total-amount {
    font-size: 18px;
}

.currency-tag {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 400;
    margin-right: 4px;
}

.free-shipping {
    color: #374151;
}

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show { display: flex; }

.modal-box {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    animation: slideUp .25s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover { color: #374151; }

.modal-box .form-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

.modal-box .form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 12px;
    color: #111827;
    width: 100%;
    transition: border-color .15s;
}

.modal-box .form-control:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26,86,219,.1);
    outline: none;
}

.btn-save-addr {
    width: 100%;
    background: #1e3a5f;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}

.btn-save-addr:hover { background: #162d4a; }

.page-btn {
    padding: 0px !important;
    font-size: 18px !important;
    width: 40px !important;
}
#pagination-wrap {
    float: right;
    justify-content: end;
}

.about_gallery_section h2, .about_gallery_section h3, .about_gallery_section h4 {
    font-weight: bold;
    color: #1D4A66;
}
.about_gallery_section p, .about_gallery_section ol li {
    font-size:16px !important;
    line-height:1.5;
}
.dynamic-description {
    padding-left:15px;
}
.dynamic-description ul li, .dynamic-description ol li {
    list-style: initial !important;
}

/* Responsive */
@media (max-width: 767px) {
  .checkout-left {
      padding: 28px 20px;
    }
    .checkout-right {
      padding: 28px 20px;
      min-height: auto;
      border-left: none;
      border-top: 1px solid #e5e7eb;
    }
}

/* Responsive Grid */
@media (max-width: 991px) {
    .category-ghost-link { flex: 1 1 calc(33.33% - 15px); }
}
@media (max-width: 767px) {
    .category-ghost-link { flex: 1 1 calc(50% - 15px); padding: 15px 20px; }
}

/* Responsive */
@media (max-width: 991px) {
    .home-content .title {
      font-size: 2.5rem;
    }
    .home-why .why-bento-grid {
      grid-template-columns: 1fr 1fr;
    }
    .home-whatsapp-modal {
      max-width: 90%;
    }
    .filter-card {
      position: relative;
      top: auto;
    }
    .team-flex-container {
      flex-wrap: wrap;
    }
    .team-item-wrap {
      flex: 0 0 calc(33.3% - 10px);
      max-width: calc(33.3% - 10px);
      margin-bottom: 20px;
    }
    .home-why .bento-item {
      padding: 15px;
      text-align: center;
    }
    .home-why .bento-item h4 {
      font-size: 20px;
    }
    .team-flex-container {
      display: block;
    }
    .team-item-wrap {
      width: 46%;
      display: inline-block;
      margin: 1%;
    }
    .home-testimonials .review-text {
      font-size: 16px;
    }
    .home-brands .brand-glass-card {
      border: 1px solid lightgrey;
    }
    .register-top-area {
        display:none;
    }
}

@media (max-width: 575px) {
    
    .team-item-wrap {
      flex: 0 0 calc(100%);
      max-width: calc(100%);
    }
    .home-testimonials .main-content {
      padding: 30px;
    }

}