 :root {
   --navy: #1a1f6e;
   --navy2: #0e006f;
   --red: #e67817;
   --red2: #bf0009;
   --yellow: #f5d000;
   --orange: #d97c1a;
   --green: #00822a;
   --white: #ffffff;
   --light: #f3f4f8;
   --gold: #D4922A;
    --amber: #C8881E;
    --dark: #1B1611; 
    --muted: #7a6f63;
    --bg: #ffffff; 
    --gold-bg: #D4922A; 
    --cream: #F5F2EC;  
    --radius: 50px;
   --border: rgba(255, 255, 255, 0.12);

   /* Derived aliases */
    --footer-bg: var(--navy);
    --footer-deep: var(--navy2);
    --accent: var(--yellow);
    --accent2: var(--red);
    --border-col: rgba(245, 208, 0, .15);
    --text-muted: rgba(255, 255, 255, .55);
    --white: #ffffff;
 }

 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: 'Nunito', sans-serif;
   background: #e8eaf0;
   overflow-x: hidden;
 }

 a {
   text-decoration: none;
 }

 /* ══════════════════════════════════════
       TOP BAR — split diagonal background
    ══════════════════════════════════════ */
 #top-bar {
   position: relative;
   overflow: hidden;
   height: 38px;
   z-index: 900;
 }

 /* Left navy half */
 #top-bar::before {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--navy2);
   clip-path: polygon(0 0, 62% 0, 55% 100%, 0 100%);
   z-index: 0;
 }

 /* Right red half */
 #top-bar::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--red);
   clip-path: polygon(58% 0, 100% 0, 100% 100%, 51% 100%);
   z-index: 0;
 }

 /* Diagonal yellow slash accent */
 .top-bar-slash {
   position: absolute;
   inset: 0;
   background: var(--yellow);
   clip-path: polygon(54% 0, 59% 0, 52% 100%, 47% 100%);
   z-index: 1;
 }

 .top-bar-inner {
   position: relative;
   z-index: 2;
   max-width: 1320px;
   margin: 0 auto;
   padding: 0 20px;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .top-left,
 .top-right {
   display: flex;
   align-items: center;
   gap: 18px;
 }

 .top-link {
   color: rgba(255, 255, 255, 0.88);
   font-size: 0.76rem;
   font-family: 'Oswald', sans-serif;
   letter-spacing: 0.06em;
   display: flex;
   align-items: center;
   gap: 6px;
   transition: color .2s;
 }

 .top-link i {
   font-size: 0.7rem;
   color: var(--yellow);
 }

 .top-link:hover {
   color: var(--yellow);
 }

 .top-sep {
   width: 1px;
   height: 16px;
   background: rgba(255, 255, 255, 0.2);
 }

 .top-badge {
   background: var(--yellow);
   color: var(--navy);
   font-family: 'Oswald', sans-serif;
   font-weight: 700;
   font-size: 0.7rem;
   letter-spacing: 0.1em;
   padding: 2px 10px;
   border-radius: 2px;
   text-transform: uppercase;
 }

 .top-socials {
   display: flex;
   gap: 8px;
 }

 .top-socials a {
   color: var(--white);
   width: 22px;
   height: 22px;
   border-radius: 3px;
   background: rgba(255, 255, 255, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.65rem;
   transition: background .2s, transform .2s;
 }

 .top-socials a:hover {
   background: var(--navy);
   transform: translateY(-2px);
 }

 /* ══════════════════════════════════════
       MAIN HEADER
    ══════════════════════════════════════ */
 #main-header {
   /* position: sticky;
      top: 0; */
   z-index: 1000;
   background: var(--white);
   box-shadow: 0 2px 20px rgba(26, 31, 110, 0.12);
 }

 .header-body {
   max-width: 1320px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
   align-items: stretch;
   height: 100px;
   justify-content: space-between;
 }

 /* ── Logo Block with clipped red tab ── */
 .logo-block {
   display: flex;
   align-items: center;
   position: relative;
   padding-right: 32px;
   flex-shrink: 0;
 }



 .logo-block::after {
   content: '';
   position: absolute;
   top: 0;
   left: -20px;
   bottom: 0;
   width: 6px;
   background: var(--red);
 }

 .logo-block img {
   height: 90px;
   width: auto;
   position: relative;
   z-index: 1;
   filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
   object-fit: contain;
 }

 /* ── Nav wrap ── */
 .nav-wrap {
   flex: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 10px;
 }

 /* ── Desktop Nav ── */
 .desktop-nav {
   display: flex;
   align-items: stretch;
   list-style: none;
   gap: 0;
   height: 100%;
   margin: 0;
   padding: 0;
 }

 .desktop-nav>li {
   position: relative;
   display: flex;
   align-items: stretch;
 }

 .desktop-nav>li>a {
   display: flex;
   align-items: center;
   gap: 6px;
   padding: 0 15px;
   font-family: 'Oswald', sans-serif;
   font-size: 0.95rem;
   font-weight: 500;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   color: var(--navy);
   position: relative;
   white-space: nowrap;
   transition: color .2s;
 }

 .desktop-nav>li>a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   right: 50%;
   height: 3px;
   background: var(--red);
   transition: left .25s, right .25s;
 }

 .desktop-nav>li:hover>a {
   color: var(--red);
 }

 .desktop-nav>li:hover>a::after {
   left: 0;
   right: 0;
 }

 .desktop-nav>li>a .fa-chevron-down {
   font-size: 0.55rem;
   transition: transform .25s;
   margin-top: 1px;
 }

 .desktop-nav>li:hover>a .fa-chevron-down {
   transform: rotate(180deg);
 }

 /* ── Dropdown L1 ── */
 .dd-menu {
   position: absolute;
   top: 100%;
   left: 0;
   min-width: 220px;
   background: var(--white);
   border-top: 3px solid var(--red);
   border-radius: 0 0 8px 8px;
   box-shadow: 0 12px 40px rgba(26, 31, 110, 0.14);
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all .22s ease;
   z-index: 500;
   padding: 6px 0;
   list-style: none;
 }

 .desktop-nav>li:hover>.dd-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .dd-menu li {
   position: relative;
 }

 .dd-menu li a {
   display: flex;
   align-items: center;
   padding: 9px 18px;
   font-size: 0.875rem;
   font-weight: 600;
   color: #2a2a3a;
   border-bottom: 1px solid #f0f0f6;
   transition: background .18s, color .18s, padding-left .18s;
   gap: 8px;
 }

 .dd-menu li:last-child a {
   border-bottom: none;
 }

 .dd-menu li a:hover {
   background: var(--light);
   color: var(--navy);
   padding-left: 26px;
 }

 .dd-menu li a i.sub-ico {
   color: var(--red);
   font-size: 0.65rem;
 }

 /* ── Dropdown L2 ── */
 .dd-sub {
   position: absolute;
   top: -3px;
   left: 100%;
   min-width: 200px;
   background: var(--white);
   border-top: 3px solid var(--navy);
   border-radius: 0 8px 8px 0;
   box-shadow: 8px 12px 40px rgba(26, 31, 110, 0.12);
   opacity: 0;
   visibility: hidden;
   transform: translateX(10px);
   transition: all .2s ease;
   z-index: 600;
   padding: 6px 0;
   list-style: none;
 }

 .dd-menu li:hover>.dd-sub {
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
 }

 .dd-sub li a {
   font-size: 0.84rem;
   font-weight: 500;
   border-bottom: 1px solid #f4f4f8;
 }

 /* ── Header CTA ── */
 .header-cta {
   display: flex;
   align-items: center;
   gap: 10px;
   flex-shrink: 0;
 }

 .btn-call-hdr {
   display: flex;
   align-items: center;
   gap: 8px;
   border: 2px solid var(--navy);
   color: var(--navy);
   padding: 9px 16px;
   border-radius: 4px;
   font-family: 'Oswald', sans-serif;
   font-size: 0.9rem;
   font-weight: 500;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   transition: background .2s, color .2s;
   white-space: nowrap;
 }

 .btn-call-hdr:hover {
   background: var(--navy);
   color: var(--white);
 }

 .btn-quote-hdr {
   display: flex;
   align-items: center;
   gap: 8px;
   background: var(--red);
   color: var(--white);
   padding: 10px 20px;
   border-radius: 4px;
   font-family: 'Oswald', sans-serif;
   font-size: 0.9rem;
   font-weight: 600;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   transition: background .2s, transform .15s;
   position: relative;
   overflow: hidden;
   white-space: nowrap;
 }

 .btn-quote-hdr::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 60%;
   height: 100%;
   background: rgba(255, 255, 255, 0.18);
   transform: skewX(-20deg);
   transition: left .4s ease;
 }

 .btn-quote-hdr:hover {
   background: var(--red2);
   transform: translateY(-2px);
 }

 .btn-quote-hdr:hover::before {
   left: 130%;
 }

 /* ── Hamburger ── */
 .hbg {
   display: none;
   flex-direction: column;
   gap: 5px;
   justify-content: center;
   width: 30px;
   height: 60px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 6px;
   border-radius: 4px;
   flex-shrink: 0;
   transition: background .2s;
 }

 .hbg:hover {
   background: var(--light);
 }

 .hbg span {
   display: block;
   height: 2.5px;
   background: var(--navy);
   border-radius: 2px;
   transition: transform .3s, opacity .3s;
   transform-origin: left center;
 }

 .hbg span:nth-child(2) {
   width: 70%;
 }

 .hbg.open span:nth-child(1) {
   transform: rotate(45deg) translate(0px, -1px);
 }

 .hbg.open span:nth-child(2) {
   opacity: 0;
   transform: translateX(-8px);
 }

 .hbg.open span:nth-child(3) {
   transform: rotate(-45deg) translate(0px, 1px);
 }

 /* ══════════════════════════════════════
       NAV BAND (colored accent bar)
    ══════════════════════════════════════ */
 #nav-band {
   background: var(--navy);
   height: 5px;
   background: linear-gradient(90deg, var(--navy) 0%, var(--red) 40%, var(--orange) 60%, var(--yellow) 80%, var(--green) 100%);
 }

 /* ══════════════════════════════════════
       MOBILE OVERLAY
    ══════════════════════════════════════ */
 #mob-overlay {
   position: fixed;
   inset: 0;
   background: rgba(8, 10, 40, 0.6);
   z-index: 1998;
   opacity: 0;
   pointer-events: none;
   transition: opacity .3s;
   backdrop-filter: blur(3px);
 }

 #mob-overlay.show {
   opacity: 1;
   pointer-events: all;
 }

 /* ══════════════════════════════════════
       MOBILE DRAWER (from right)
    ══════════════════════════════════════ */
 #mob-drawer {
   display: flex;
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   width: min(340px, 90vw);
   background: #fff;
   z-index: 1999;
   transform: translateX(110%);
   transition: transform .38s cubic-bezier(.4, 0, .2, 1);
   flex-direction: column;
   overflow: hidden;
 }

 #mob-drawer.open {
   transform: translateX(0);
 }

 /* Drawer header: clipped navy */
 .mob-head {
   background: var(--navy);
   padding: 0 16px;
   height: 72px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-shrink: 0;
   position: relative;
   overflow: hidden;
 }

 .mob-head::after {
   content: '';
   position: absolute;
   bottom: 0;
   right: 0;
   width: 80px;
   height: 72px;
   background: var(--red);
   clip-path: polygon(100% 0, 100% 100%, 0 100%);
 }

 .mob-head img {
   height: 52px;
   width: auto;
   position: relative;
   z-index: 1;
 }

 .mob-close {
   background: rgba(255, 255, 255, 0.1);
   border: 1.5px solid rgba(255, 255, 255, 0.25);
   color: var(--white);
   width: 34px;
   height: 34px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   font-size: 1rem;
   transition: background .2s, border-color .2s;
   position: relative;
   z-index: 2;
 }

 .mob-close:hover {
   background: var(--red);
   border-color: var(--red);
 }

 /* Drawer color band */
 .mob-band {
   height: 5px;
   background: linear-gradient(90deg, var(--red) 0%, var(--orange) 35%, var(--yellow) 65%, var(--green) 100%);
   flex-shrink: 0;
 }

 /* Contact strip */
 .mob-contact {
   background: var(--light);
   padding: 10px 16px;
   display: flex;
   flex-direction: column;
   gap: 5px;
   flex-shrink: 0;
   border-bottom: 1px solid #e0e0ec;
 }

 .mob-contact a {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.82rem;
   font-weight: 700;
   color: var(--navy);
   font-family: 'Oswald', sans-serif;
   letter-spacing: 0.04em;
 }

 .mob-contact a i {
   color: var(--red);
   width: 14px;
 }

 /* Scrollable nav */
 .mob-nav-scroll {
   overflow-y: auto;
   flex: 1;
   padding-bottom: 8px;
 }

 /* L1 items */
 .mob-nav-list {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .mob-nav-list>li {
   border-bottom: 1px solid #eaebf3;
 }

 .mob-nav-link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 13px 18px;
   font-family: 'Oswald', sans-serif;
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   color: var(--navy);
   cursor: pointer;
   transition: background .18s, color .18s;
   user-select: none;
 }

 .mob-nav-link:hover {
   background: var(--light);
 }

 .mob-nav-link .mob-chevron {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: var(--light);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.65rem;
   color: var(--navy);
   transition: background .2s, color .2s, transform .3s;
   flex-shrink: 0;
 }

 .mob-nav-list>li.open>.mob-nav-link .mob-chevron {
   background: var(--red);
   color: var(--white);
   transform: rotate(180deg);
 }

 .mob-nav-list>li.open>.mob-nav-link {
   color: var(--red);
   background: #fef5f5;
 }

 /* L2 */
 .mob-sub {
   display: none;
   background: #f9f9fd;
   border-top: 1px solid #eaebf3;
 }

 .mob-nav-list>li.open>.mob-sub {
   display: block;
 }

 .mob-sub-list {
   list-style: none;
   padding: 4px 0;
   margin: 0;
 }

 .mob-sub-list>li {
   border-bottom: 1px solid #ececf4;
 }

 .mob-sub-link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 18px 10px 30px;
   font-size: 0.875rem;
   font-weight: 700;
   color: #333;
   cursor: pointer;
   transition: background .18s, color .18s;
   user-select: none;
 }

 .mob-sub-link i.sub-arr {
   font-size: 0.6rem;
   color: var(--red);
   transition: transform .3s;
 }

 .mob-sub-link:hover {
   background: #f0f0f9;
   color: var(--navy);
 }

 .mob-sub-list>li.open>.mob-sub-link {
   color: var(--navy);
 }

 .mob-sub-list>li.open>.mob-sub-link i.sub-arr {
   transform: rotate(90deg);
 }

 /* L3 */
 .mob-sub2 {
   display: none;
   background: #f0f1fa;
 }

 .mob-sub-list>li.open>.mob-sub2 {
   display: block;
 }

 .mob-sub2 a {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 9px 18px 9px 46px;
   font-size: 0.82rem;
   font-weight: 600;
   color: #555;
   border-bottom: 1px solid #e8e8f2;
   transition: background .18s, color .18s;
 }

 .mob-sub2 a i {
   color: var(--orange);
   font-size: 0.65rem;
 }

 .mob-sub2 a:hover {
   background: #e8e9f8;
   color: var(--navy);
 }

 /* Drawer footer */
 .mob-footer {
   padding: 14px 16px;
   border-top: 2px solid #eaebf3;
   display: flex;
   gap: 10px;
   flex-shrink: 0;
 }

 .mob-footer .btn-call-hdr,
 .mob-footer .btn-quote-hdr {
   flex: 1;
   justify-content: center;
 }

 /* ══════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════════════ */
 @media (max-width: 1100px) {

   .nav-wrap,
   .header-cta {
     display: none !important;
   }

   .hbg {
     display: flex;
   }

   #mob-overlay,
   #mob-drawer {
     display: flex;
   }
 }

 @media (max-width: 640px) {
   .top-left .top-link:not(:first-child) {
     display: none;
   }

   .top-left .top-sep {
     display: none;
   }

   .top-socials {
     display: none;
   }

   .logo-block img {
     height: 60px;
   }

   .header-body {
     height: 66px;
   }
 }

 /* ══ SECTION ══ */
 .vl-about3-area {
   padding: 100px 0 110px;
   position: relative;
   overflow: hidden;
   background: #fff;
 }

 /* ══ LEFT: tall image col ══ */
 .vl-about3-thumb-info {
   display: flex;
   flex-direction: column;
   margin-top: 100px;
 }

 .vl-about3-thumb-info-img img {
   width: 100%;
   border-radius: 16px;
   display: block;
   object-fit: cover;
   height: 340px;
   box-shadow: 0 10px 36px rgba(26, 31, 110, 0.13);
   transition: transform .5s ease;
 }

 .vl-about3-thumb-info-img:hover img {
   transform: scale(1.03);
 }

 .vl-about3-thumb-info-img {
   overflow: hidden;
   border-radius: 16px;
 }

 /* Happy Customer box */
 .vl-about3-thumb-info-box {
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 8px 32px rgba(26, 31, 110, 0.11);
   padding: 18px 20px 16px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   margin-top: 20px;
 }

 .vl-about3-thumb-info-box-img {
   display: flex;
   align-items: center;
 }

 .vl-about3-thumb-info-box-img img {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 2.5px solid #fff;
   object-fit: cover;
   margin-left: -11px;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
 }

 .vl-about3-thumb-info-box-img img:first-child {
   margin-left: 0;
 }

 .about-us-content{
  
 }

 .avatar-plus {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--green);
   color: #fff;
   font-size: 1rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-left: -11px;
   border: 2.5px solid #fff;
   flex-shrink: 0;
 }

 .vl-about3-thumb-info-box .happy-label {
   font-family: 'Nunito', sans-serif;
   font-size: 0.88rem;
   font-weight: 700;
   color: var(--text);
   letter-spacing: 0.01em;
 }

 /* ══ RIGHT sub-col: two stacked images ══ */
 .vl-about3-thumb {
   display: flex;
   flex-direction: column;
   height: 100%;
 }

 .vl-about3-thumb-img {
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 8px 28px rgba(26, 31, 110, 0.12);
   flex: 1;
 }

 .vl-about3-thumb-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   min-height: 155px;
   transition: transform .5s ease;
 }

 .vl-about3-thumb-img:hover img {
   transform: scale(1.04);
 }

 .space20 {
   height: 20px;
 }

 .space16 {
   height: 14px;
 }

 .space30 {
   height: 24px;
 }

 .space32 {
   height: 28px;
 }

 /* ══ RIGHT CONTENT AREA ══ */
 .vl-abouthm3-contentarea {
   padding-left: 16px;
 }

 /* Badge pill */
 .about3-subtitle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: 1.5px solid #d1d5db;
   border-radius: 30px;
   padding: 5px 18px;
   font-size: 0.83rem;
   font-weight: 700;
   color: var(--text);
   letter-spacing: 0.04em;
   font-family: 'Nunito', sans-serif;
   background: #fff;
 }

 /* Title */
 .about3-title {
   font-family: 'Oswald', sans-serif;
   font-size: clamp(1.9rem, 3vw, 2.7rem);
   font-weight: 700;
   color: var(--navy);
   line-height: 1.18;
   letter-spacing: 0.01em;
 }

 /* Desc */
 .about3-desc {
   font-size: 0.94rem;
   color: var(--muted);
   line-height: 1.78;
 }

 /* Feature list */
 .vl-about3-items ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 11px;
 }

 .vl-about3-items ul li span {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
   font-weight: 700;
   color: var(--text);
 }

 .vl-about3-items ul li span .check-icon {
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: var(--yellow);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.58rem;
   flex-shrink: 0;
 }

 /* Divider */
 .vl-about3-list-border {
   height: 1px;
   background: #e5e7ef;
 }

 /* Counter */
 .vl-about3-counter {
   display: flex;
   gap: 56px;
   flex-wrap: wrap;
 }

 .vl-about3-counter-info .counter-num {
   font-family: 'Oswald', sans-serif;
   font-size: 2.8rem;
   font-weight: 700;
   color: var(--red);
   line-height: 1;
   display: flex;
   align-items: baseline;
   gap: 1px;
 }

 .vl-about3-counter-info p {
   font-size: 0.86rem;
   color: var(--muted);
   font-weight: 600;
   margin-top: 8px;
 }

 /* CTA Button */
 .vl-btn3 {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--navy);
   color: #fff;
   padding: 13px 32px;
   border-radius: 6px;
   font-family: 'Oswald', sans-serif;
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   transition: background .22s, transform .18s;
   position: relative;
   overflow: hidden;
 }

 .vl-btn3::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 60%;
   height: 100%;
   background: rgba(255, 255, 255, 0.14);
   transform: skewX(-20deg);
   transition: left .4s ease;
 }

 .vl-btn3:hover {
   background: var(--red);
   color: #fff;
   transform: translateY(-2px);
 }

 .vl-btn3:hover::before {
   left: 140%;
 }

 /* ══ BG SHAPE ══ */
 .about1-shape {
   position: absolute;
   bottom: 50px;
   right: 50px;
   z-index: 0;
   pointer-events: none;
   opacity: 1;
   animation: floatShape 6s ease-in-out infinite;
 }

 .about1-shape img {
   width: 150px;
 }

 @keyframes floatShape {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-18px);
   }
 }

 /* Dot decorations */
 .dot-deco {
   position: absolute;
   border-radius: 50%;
 }

 .dot-deco-1 {
   width: 11px;
   height: 11px;
   background: var(--navy);
   opacity: 0.45;
   top: 52px;
   left: 72px;
 }

 .dot-deco-2 {
   width: 36px;
   height: 36px;
   border: 2px solid var(--navy);
   opacity: 0.13;
   top: 82px;
   left: 122px;
 }

 /* ══ RESPONSIVE ══ */
 @media (max-width: 991px) {
   .vl-abouthm3-contentarea {
     padding-left: 0;
     margin-top: 50px;
   }

   .vl-about3-thumb-info-img img {
     height: 280px;
   }

   .vl-about3-thumb-img img {
     min-height: 128px;
   }

   .vl-about3-counter {
     gap: 36px;
   }
 }

 @media (max-width: 767px) {
   .vl-about3-area {
     padding: 60px 0 70px;
   }

   .about3-title {
     font-size: 1.75rem;
   }

   .vl-about3-counter-info .counter-num {
     font-size: 2.2rem;
   }

   .vl-about3-thumb-info-img img {
     height: 240px;
   }

   .vl-about3-thumb-img img {
     min-height: 110px;
   }
 }

 @media (max-width: 480px) {
   .vl-about3-thumb-info-img img {
     height: 200px;
   }

   .vl-about3-thumb-img img {
     min-height: 92px;
   }

   .vl-about3-thumb-info-box {
     padding: 12px 14px;
   }

   .vl-about3-counter {
     gap: 24px;
   }

   .vl-about3-counter-info .counter-num {
     font-size: 1.9rem;
   }
 }

 /* Counter animation */
 @keyframes countUp {
   from {
     opacity: 0;
     transform: translateY(10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .vl-about3-counter-info {
   animation: countUp .6s ease both;
 }

 .vl-about3-counter-info:nth-child(2) {
   animation-delay: .15s;
 }

 .vl-about3-counter-info:nth-child(3) {
   animation-delay: .3s;
 }

 /* ══════════════════════════════════════
       PRODUCTS SECTION
    ══════════════════════════════════════ */
 .vl-products-section {
   background: linear-gradient(135deg, var(--navy) 0%, #1a0a8a 50%, var(--navy2) 100%);
   padding: 80px 0 90px;
   position: relative;
   overflow: hidden;
   border-radius: 24px;
   margin: 40px 20px;
 }

 /* ── Section heading area ── */
 .section-head {
   text-align: center;
   margin-bottom: 48px;
   position: relative;
   z-index: 2;
 }

 /* Pill badge */
 .section-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #fff;
   border-radius: 30px;
   padding: 6px 20px;
   font-size: 0.82rem;
   font-weight: 700;
   color: var(--text);
   letter-spacing: 0.04em;
   font-family: 'Nunito', sans-serif;
   margin-bottom: 16px;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
 }

 .section-badge i {
   color: var(--red);
 }

 /* Section title — NO h tags */
 .section-title {
   font-family: 'Oswald', sans-serif;
   font-size: clamp(1.9rem, 3.5vw, 2.8rem);
   font-weight: 700;
   color: var(--white);
   letter-spacing: 0.02em;
   line-height: 1.15;
 }

 /* ── BG decorative shape (top-right) ── */
 .products-shape {
   position: absolute;
   top: 10px;
   left: 10px;
   z-index: 1;
   pointer-events: none;
   opacity: 0.9;
 }

 .products-shape img {
   width: 220px;
   height: auto;
 }

 /* Dot pattern overlay */
 .vl-products-section::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
   background-size: 28px 28px;
   z-index: 0;
   pointer-events: none;
 }

 /* ── Carousel wrap ── */
 .products-carousel-wrap {
   position: relative;
   z-index: 2;
 }

 /* ══════════════════════════════════════
       PRODUCT CARD
    ══════════════════════════════════════ */
 .product-card {
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
   transition: transform .3s ease, box-shadow .3s ease;
   margin: 6px 8px 12px;
 }

 .product-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
 }

 /* Image wrapper */
 .product-img-wrap {
   display: block;
   overflow: hidden;
   aspect-ratio: 4/3;
   background: #f0f1f7;
   position: relative;
 }

 .product-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform .5s ease;
 }

 .product-card:hover .product-img-wrap img {
   transform: scale(1.07);
 }

 /* Quick view overlay badge */
 .product-img-wrap .quick-view {
   position: absolute;
   bottom: -40px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--navy);
   color: #fff;
   font-family: 'Oswald', sans-serif;
   font-size: 0.78rem;
   font-weight: 600;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   padding: 7px 18px;
   border-radius: 20px;
   white-space: nowrap;
   transition: bottom .3s ease;
   pointer-events: none;
   border: 1.5px solid var(--yellow);
 }

 .product-card:hover .product-img-wrap .quick-view {
   bottom: 12px;
 }

 /* Product info */
 .product-info {
   padding: 18px 20px 20px;
   border-top: 3px solid transparent;
   transition: border-color .3s;
 }

 .product-card:hover .product-info {
   border-top-color: var(--red);
 }

 .product-title {
   display: block;
   font-family: 'Oswald', sans-serif;
   font-size: 1.05rem;
   font-weight: 600;
   color: var(--text);
   letter-spacing: 0.02em;
   margin-bottom: 8px;
   transition: color .2s;
   line-height: 1.3;
 }

 .product-title:hover {
   color: var(--navy);
 }

 .product-price {
   font-family: 'Nunito', sans-serif;
   font-size: 0.95rem;
   font-weight: 700;
   color: var(--muted);
 }

 .product-price .price-current {
   color: var(--green);
   font-size: 1rem;
 }

 /* ══════════════════════════════════════
       OWL CAROUSEL CUSTOM NAV
    ══════════════════════════════════════ */
 .owl-theme .owl-nav {
   margin-top: 32px;
   display: flex;
   justify-content: center;
   gap: 12px;
 }

 .owl-theme .owl-nav [class*='owl-'] {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12) !important;
   border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
   color: #fff !important;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0;
   transition: background .2s, border-color .2s, transform .2s;
 }

 .owl-theme .owl-nav [class*='owl-']:hover {
   background: var(--red) !important;
   border-color: var(--red) !important;
   transform: scale(1.08);
 }

 .owl-theme .owl-nav [class*='owl-'] span {
   display: none;
 }

 .owl-theme .owl-nav .owl-prev::before {
   content: '\f053';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   font-size: 0.85rem;
 }

 .owl-theme .owl-nav .owl-next::before {
   content: '\f054';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   font-size: 0.85rem;
 }

 /* Dots */
 .owl-theme .owl-dots {
   margin-top: 0 !important;
 }

 .owl-theme .owl-dots .owl-dot span {
   background: rgba(255, 255, 255, 0.3) !important;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   transition: background .2s, transform .2s;
 }

 .owl-theme .owl-dots .owl-dot.active span,
 .owl-theme .owl-dots .owl-dot:hover span {
   background: #fff !important;
   transform: scale(1.3);
 }

 .vl-products-section .owl-dots{
  display: none;
 }

 

 /* ══ RESPONSIVE ══ */
 @media (max-width: 767px) {
   .vl-products-section {
     margin: 24px 12px;
     padding: 60px 0 70px;
     border-radius: 16px;
   }

   .products-shape img {
     width: 140px;
   }
 }

 @media (max-width: 480px) {
   .section-title {
     font-size: 1.65rem;
   }

   .products-shape img {
     width: 110px;
   }
 }

 /* ── Section ── */
  .feature-one {
      padding: 60px 0;
      background: #f4f1ee;
  }

  /* ── Card ── */
  .feature-one__item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 220px;
      box-shadow: 0 8px 30px rgba(0,0,0,.18);
  }

  /* Background image layer */
  .feature-one__item__img {
      position: absolute;
      inset: 0;
      z-index: 0;
  }

  .feature-one__item__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* Dark overlay */
  .feature-one__item::after{
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
  }

  /* different colors */
  .feature-one__item:nth-child(1)::after{ background: rgba(160, 80, 1, 0.58); }
  .feature-one__item:nth-child(2)::after{ background: rgba(0, 128, 255, 0.58); }
  .feature-one__item:nth-child(3)::after{ background: rgba(3, 255, 104, 0.58); }

  /* Content row sitting above overlay */
  .feature-one__item__wrap {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      padding: 28px 28px 28px 0;
      gap: 0;
  }

  /* ── Circle image ── */
  .feature-one__item__circle_img {
      position: relative;
      flex-shrink: 0;
      width: 150px;
      height: 150px; 
  }

  /* White arc ring */
  .feature-one__item__circle_img::before,
  .feature-one__item__circle_img::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 2.5px solid rgba(255,255,255,.90);
      z-index: 4;
  }

  /* Top-right arc  */
  .feature-one__item__circle_img::before {
      width: 110px;
      height: 110px;
      top: -7px;
      left: 17px;
      clip-path: inset(0 0 50% 50%);   /* top-right quadrant */
  }

  /* Bottom-left arc */
  .feature-one__item__circle_img::after {
      width: 110px;
      height: 110px;
      bottom: -6px;
      left: -3px;
      clip-path: inset(50% 50% 0 0);   /* bottom-left quadrant */
  }

  .feature-one__item__circle_img img {
      position: relative;
      z-index: 3;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(255,255,255,.25);
      display: block;
  }

  /* ── Text info ── */
  .feature-one__item__info {
      flex: 1;
      padding-left: 20px;
  }

  .feature-one__item__info__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      line-height: 1.3;
      letter-spacing: .3px;
  }

  .feature-one__item__info__text {
      font-family: 'Lato', sans-serif;
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255,255,255,.88);
      line-height: 1.65;
      margin: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 991.98px) {
      .feature-one__col + .feature-one__col {
          margin-top: 24px;
      }
  }

  @media (max-width: 575.98px) {
      .feature-one__item {
          height: auto;
          min-height: 180px;
      }

      .feature-one__item__wrap {
          padding: 20px 18px 20px 0;
          gap: 0;
      }

      .feature-one__item__circle_img {
          width: 120px;
          height: 120px; 
      }

      .feature-one__item__info__title {
          font-size: 1.05rem;
      }

      .feature-one__item__info__text {
          font-size: .80rem;
      }
  }


  /* ─── Section wrapper ───────────────────── */
  .about-section {
      padding: 80px 0 80px;
      background: #e6781728;
      position: relative;
      overflow: hidden;
  }

  /* ─── DECORATIVE CURVES (background) ────── */
  .deco-curve {
      position: absolute;
      border-radius: 50%;
      border: 4px solid #ffffff;
      opacity: .55;
      pointer-events: none;
  }

  .deco-curve--1 {
      width: 287px;
      height: 345px;
      top: 84px;
      left: 136px;
      transform: rotate(-11deg);
      clip-path: inset(0 50% 60% 0);
  }

  .deco-curve--2 {
      width: 200px;
      height: 200px;
      bottom: 60px;
      left: 435px;
      border-radius: 5%;
      clip-path: inset(50% 0 0 50%);
  }

  /* ─── LEFT: image collage ───────────────── */
  .collage-wrap {
      position: relative;
      width: 100%;
      max-width: 520px;
      height: 540px;
      margin: 0 auto;
  }

  /* Gold semi-circle accent */
  .collage-gold-arc {
      position: absolute;
      top: 0;
      left: 30px;
      width: 380px;
      height: 330px;
      background: var(--green);
      border-radius: 50%;
      opacity: .80;
      z-index: 0;
      clip-path: inset(0 0 50% 0);
      /* top half only */
  }

  /* Main arch image (worker) */
  .collage-main {
      position: absolute;
      top: 40px;
      left: 20px;
      width: 400px;
      height: 490px;
      border-radius: 180px 180px 20px 20px;
      overflow: hidden;
      z-index: 2;
      box-shadow: 0 16px 48px rgba(0, 0, 0, .20);
  }

  .collage-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
  }

  /* Hexagon / tile image */
  .collage-hex {
      position: absolute;
      top: 60px;
      right: 0;
      width: 220px;
      height: 300px;
      border-radius: 18px;
      overflow: hidden;
      z-index: 3;
      box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
  }

  .collage-hex img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* Lamp / interior image */
  .collage-lamp {
      position: absolute;
      bottom: 0;
      right: 30px;
      width: 200px;
      height: 200px;
      border-radius:  100% 0px 0px 0px;
      overflow: hidden;
      z-index: 3;
      box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
      border: 5px solid #e7d8ce;
  }

  .collage-lamp img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* Play button */
  .play-btn {
      position: absolute;
      top: 145px;
      right: 135px;
      width: 68px;
      height: 68px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
  }

  .play-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 32px rgba(0, 0, 0, .22);
  }

  .play-btn i {
      color: var(--red);
      font-size: 1.25rem;
      margin-left: 4px;
  }

  /* ─── RIGHT: Text content ───────────────── */
  .about-content {
      padding: 10px 0 10px 20px;
  }

  /* Sub-label */
  .sub-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
  }

  .sub-label i {
      font-size: .90rem;
  }

  /* Big title */
  .main-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: 800;
      line-height: 1.12;
      color: var(--navy);
      margin-bottom: 22px;
      letter-spacing: -.02em;
  }

  /* Description */
  .about-desc {
      font-size: .97rem;
      font-weight: 300;
      color: #6B6358;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 540px;
  }

  /* Feature mini columns */
  .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 40px;
      padding-bottom: 36px;
      border-bottom: 1.5px solid rgba(0, 0, 0, .10);
      margin-bottom: 36px;
  }

  .feature-item__title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
  }

  .feature-item__text {
      font-size: .88rem;
      font-weight: 300;
      color: #6B6358;
      line-height: 1.65;
  }

  /* CTA row */
  .cta-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
  }

  .btn-about {
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 15px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      letter-spacing: .02em;
      cursor: pointer;
      transition: background .22s, transform .22s;
      text-decoration: none;
  }

  .btn-about:hover {
      background: #333;
      transform: translateY(-2px);
      color: #fff;
  }

  .call-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .call-icon {
      width: 52px;
      height: 52px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .call-icon i {
      color: #fff;
      font-size: 1.15rem;
  }

  .call-text p:first-child {
      font-size: .78rem;
      font-weight: 400;
      color: #6B6358;
      margin-bottom: 2px;
  }

  .call-text p:last-child {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--navy2);
      letter-spacing: .02em;
  }

  /* ─── Responsive ────────────────────────── */
  @media (max-width: 991.98px) {
      .about-content {
          padding: 40px 0 0 0;
      }

      .collage-wrap {
          height: 460px;
          max-width: 440px;
      }

      .collage-main {
          width: 250px;
          height: 420px;
      }

      .collage-hex {
          width: 180px;
          height: 260px;
          right: 0;
      }

      .collage-lamp {
          width: 170px;
          height: 170px;
          right: 10px;
      }

      .play-btn {
          top: 120px;
          right: 110px;
      }
  }

  @media (max-width: 575.98px) {
      .collage-wrap {
          height: 380px;
      }

      .collage-main {
          width: 200px;
          height: 340px;
          left: 10px;
      }

      .collage-gold-arc {
          width: 180px;
          height: 180px;
          left: 10px;
      }

      .collage-hex {
          width: 150px;
          height: 200px;
          top: 50px;
      }

      .collage-lamp {
          width: 140px;
          height: 140px;
          bottom: 0;
          right: 0;
      }

      .play-btn {
          top: 90px;
          right: 80px;
          width: 52px;
          height: 52px;
      }

      .feature-grid {
          grid-template-columns: 1fr;
      }

      .main-title {
          font-size: 1.85rem;
      }
  }


  /* ─── Section ───────────────────────────── */
  .testi-section {
      padding: 80px 0 100px;
      background: #fff;
      position: relative;
      overflow: hidden;
  }

  .testimonial-container{
    max-width: 1100px;
    width: 100%;
    margin: auto;
  }

  /* ── Decorative squiggle top-left ─────── */
  .deco-squiggle {
      position: absolute;
      top: 60px;
      left: 30px;
      width: 70px;
      opacity: .55;
      pointer-events: none;
  }

  /* ── Decorative asterisk bottom-right ─── */
  .deco-star {
      position: absolute;
      bottom: 60px;
      right: 30px;
      width: 90px;
      opacity: .20;
      pointer-events: none;
      animation-name: spin;
      animation-duration: 5s; /* How long one rotation takes */
      animation-iteration-count: infinite; /* Keeps it spinning indefinitely */
      animation-timing-function: linear; /* Constant speed */
  }

  /* Define the animation */
  @keyframes spin {
    from {
      transform: rotate(0deg); /* Starting point of the rotation */
    }
    to {
      transform: rotate(360deg); /* Ending point after a full rotation */
    }
  }

 

  /* ─── Section header ────────────────────── */
  .testi-header {
      text-align: center;
      margin-bottom: 52px;
  }

  .sub-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
  }

  .sub-label i {
      font-size: .85rem;
  }

  .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -.02em;
      line-height: 1.15;
  }

  /* ─── Gold card ─────────────────────────── */
  .testi-card {
      background: var(--gold);
      border-radius: 22px;
      position: relative;
      overflow: hidden;
      min-height: 380px;
      display: flex;
      align-items: stretch;
  }

  /* Faint background watermark person */
  .testi-card__bg-figure {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 55%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=60') center/cover no-repeat;
      opacity: .18;
      z-index: 0;
      border-radius: 0 22px 22px 0;
  }

  /* Squiggly SVG overlays on card */
  .card-squig {
      position: absolute;
      pointer-events: none;
      z-index: 1;
  }

  .card-squig--top {
      top: 30px;
      left: 50%;
      transform: translateX(-20%);
      width: 90px;
      opacity: .7;
  }

  .card-squig--bot {
      bottom: 28px;
      right: 80px;
      width: 90px;
      opacity: .7;
  }

  /* ─── Left: speech bubble ───────────────── */
  .testi-bubble-col {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      padding: 48px 60px 48px 0px;
      justify-content: center;
  }

  .testi-bubble {
      background: var(--white);
      border-radius: 50%;
      width: 320px;
      height: 320px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 36px 32px 48px;
      position: relative;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
      text-align: center;
      /* speech bubble tail pointing right */
  }

  .testi-bubble::after {
      content: '';
      position: absolute;
      bottom: 77px;
      right: -17px;
      width: 0;
      height: 0;
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 32px solid var(--white);
      filter: drop-shadow(4px 2px 4px rgba(0, 0, 0, .06));
      transform: rotate(23deg);
  }

  /* Quote icon */
  .bubble-quote-icon {
      color: var(--gold);
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 12px;
  }

  .bubble-text {
      font-family: 'DM Sans', sans-serif;
      font-style: italic;
      font-size: .88rem;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.7;
      margin-bottom: 16px;
  }

  .bubble-name {
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 2px;
  }

  .bubble-role {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
  }

  .bubble-stars i {
      color: var(--gold);
      font-size: .82rem;
      margin: 0 1px;
  }

  /* ─── Right: avatar circle + nav ────────── */
  .testi-avatar-col {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 48px 40px 60px;
  }

  .avatar-ring-wrap {
      position: relative;
      width: 280px;
      height: 280px;
  }

  /* Dashed ring */
  .avatar-ring-wrap::before {
      content: '';
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      border: 2px dashed rgba(255, 255, 255, .65);
  }

  .avatar-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      display: block;
      border: 5px solid rgba(255, 255, 255, .30);
  }

  /* Prev / Next nav arrows */
  .owl-nav-custom {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: calc(100% + 140px);
      left: -70px;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 5;
  }

  .owl-nav-btn {
      pointer-events: all;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      font-size: .85rem;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
      transition: background .2s, transform .2s;
  }

  .owl-nav-btn:hover {
      background: #fff;
      transform: scale(1.08);
  }

  /* ─── Dots ──────────────────────────────── */
  .owl-dots {
      text-align: center;
      margin-top: 28px;
  }

  .owl-dot span {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ddd;
      margin: 0 4px;
      transition: background .25s, width .25s;
  }

  .owl-dot.active span {
      background: var(--gold);
      width: 28px;
      border-radius: 6px;
  }

  /* ─── Fade-in animation ─────────────────── */
  @keyframes fadeSlideUp {
      from {
          opacity: 0;
          transform: translateY(22px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .owl-item.active .testi-card {
      animation: fadeSlideUp .55s ease both;
  }

  /* ─── Responsive ────────────────────────── */
  @media (max-width: 991.98px) {
      .testi-card {
          flex-direction: column;
          align-items: center;
          min-height: auto;
      }

      .testi-bubble-col {
          padding: 40px 24px 24px;
          justify-content: center;
      }

      .testi-bubble {
          width: 290px;
          height: 290px;
          padding: 28px 26px 42px;
      }

      .testi-bubble::after {
          display: none;
      }

      .testi-avatar-col {
          padding: 10px 24px 40px;
      }

      .avatar-ring-wrap {
          width: 220px;
          height: 220px;
      }

      .owl-nav-custom {
          width: calc(100% + 0px);
          left: 0;
      }
  }

  @media (max-width: 575.98px) {
      .testi-bubble {
          width: 250px;
          height: 250px;
          padding: 22px 18px 38px;
      }

      .bubble-text {
          font-size: .80rem;
      }

      .avatar-ring-wrap {
          width: 180px;
          height: 180px;
      }
  }

  .testi-section .owl-dots {
      display: none;
  }

  /* ─── Section ─────────────────────────────── */
  .faq-section {
      padding: 80px 0 90px;
      background: #fff;
      position: relative;
      overflow: hidden;
      background-image: url(../image/img/bgg.webp);
      background-size: cover;

  }

  /* Decorative circle top-left */
  .deco-circle {
      position: absolute;
      top: 28px;
      left: 56px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      opacity: .45;
      pointer-events: none;
  }

  /* ════════════════════════════════════════════
  LEFT — ACCORDION
════════════════════════════════════════════ */
  .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  /* Each item */
  .faq-item {
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .25s;
  }

  .faq-item:not(.active) {
      background: var(--cream);
      box-shadow: none;
  }

  .faq-item.active {
      background: var(--green);
      box-shadow: 0 12px 36px rgba(212, 146, 42, .30);
      border-radius: 28px;
      /* slightly softer when open */
  }

  /* Header row */
  .faq-header {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 24px;
      cursor: pointer;
      user-select: none;
  }

  /* Icon circle */
  .faq-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .3s;
  }

  .faq-icon i {
      color: #fff;
      font-size: .88rem;
      transition: transform .35s;
  }

  .faq-item.active .faq-icon i {
      transform: rotate(45deg);
      /* + becomes × */
  }

  /* Question text */
  .faq-question {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.35;
      flex: 1;
  }

  .faq-item.active .faq-question {
      color: #fff;
  }

  .faq-item.active .faq-icon {
      background: rgba(0, 0, 0, .28);
  }

  /* Answer body */
  .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
  }

  .faq-item.active .faq-body {
      max-height: 200px;
  }

  .faq-body-inner {
      padding: 0 24px 24px 86px;
      font-size: .92rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .92);
      line-height: 1.75;
  }

  /* ════════════════════════════════════════════
  RIGHT — CONTENT
════════════════════════════════════════════ */
  .faq-content {
      padding-left: 40px;
  }

  .sub-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 16px;
  }

  .sub-label i {
      font-size: .85rem;
  }

  .main-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.75rem, 3vw, 2.75rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 22px;
  }

  .faq-desc {
      font-size: .92rem;
      font-weight: 300;
      color: #fff;
      line-height: 1.75;
      margin-bottom: 30px;
      max-width: 520px;
  }

  /* ── Feature list + image row ─────────────── */
  .feature-row {
      display: flex;
      align-items: flex-end;
      gap: 30px;
      flex-wrap: wrap;
  }

  .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
      min-width: 200px;
  }

  .feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .96rem;
      font-weight: 700;
      color: #fff;
  }

  .feature-list li i {
      color: var(--green);
      font-size: .95rem;
      flex-shrink: 0;
  }

  /* ── Arch image ─────────────────────────── */
  .arch-img-wrap {
      width: 230px;
      height: 160px;
      border-radius: 120px 120px 20px 20px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 10px 32px rgba(0, 0, 0, .14);
  }

  .arch-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
  }

  /* ─── Responsive ──────────────────────────── */
  @media (max-width: 991.98px) {
      .faq-content {
          padding-left: 0;
          margin-top: 52px;
      }
  }

  @media (max-width: 575.98px) {
      .faq-question {
          font-size: .92rem;
      }

      .arch-img-wrap {
          width: 170px;
          height: 130px;
      }

      .main-title {
          font-size: 1.6rem;
      }
  }

  /* ═══════════════════════════════
       FOOTER WRAPPER
    ═══════════════════════════════ */
  .site-footer {
      background-color: var(--footer-bg);
      position: relative;
      overflow: hidden;
  }

  /* ── BG shape image (merged) ── */
  .site-footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
          url('https://pixydrops.com/wallox-html/assets/images/shapes/blog-bg-shape.png') center center / cover no-repeat;
      opacity: .10;
      pointer-events: none;
      z-index: 0;
  }

  /* ── Deep gradient overlay on top of shape ── */
  .site-footer::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
              rgba(14, 0, 111, .75) 0%,
              rgba(26, 31, 110, .55) 50%,
              rgba(14, 0, 111, .80) 100%);
      pointer-events: none;
      z-index: 0;
  }

  /* All direct children sit above overlays */
  .footer-top,
  .footer-main,
  .footer-bottom {
      position: relative;
      z-index: 1;
  }

  /* Deco circle top-left */
  .deco-circle-tl {
      position: absolute;
      top: 24px;
      left: -10px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid var(--yellow);
      opacity: .30;
      pointer-events: none;
      z-index: 1;
  }

  /* ═══════════════════════════════
  TOP BAR
═══════════════════════════════ */
  .footer-top {
      padding:5px 0 5px;
      border-bottom: 1px solid var(--border-col);
  }

  /* Logo */
  .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
  }

  .logo-diamond {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
  }

  .logo-diamond svg {
      width: 100%;
      height: 100%;
  }

  .logo-name {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -.01em;
      display: block;
  }

  .logo-tagline {
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
  }

  /* ── Decorative divider line ── */
  .subscribe-line-wrap {
      flex: 1;
      margin: 0 32px;
      display: flex;
      align-items: center;
  }

  .subscribe-line {
      flex: 1;
      height: 1.5px;
      background: linear-gradient(90deg,
              transparent 0%,
              rgba(245, 208, 0, .45) 20%,
              rgba(245, 208, 0, .90) 50%,
              rgba(245, 208, 0, .45) 80%,
              transparent 100%);
      border-radius: 2px;
      position: relative;
  }

  .subscribe-line::before,
  .subscribe-line::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 7px;
      height: 7px;
      background: var(--yellow);
      border-radius: 1px;
  }

  .subscribe-line::before {
      left: 28%;
  }

  .subscribe-line::after {
      right: 28%;
  }

  /* Social icons */
  .social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-shrink: 0;
    margin: 0;
  }

  .social-list a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border-col);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: .85rem;
      text-decoration: none;
      transition: border-color .22s, color .22s, background .22s;
  }

  .social-list a:hover {
      border-color: var(--yellow);
      color: var(--navy2);
      background: var(--yellow);
  }

  /* ═══════════════════════════════
  MAIN COLUMNS
═══════════════════════════════ */
  .footer-main {
      padding: 58px 0 52px;
  }

  .footer-col-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 22px;
      position: relative;
      padding-bottom: 14px;
  }

  .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 34px;
      height: 2.5px;
      background: var(--yellow);
      border-radius: 2px;
  }

  /* About */
  .about-text {
      font-size: .88rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.82;
      margin-bottom: 28px;
      max-width: 300px;
  }

  /* Consultant btn */
  .btn-consultant {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1.5px solid var(--yellow);
      border-radius: 100px;
      padding: 11px 26px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--yellow);
      text-decoration: none;
      transition: background .22s, color .22s, border-color .22s;
  }

  .btn-consultant:hover {
      background: var(--yellow);
      color: var(--navy2);
      border-color: var(--yellow);
  }

  /* Link lists */
  .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      padding-left: 0;
      gap: 12px;
  }

  .footer-link-list li {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .footer-link-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
      opacity: .85;
  }

  .footer-link-list a {
      font-size: .88rem;
      font-weight: 300;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s, padding-left .2s;
  }

  .footer-link-list a:hover {
      color: var(--yellow);
      padding-left: 4px;
  }

  /* Contact */
  .contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      padding-left: 0;
      gap: 18px;
  }

  .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
  }

  .contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(245, 208, 0, .10);
      border: 1px solid rgba(245, 208, 0, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      transition: background .22s;
  }

  .contact-icon i {
      color: var(--yellow);
      font-size: .82rem;
  }

  .contact-list li:hover .contact-icon {
      background: rgba(245, 208, 0, .22);
  }

  .contact-info {
      font-size: .87rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.65;
  }

  .contact-info a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
  }

  .contact-info a:hover {
      color: var(--yellow);
  }

  /* ═══════════════════════════════
  BOTTOM BAR
═══════════════════════════════ */
  .footer-bottom {
      border-top: 1px solid var(--border-col);
      padding: 22px 0;
      background: rgba(14, 0, 111, .35);
  }

  .copyright {
      font-size: .84rem;
      font-weight: 300;
      color: var(--text-muted);
      margin: 0;
  }

  .copyright a {
      color: var(--yellow);
      text-decoration: none;
  }

  .copyright a:hover {
      text-decoration: underline;
  }
 

  /* ── Red accent strip on bottom bar ── */
  .footer-bottom::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: -1px;
      height: 3px;
      background: linear-gradient(90deg,
              var(--red2) 0%,
              var(--red) 30%,
              var(--yellow) 55%,
              var(--orange) 75%,
              var(--red2) 100%);
      opacity: .70;
      z-index: 2;
  }

  /* ─── Responsive ──────────────────────────── */
  @media (max-width: 991.98px) {
      .subscribe-line-wrap {
          margin: 20px 0;
          order: 3;
          width: 100%;
      }

      .footer-top .d-flex {
          flex-wrap: wrap;
      }
  }

  @media (max-width: 767.98px) {
      .footer-col {
          margin-bottom: 38px;
      }
  }

  @media (max-width: 575.98px) {
      .logo-name {
          font-size: 1.3rem;
      }
  }

  /* ══════════════════════════════════════════
      BOTTOM-LEFT  ─  WhatsApp + Call stack
  ══════════════════════════════════════════ */
  .float-left-group {
      position: fixed;
      bottom: 36px;
      left: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9999;
  }

  /* Shared pill style */
  .float-pill {
      display: flex;
      align-items: center;
      gap: 0;
      border-radius: 100px;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 28px rgba(0, 0, 0, .22);
      transition: transform .25s, box-shadow .25s;
      width: 52px;
      /* collapsed — shows icon only */
      transition: width .4s cubic-bezier(.34, 1.56, .64, 1), transform .25s, box-shadow .25s;
  }

  .float-pill:hover {
      width: 185px;
      /* expands to show label */
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
  }

  /* Icon circle half */
  .pill-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100px;
      font-size: 1.15rem;
      color: #fff;
      position: relative;
      z-index: 1;
  }

  /* Label half */
  .pill-label {
      white-space: nowrap;
      overflow: hidden;
      padding: 0 18px 0 10px;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity .3s .1s, transform .3s .1s;
  }

  .float-pill:hover .pill-label {
      opacity: 1;
      transform: translateX(0);
  }

  /* WhatsApp pill */
  .pill-whatsapp {
      background: var(--green);
  }

  .pill-whatsapp .pill-icon {
      background: #006e23;
  }

  .pill-whatsapp .pill-label {
      color: #fff;
  }

  /* Call pill */
  .pill-call {
      background: var(--navy);
  }

  .pill-call .pill-icon {
      background: var(--navy2);
  }

  .pill-call .pill-label {
      color: var(--yellow);
  }

  /* Pulse ring on WhatsApp */
  .pill-icon::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid currentColor;
      opacity: 0;
      animation: pulse-ring 2.4s ease-out infinite;
  }

  .pill-whatsapp .pill-icon {
      color: #4ade80;
  }

  .pill-call .pill-icon {
      color: var(--yellow);
  }

  @keyframes pulse-ring {
      0% {
          transform: scale(.85);
          opacity: .6;
      }

      70% {
          transform: scale(1.3);
          opacity: 0;
      }

      100% {
          opacity: 0;
      }
  }

  .pill-call .pill-icon::after {
      animation-delay: .8s;
  }


  /* ══════════════════════════════════════════
  BOTTOM-RIGHT  ─  Go to Top
══════════════════════════════════════════ */
  .float-top-btn {
      position: fixed;
      bottom: 36px;
      right: 32px;
      z-index: 9999;
      cursor: pointer;
      text-decoration: none;

      /* Hexagon via clip-path */
      width: 56px;
      height: 56px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2px;
      transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;

      /* hidden until scrolled */
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px) scale(.8);
  }

  .float-top-btn.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0) scale(1);
  }

  .float-top-btn:hover {
      transform: translateY(-4px) scale(1.08);
  }

  .top-btn-icon {
      font-size: .95rem;
      color: var(--navy2);
      line-height: 1;
  }

  .top-btn-text {
      font-size: .44rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--navy2);
      line-height: 1;
  }

  /* Rotating outer ring */
  .top-btn-ring {
      position: fixed;
      bottom: 28px;
      right: 24px;
      width: 72px;
      height: 72px;
      z-index: 9998;
      pointer-events: none;
      opacity: 0;
      transition: opacity .3s;
  }

  .top-btn-ring.visible {
      opacity: 1;
  }

  .top-btn-ring svg {
      width: 100%;
      height: 100%;
      animation: spin-ring 8s linear infinite;
  }

  @keyframes spin-ring {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* Progress arc */
  .top-btn-ring circle {
      fill: none;
      stroke: var(--navy);
      stroke-width: 2.5;
      stroke-dasharray: 200;
      stroke-dashoffset: 200;
      stroke-linecap: round;
      transition: stroke-dashoffset .2s;
  }

  /* ── Mobile ──────────────────── */
  @media (max-width: 480px) {
      .float-left-group {
          left: 16px;
          bottom: 20px;
      }

      .float-top-btn {
          right: 16px;
          bottom: 20px;
          width: 48px;
          height: 48px;
      }

      .top-btn-ring {
          right: 8px;
          bottom: 12px;
          width: 64px;
          height: 64px;
      }
  }


  /* ── All classes prefixed .phero- — zero conflicts ── */

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--phero-blue), #60a5fa, var(--phero-blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.demo-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 28px 0 14px;
}


/* ── Outer card ── */
.bp-wrapper {  
    padding: 48px 52px 52px;
}

/* ── Brand identity row (no header block, just inline) ── */
.bp-brand-row {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid #f0eff8;
}

.bp-logo-mark {
    width: 46px;
    height: 46px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bp-logo-mark svg {
    width: 26px;
    height: 26px;
}

.bp-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--navy2);
    letter-spacing: .04em;
    line-height: 1;
    display: block;
}

.bp-company-sub {
    font-size: .78rem;
    font-weight: 500;
    color: #999;
    letter-spacing: .10em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

.bp-tag {
    margin-left: auto;
    background: #f0eff8;
    color: var(--navy);
    font-size: .70rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

/* ── Main content area ── */
.bp-content-area::after {
    content: '';
    display: table;
    clear: both;
}

/* ── Left float: image + contact ── */
.bp-left-col {
    float: left;
    width: 45%;
    margin: 0 36px 8px 0;
}

.bp-product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ── Contact card ── */
.bp-contact-card {
    margin-top: 16px;
    border: 1.5px solid #ebebf5;
    border-radius: 12px;
    overflow: hidden;
}

.bp-contact-card-head {
    background: var(--navy);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-contact-card-head i {
    color: var(--yellow);
    font-size: .78rem;
}

.bp-contact-card-head-text {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
}

.bp-contact-list {
    list-style: none;
    padding: 8px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #f0eff8;
    border-radius: 10px;
    background: #fafafe;
    transition: background .18s, border-color .18s;
}

.bp-contact-item:hover {
    background: #f3f2fb;
    border-color: #dddaf5;
}

.bp-ci-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.bp-ci-icon i {
    font-size: .78rem;
}

.bp-ci-icon--owner {
    background: #f0eff8;
}

.bp-ci-icon--owner i {
    color: var(--navy);
}

.bp-ci-icon--phone {
    background: #fff3e0;
}

.bp-ci-icon--phone i {
    color: var(--orange);
}

.bp-ci-icon--email {
    background: #fff8e1;
}

.bp-ci-icon--email i {
    color: var(--red);
}

.bp-ci-icon--addr {
    background: #e8f5e9;
}

.bp-ci-icon--addr i {
    color: var(--green);
}

.bp-ci-body {
    flex: 1;
    min-width: 0;
}

.bp-ci-label {
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #bbb;
    display: block;
    margin-bottom: 2px;
}

.bp-ci-value {
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    line-height: 1.45;
    word-break: break-word;
}

.bp-ci-value a {
    color: var(--navy);
    text-decoration: none;
}

.bp-ci-value a:hover {
    color: var(--orange);
}

/* ── Article text ── */
.bp-article {
    font-size: .96rem;
    font-weight: 300;
    line-height: 1.90;
    color: #444;
    text-align: justify;
}

.bp-article h2{
  font-weight: 700;
}

.bp-article p {
    margin-bottom: 20px;
}

.bp-article p:last-child {
    margin-bottom: 0;
}

.bp-bold {
    font-weight: 700;
    color: var(--navy2);
}

.bp-emph {
    font-weight: 600;
    color: var(--orange);
}

/* ── Bottom tag row ── */
.bp-bottom-row {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1.5px solid #f0eff8;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.bp-badge {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1.5px solid;
}

.bp-badge--navy {
    color: var(--navy);
    border-color: var(--navy);
    background: #f0eff8;
}

.bp-badge--orange {
    color: var(--orange);
    border-color: var(--orange);
    background: #fff3e0;
}

.bp-badge--green {
    color: var(--green);
    border-color: var(--green);
    background: #e8f5e9;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bp-wrapper {
        padding: 28px 20px 32px;
    }

    .bp-left-col {
        float: none;
        width: 100%;
        margin: 0 0 24px 0;
    }

    .bp-brand-row {
        flex-wrap: wrap;
    }

    .bp-tag {
        margin-left: 0;
    }
}


/* Sitemap  */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--navy);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: #d59e06;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d59e06;
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}


/* ══════════════════════════════════════
    SECTION
══════════════════════════════════════ */
    .ct-section {
        padding: 70px 0 80px;
        background: var(--cream);
        position: relative;
        overflow: hidden;
    }

    /* Subtle wood-grain SVG texture */
    .ct-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            repeating-linear-gradient(92deg,
                rgba(180, 155, 110, .07) 0px,
                transparent 1px,
                transparent 38px,
                rgba(180, 155, 110, .04) 39px,
                transparent 40px),
            repeating-linear-gradient(178deg,
                rgba(180, 155, 110, .05) 0px,
                transparent 1px,
                transparent 60px);
        pointer-events: none;
        z-index: 0;
    }

    .ct-section .container {
        position: relative;
        z-index: 1;
    }

    /* ══════════════════════════════════════
    LEFT — INFO CARDS
══════════════════════════════════════ */
    .ct-cards-col {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .ct-info-card {
        background: #EFECE3;
        border-radius: 18px;
        padding: 36px 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
        border: 1px solid rgba(180, 155, 110, .18);
    }

    /* Icon circle */
    .ct-card-icon {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #E8E3D6;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(180, 155, 110, .25);
    }

    .ct-card-icon i {
        font-size: 1.15rem;
        color: var(--gold);
    }

    /* Card text */
    .ct-card-body {
        flex: 1;
        min-width: 0;
    }

    .ct-card-title {
        font-size: 1.02rem;
        font-weight: 700;
        color: #2a2016;
        display: block;
        margin-bottom: 6px;
    }

    .ct-card-line {
        font-size: .88rem;
        font-weight: 400;
        color: var(--muted);
        display: block;
        line-height: 1.55;
    }

    .ct-card-line a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

    .ct-card-line a:hover {
        color: var(--gold);
    }

    /* ══════════════════════════════════════
    MIDDLE — ARCH IMAGE + CIRCLE DECO
══════════════════════════════════════ */
    .ct-image-col {
        position: relative;
        display: flex;
        align-items: stretch;
    }

    /* Hollow circle deco on left edge */
    .ct-deco-circle {
        position: absolute;
        left: -14px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid rgba(180, 155, 110, .50);
        background: transparent;
        z-index: 2;
    }

    .ct-arch-img {
        width: 100%;
        height: 100%;
        min-height: 480px;
        object-fit: cover;
        object-position: center top;
        border-radius: 220px 220px 18px 18px;
        display: block;
    }

    /* ══════════════════════════════════════
    RIGHT — FORM
══════════════════════════════════════ */
    .ct-form-col {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* Each input wrapper */
    .ct-field {
        width: 100%;
    }

    .ct-input,
    .ct-select,
    .ct-textarea {
        width: 100%;
        background: var(--white);
        border: none;
        border-radius: 10px;
        padding: 16px 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: .94rem;
        font-weight: 400;
        color: #2a2016;
        outline: none;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
        transition: box-shadow .2s;
    }

    .ct-input::placeholder,
    .ct-textarea::placeholder {
        color: #b5a99a;
    }

    .ct-input:focus,
    .ct-select:focus,
    .ct-textarea:focus {
        box-shadow: 0 0 0 2px rgba(212, 146, 42, .30);
    }

    /* Select */
    .ct-select-wrap {
        position: relative;
    }

    .ct-select {
        color: #b5a99a;
        cursor: pointer;
    }

    .ct-select.selected {
        color: #2a2016;
    }

    .ct-select-wrap::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: .70rem;
        color: #b5a99a;
        pointer-events: none;
    }

    /* Textarea */
    .ct-textarea {
        height: 140px;
        resize: none;
    }

    /* Submit button */
    .ct-submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--gold);
        color: var(--white);
        border: none;
        border-radius: 10px;
        padding: 16px 34px;
        font-family: 'DM Sans', sans-serif;
        font-size: .98rem;
        font-weight: 700;
        cursor: pointer;
        transition: background .22s, transform .2s;
        width: fit-content;
    }

    .ct-submit-btn:hover {
        background: var(--amber);
        transform: translateY(-2px);
    }

    .ct-submit-btn i {
        font-size: .85rem;
    }

    /* Right panel background */
    .ct-right-panel {
        background: #EFECE3;
        border-radius: 24px;
        padding: 36px 36px 40px;
        height: 100%;
        border: 1px solid rgba(180, 155, 110, .18);
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ══════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════ */
    @media (max-width: 991.98px) {
        .ct-image-col {
            margin: 32px 0;
            min-height: 300px;
        }

        .ct-arch-img {
            min-height: 320px;
            border-radius: 160px 160px 14px 14px;
        }

        .ct-deco-circle {
            display: none;
        }
    }

    @media (max-width: 575.98px) {
        .ct-right-panel {
            padding: 24px 18px 28px;
        }

        .ct-arch-img {
            min-height: 260px;
        }
    }