:root{
  --brand: #456cc2;
  --brand-dark: #121a3a;
  --accent: #ffd24a;
  --hot: #ff2b6b;
}

/* =========================
   HEADER / NAVBAR
========================= */
.header-blue{
  background: var(--brand) !important;
}

.nav-logo{
  height: 34px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  border-radius: 8px;
  padding: 4px 6px;
}

.brand-text{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.navbar .nav-link.active{
  position: relative;
}
.navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:50px;
  height:2px;
  background: var(--accent);
}

/* Open Products dropdown on hover (desktop only) */
@media (min-width: 992px){
  .navbar .dropdown:hover > .dropdown-menu{
    display:block;
    margin-top:0;
  }
}

/* Optional: dropdown theme */
.dropdown-menu-dark{
  background:#1f2366;
}
.dropdown-menu-dark .dropdown-item:hover{
  background: rgba(255,255,255,0.12);
}

/* =========================
   HERO BANNER (FULL WIDTH)
========================= */
.hero-banner{
  position: relative;
  width: 100%;
  min-height: clamp(420px, 70vh, 720px);
  background: url("/static/img/hero.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.55) 100%
  );
  display:flex;
  align-items:center;
}

.hero-content{
  padding: clamp(56px, 8vh, 96px) 0;
}

.hero-h1{
  color:#fff;
  font-weight:800;
  font-size: clamp(26px, 4.2vw, 52px);
  line-height:1.15;
  max-width:980px;
  margin:0 auto;
  text-shadow:0 10px 26px rgba(0,0,0,0.35);
}

.hero-p{
  color: rgba(255,255,255,0.92);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width:760px;
  margin:18px auto 0;
  text-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.hero-actions{
  margin-top:28px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.hero-btn-primary{
  background: var(--hot);
  color:#fff;
  font-weight:800;
  padding:12px 26px;
  border-radius:10px;
  border:0;
}
.hero-btn-primary:hover{
  background:#ff145c;
  color:#fff;
}

.hero-btn-outline{
  border:2px solid rgba(255,255,255,0.85);
  color:#fff;
  font-weight:800;
  padding:12px 26px;
  border-radius:10px;
  background:transparent;
}
.hero-btn-outline:hover{
  background: rgba(255,255,255,0.12);
  color:#fff;
}

@media (max-width: 420px){
  .hero-actions .btn{ width:100%; }
}

/* =========================
   FEATURES (cards under banner)
========================= */
.features-wrap{
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.feature-card{
  background:#fff;
  border-radius:16px;
  padding:26px 22px;
  border:1px solid rgba(0,0,0,0.07);
  box-shadow:0 14px 34px rgba(0,0,0,0.10);
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--hot);
  background: rgba(255,43,107,0.10);
  margin-bottom:16px;
}

.feature-title{
  font-weight:900;
  font-size:22px;
  margin:0 0 10px 0;
  color:#111;
}

.feature-text{
  font-size:14px;
  line-height:1.8;
  color: rgba(0,0,0,0.70);
  margin:0;
}

@media (max-width: 767px){
  .features-wrap{ margin-top: 24px; }
}

/* =========================
   CATEGORY COLUMNS (LIKE SCREENSHOT)
========================= */
.catcols{
  text-align:center;
}

.catcol{
  display:block;
  text-decoration:none;
  color:#111;
}

.catcol-img{
  width:100%;
  height:170px;
  border-radius:10px;
  overflow:hidden;
  background:#f3f4f6;
  box-shadow:0 12px 26px rgba(0,0,0,0.10);
}

.catcol-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .2s ease;
}

.catcol-title{
  margin-top:14px;
  font-weight:800;
  font-size:22px;
  letter-spacing:0.2px;
}

.catcol:hover .catcol-img img{
  transform: scale(1.04);
}

/* =========================
   CATEGORY BANNERS (2 COL, TITLE UNDER IMAGE)
========================= */
.catbanner{
  display:block;
  text-decoration:none;
  color:inherit;
}

.catbanner-img{
  border-radius:14px;
  overflow:hidden;
  background:#eee;
  box-shadow:0 10px 26px rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.catbanner-img img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

.catbanner-title{
  text-align:center;
  font-weight:900;
  font-size:22px;
  margin-top:14px;
  color:#000;
}

.catbanner:hover .catbanner-img{
  transform: translateY(-1px);
  box-shadow:0 14px 34px rgba(0,0,0,0.16);
}

/* =========================
   CTA SPLIT (IMAGE + BLUEPRINT)
========================= */
.cta-box{
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.cta-img{
  height:100%;
  min-height:260px;
  background:#f2f4f8;
}
.cta-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cta-content{
  height:100%;
  padding:44px 46px;
  background: #f4f6fb;
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.cta-kicker{
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom:12px;
}

.cta-title{
  font-weight:900;
  font-size:44px;
  line-height:1.05;
  margin:0 0 18px 0;
  color:#111;
}

.cta-btn{
  width: fit-content;
  padding:14px 26px;
  border-radius:0;
  border:2px solid #111;
  background:#111;
  color:#fff;
  font-weight:900;
  letter-spacing:1px;
}
.cta-btn:hover{
  background:#000;
  border-color:#000;
  color:#fff;
}

@media (max-width: 992px){
  .cta-content{ padding:30px 22px; }
  .cta-title{ font-size:32px; }
}

/* =========================
   STATS STRIP
========================= */
.stats-strip{
  background:#f6f6f6;
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
  padding:44px 0;
}

.stat-num{
  font-size:56px;
  font-weight:900;
  color:#111;
  line-height:1;
}

.stat-label{
  margin-top:10px;
  font-size:12px;
  letter-spacing:3px;
  color: rgba(0,0,0,0.55);
}

/* =========================
   MOSAIC (RANDOM PRODUCTS)
========================= */
.mosaic{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
}

.mosaic-item{
  position:relative;
  display:block;
  border-radius:14px;
  overflow:hidden;
  background:#f2f3f6;
  box-shadow:0 14px 34px rgba(0,0,0,0.10);
  text-decoration:none;
}

.mosaic-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}

.mosaic-item:hover img{ transform: scale(1.04); }

.mosaic-cap{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.mosaic-name{
  color:#fff;
  font-weight:800;
  font-size:13px;
  line-height:1.2;
  text-shadow:0 8px 18px rgba(0,0,0,0.35);
}

/* 6-item layout */
.mosaic-1{ grid-column: 1 / span 6;  grid-row: 1 / span 3; }
.mosaic-2{ grid-column: 7 / span 3;  grid-row: 1 / span 2; }
.mosaic-3{ grid-column: 10 / span 3; grid-row: 1 / span 2; }
.mosaic-4{ grid-column: 1 / span 4;  grid-row: 4 / span 2; }
.mosaic-5{ grid-column: 5 / span 3;  grid-row: 4 / span 2; }
.mosaic-6{ grid-column: 8 / span 5;  grid-row: 3 / span 3; }

@media (max-width: 992px){
  .mosaic{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .mosaic-1,.mosaic-2,.mosaic-3,.mosaic-4,.mosaic-5,.mosaic-6{
    grid-column:auto;
    grid-row:auto;
  }
}

/* =========================
   PRODUCT DETAIL THUMBS
========================= */
.thumb-btn{ border:0; padding:0; background:transparent; }

.thumb-img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.12);
}

/* =========================
   CONTACT
========================= */
.contact-card{
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:18px;
  background:#fff;
}

.contact-item{
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.contact-item:last-child{ border-bottom:0; }

.contact-label{
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom:6px;
}

.contact-value{
  color: rgba(0,0,0,0.85);
  line-height:1.8;
}

.contact-form-card{
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:22px;
  background:#fff;
}

/* =========================
   ABOUT PAGE BG (WHOLE PAGE)
========================= */
.about-page-bg{
  background: #f4f6fb;
    /* 1) blue tint layer (strong) */
    linear-gradient(rgba(69,108,194,0.55), rgba(69,108,194,0.55)),
    /* 2) white soft layer (keeps readability) */
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),

  padding-bottom: 40px;
}



@media (min-width: 992px){
  .about-page-bg{ background-attachment: fixed; }
}
@media (max-width: 991px){
  .about-page-bg{ background-attachment: scroll; }
}

.about-hero{
  padding:70px 0 30px;
}

.about-hero-inner{
  max-width:980px;
}

.about-kicker{
  font-size:12px;
  letter-spacing:2px;
  font-weight:900;
  color: rgba(0,0,0,0.45);
  margin-bottom:10px;
}

.about-title{
  font-size: clamp(28px, 4vw, 46px);
  font-weight:900;
  margin-bottom:14px;
  color:#0b0f15;
}

.about-lead{
  font-size:16px;
  line-height:1.9;
  color: rgba(0,0,0,0.72);
  margin-bottom:12px;
}

.about-card{
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.about-h2{ font-weight:900; font-size:22px; margin-bottom:14px; }
.about-h3{ font-weight:900; font-size:18px; margin-bottom:10px; }

.about-p{
  color: rgba(0,0,0,0.72);
  line-height: 1.9;
}

.about-list{
  color: rgba(0,0,0,0.75);
  line-height: 1.9;
}

.about-divider{ opacity:0.12; }

/* =========================
   FOOTER
========================= */
.footer-simple{
  position:relative;
  background: var(--brand);
  color:#fff;
}

.footer-head{
  font-weight:700;
  font-size:13px;
  letter-spacing:0.4px;
  margin-bottom:12px;
  opacity:0.95;
}

.footer-text{
  font-size:12px;
  line-height:1.8;
  opacity:0.9;
}

.footer-link{
  display:inline-block;
  font-size:12px;
  color:#fff;
  text-decoration:none;
  opacity:0.9;
}
.footer-link:hover{
  opacity:1;
  text-decoration:underline;
}

.back-to-top{
  position:absolute;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border:0;
  border-radius:6px;
  background: rgba(0,0,0,0.25);
  color:#fff;
  font-weight:800;
  font-size:18px;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.2s ease;.about-page-bg{
  background: #f4f6fb;
    /* 1) blue tint layer (strong) */
    linear-gradient(rgba(69,108,194,0.55), rgba(69,108,194,0.55)),
    /* 2) white soft layer (keeps readability) */
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),

  padding-bottom: 40px;
}

}
.back-to-top:hover{
  background: rgba(0,0,0,0.35);
}
/* CONTACT PAGE BG (BLUEPRINT) */
.contact-page-bg{
  background: #f4f6fb;
    linear-gradient(rgba(43, 176, 216, 0.55), rgba(122, 154, 223, 0.55)),
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)),

  padding: 30px 0 50px;
}


@media (min-width: 992px){
  .contact-page-bg{ background-attachment: fixed; }
}
@media (max-width: 991px){
  .contact-page-bg{ background-attachment: scroll; }
}
