* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}



:root {
    --primary-teal: #000; /* Matching the button color */
    --light-bg: #e6fcf9;      /* Matching top bar background */
    --text-dark: #333333;
    --nav-link-color: #333;
    --slide-h: 500px;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.78);
    --speed: 750ms;
    --ease: cubic-bezier(.77, 0, .18, 1);
}

      

        /* Top Bar Styling */
        .top-bar {
            background-color: #000;
            font-size: 14px;
            color: #fff;
            font-weight: 600;
        }

        .btn-teal { 
            color: white;
            font-weight: 600;
            border-radius: 20px;
            padding: 4px 0px;
            font-size: 13px;
            /*text-transform: lowercase;*/
        }
        .btn-teal:hover { 
            color: #000;
        }

        /* Main Header Styling */
        .main-header {
            padding: 15px 0;
            background: white;
        }

        .logo-img {
            max-width: 195px;
            height: auto;
        }

        /* Search Bar Styling */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 600px;
        }
        
        .search-input {
            border-radius: 50px;
            padding: 10px 20px 10px 45px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .search-input:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.2rem rgba(0, 127, 115, 0.25);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .clear-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            cursor: pointer;
        }

        /* Utility Links (Rewards, Help, etc) */
        .utility-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            margin-left: 20px;
        }
        .utility-nav a:hover {
            color: var(--primary-teal);
        }

        /* Bottom Navbar Styling */
        .navbar-bottom {
            background-color: white;
            padding-top: 0;
            padding-bottom: 10px;
        }
        
        .nav-link {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 15px !important;
        }

        .nav-link.active-teal {
            color: var(--primary-teal);
        }
        
        .nav-link:hover {
            color: var(--primary-teal);
        }
        
        .navbar-bottom .nav-link {
    white-space: nowrap;     
}


.navbar-bottom .navbar-nav {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center; 
    /*gap: 10px;              */
}

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .utility-nav {
                display: none; /* Hide text links on small screens */
            }
            .mobile-icons {
                display: flex;
                gap: 15px;
            }
            .search-container {
                margin-top: 10px;
            }
            .logo-img {
                max-width: 120px;
            }
        }

        /* Mobile Side Navigation */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 400px;
            background-color: white;
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.3s ease-in-out;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: flex-end;
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
        }
        .mobile-nav-header img{
            width: 38%;
            margin-right: 48%;
            margin-top: -16px;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-close:hover {
            color: var(--primary-teal);
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-list li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-teal);
            background-color: rgba(0, 127, 115, 0.05);
            padding-left: 25px;
        }

        .mobile-nav-link.active-teal {
            color: var(--primary-teal);
        }
 

    /* ── Wrapper ── */
    .hero-slider {
      position: relative;
      width: 100%;
      height: var(--slide-h);
      overflow: hidden;
    }

    /* ── Track ── */
    .slides-track {
      display: flex;
      height: 100%;
      transition: transform var(--speed) var(--ease);
      will-change: transform;
    }

    /* ── Single slide: full-bleed image behind everything ── */
    .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }

    /* Full-bleed background image for each slide */
    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
      transition: transform 6s ease;
    }

    .slide.is-active .slide-bg {
      transform: scale(1.04);
    }

    /* ── LEFT image panel (58%) ── */
    .slide-visual {
      position: relative;
      flex: 0 0 58%;
      z-index: 1;
      overflow: visible;
      display: flex;
      align-items: flex-end;
      padding: 2.2rem 2rem;
    }

    /* Diagonal right edge — pure CSS clip, no pseudo backgrounds */
    .slide-visual::after {
      content: '';
      position: absolute;
      top: 0;
      right: -55px;
      bottom: 0;
      width: 110px;
      background: inherit;
      /* same image continues */
      clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
      z-index: 2;
    }

    /* Image fills the visual panel */
    .slide-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      z-index: 0;
    }

    /* Dark gradient at bottom of image so label is readable */
    .slide-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
          rgba(0, 0, 0, .72) 0%,
          rgba(0, 0, 0, .18) 50%,
          rgba(0, 0, 0, .04) 100%);
      z-index: 1;
    }

    /* Label sitting on top of image */
    .visual-label {
      position: relative;
      z-index: 3;
      color: var(--white);
    }

    .visual-label .big-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-style: italic;
      font-size: clamp(2rem, 3.6vw, 3rem);
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
    }

    .visual-label .sub-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      margin-top: 0.4rem;
      text-transform: uppercase;
    }

    .slide-1 .sub-text {
      color: #ff6b6b;
    }

    .slide-2 .sub-text {
      color: #2dcc9e;
    }

    .slide-3 .sub-text {
      color: #c4a0ff;
    }

    /* ── RIGHT content panel (42%) ── */
    .slide-content {
      flex: 0 0 42%;
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* generous left padding to clear the diagonal overlap */
      padding: 3rem 3.5rem 3rem 5rem;
      min-width: 0;
      /* prevent flex overflow */
    }

    .slide-1 .slide-content {
      background: #000;
    }

    .slide-2 .slide-content {
      background: #0a1f1a;
    }

    .slide-3 .slide-content {
      background: #150a24;
    }

    /* ── Text elements ── */
    .slide-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-style: italic;
      font-size: clamp(1.55rem, 2.4vw, 2.4rem);
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: 0.01em;
      margin-bottom: 1rem;
      /* prevent text overflow */
      word-break: break-word;
      hyphens: auto;
    }

    .slide-body {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--muted);
      margin-bottom: 1.8rem;
    }

    /* ── CTA button ── */
    .slide-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.85rem 1.5rem;
      border: none;
      cursor: pointer;
      width: fit-content;
      flex-shrink: 0;
      transition: filter 0.22s ease, transform 0.18s ease;
    }

    .slide-cta:hover {
      filter: brightness(1.14);
      transform: translateY(-2px);
    }

    .slide-cta:active {
      transform: translateY(0);
    }

    .slide-1 .slide-cta {
      background: #c8102e;
      color: #fff;
    }

    .slide-2 .slide-cta {
      background: #2dcc9e;
      color: #041a11;
    }

    .slide-3 .slide-cta {
      background: #b28af8;
      color: #0d0620;
    }

    /* ── Entrance animation ── */
    .slide-content .slide-heading,
    .slide-content .slide-body,
    .slide-content .slide-cta {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .slide.is-active .slide-heading {
      opacity: 1;
      transform: none;
      transition-delay: 0.38s;
    }

    .slide.is-active .slide-body {
      opacity: 1;
      transform: none;
      transition-delay: 0.50s;
    }

    .slide.is-active .slide-cta {
      opacity: 1;
      transform: none;
      transition-delay: 0.62s;
    }

    .slide.is-active .slide-cta:hover {
      transform: translateY(-2px);
    }

    /* ── Nav arrows ── */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, .22);
      background: rgba(0, 0, 0, .32);
      color: #fff;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: background 0.2s, border-color 0.2s;
    }

    .slider-arrow:hover {
      background: rgba(0, 0, 0, .55);
      border-color: rgba(255, 255, 255, .5);
    }

    .slider-arrow.prev {
      left: 0;
    }

    .slider-arrow.next {
      right: 0;
    }

    /* ── Dots ── */
    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 29%;
      /* centred over the image panel */
      transform: translateX(-50%);
      display: flex;
      gap: 9px;
      z-index: 20;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .35);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }

    .dot.active {
      background: #fff;
      transform: scale(1.35);
    }

    /* ── Progress bar ── */
    .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 100%;
      background: rgba(255, 255, 255, .12);
      z-index: 20;
    }

    .progress-fill {
      height: 100%;
      background: rgba(255, 255, 255, .65);
      width: 0%;
      transition: width linear;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      :root {
        --slide-h: auto;
      }

      .slide {
        flex-direction: column;
        height: auto;
      }

      .slide-visual {
        flex: 0 0 240px;
        width: 100%;
      }

      .slide-visual::after {
        display: none;
      }

      .slide-content {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem 2.5rem;
      }

      .slider-dots {
        left: 50%;
      }
    }


/* --- Section Styling --- */
        .category-section {
            padding: 40px 0;
            position: relative;
            background-color: #fff;
        }

        .section-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            font-size: 24px;
        }

        /* --- Slider Container --- */
        .slider-wrapper {
            overflow: hidden; 
            padding: 10px 5px;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease-in-out;
        }

        /* --- Card Styling --- */
        .slide-card {
            /*min-width: 305px; */
            /*height: 320px;*/ 
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background-color: #f8f9fa;
            transition: all 0.3s ease; 
            border: none;
        }

        /* Image styling */
        .slide-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease; 
        }

        /* Text Overlay inside Image */
        .card-content {
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 2;
            padding: 0 15px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(255,255,255,0.8);
        }

        .card-desc {
            font-size: 13px;
            color: #fff;
            font-weight: 500;
        }

        
        .slide-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
        }

        .slide-card:hover img {
            transform: scale(1.08); 
        }

        /* --- Navigation Buttons --- */
        .nav-btn {
            position: absolute;
            top: 55%; 
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 50%;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background-color: #f1f1f1;
            color: #007f73; 
        }

        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }

        @media (min-width: 1024px) {
    .prev-btn {
        left: 120px;
    }

    .next-btn {
        right: 120px;
    }
}


        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .slide-card {
                min-width: 220px; /* Smaller cards on mobile */
                height: 280px;
            }
            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
            .section-title {
                font-size: 20px;
            }
        }



/*========================== product section css======================== */


/* --- General Section Styling --- */
        .product-section {
            padding: 75px 0;
            background-image: url(../image/img/22.jpeg);
            background-size: cover;
           
        }
        .section-header a {
            text-decoration: none;
            color: #007f73; /* Teal color */
            font-size: 14px;
            font-weight: 600;
        }

        /* --- Slider Wrapper & Track --- */
        .product-slider-wrapper {
            position: relative;
            overflow: hidden; 
            padding: 20px 5px; 
        }

        .product-track {
            display: flex;
            gap: 20px; 
            transition: transform 0.5s ease-in-out;            
            touch-action: pan-y; 
        }

        /* --- Product Card Styling --- */
        .product-card {
            min-width: 246px; 
            background: #fff;
            border-radius: 8px;
            /* Smooth transition for hover shadow */
            transition: all 0.3s ease;
            border: 1px solid transparent; 
            margin: 10px 0;
        }

        /* Image Container (for zoom overflow) */
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 220px;
        }

        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease; /* Smooth zoom */
        }

        /* Badges (New, Sale, Limited) */
        .badge-container {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 2;
        }
        .custom-badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: white;
        }
        .badge-green { background-color: #4CAF50; }
        .badge-black { background-color: #222; }
        .badge-sale { background-color: #d32f2f; }

        /* Quick Add Icon */
        .quick-add-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #c8102e;

            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            cursor: pointer;
            z-index: 2;
        }

        /* Card Info */
        .product-info {
            padding: 15px 15px;
            background: lavenderblush;
            border-radius: 25px;
        }
        .product-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .stars { color: #FFD700; font-size: 12px; }
        .price { font-weight: 600; color: #333; margin-left: 8px; }
        .price-small { font-size: 12px; color: #777; }

       
        .product-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
            border-color: #eee;
        }
        .product-card:hover .img-container img {
            transform: scale(1.08); 
        }

        /* --- Navigation Buttons --- */
        .prod-nav-btn {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            border: none;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .prod-nav-btn:hover { background: #007f73; color: white; }
        .prod-prev { left: 5px; }
        .prod-next { right: 5px; }

        
        @media (max-width: 768px) {
            .product-card { min-width: 160px; } 
            .img-container { height: 160px; }
            /* .prod-nav-btn { display: none; }  */
        }



.highlight-title {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  padding: 8px 18px;
  border-radius: 5px;
  /* box-shadow: 3px 3px 0px #d30000; */
}
.section-main-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #007f73;
}
.section-main-heading + p,
.text-muted {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
.about-company {
  background-color: #fff;
}

img.shadow {
  border-radius: 6px;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}



.about-us {
    z-index: 1;
    text-align: center;
    width: 45%;
    float: left;
}

.about-us img {
    width: 100%;
    padding-right: 1.5rem;
}



.about-company {
  --hh-teal: #0f6b5c;
  --hh-amber: #c17a3d;
  --hh-steel: #3d4550;
  --hh-bg-soft: #f4f7f6;
  --hh-ink: #1c211f;
  position: relative;
  background: var(--hh-bg-soft);
}

.about-company__media-col { position: relative; }

.about-company__frame {
  position: relative;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e6e4;
  border-radius: 6px;
  box-shadow: 0 18px 40px -20px rgba(15, 30, 25, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-company__frame.is-visible { opacity: 1; transform: translateY(0); }

.about-company__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  transition: transform 0.6s ease;
}
.about-company__frame:hover .about-company__img { transform: scale(1.03); }

.about-company__rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8dcd9, #9aa19c);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.35);
  z-index: 2;
}
.about-company__rivet--tl { top: 6px; left: 6px; }
.about-company__rivet--tr { top: 6px; right: 6px; }
.about-company__rivet--bl { bottom: 6px; left: 6px; }
.about-company__rivet--br { bottom: 6px; right: 6px; }

.about-company__gauge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px -10px rgba(15,30,25,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.about-company__gauge-svg { width: 46px; height: 46px; }
.about-company__gauge-ring { fill: none; stroke: #e2e6e4; stroke-width: 4; }
.about-company__gauge-ring--fill {
  stroke: var(--hh-amber);
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 1.2s ease 0.3s;
}
.about-company__frame.is-visible .about-company__gauge-ring--fill { stroke-dashoffset: 40; }
.about-company__gauge-needle {
  stroke: var(--hh-steel);
  stroke-width: 2;
  transform-origin: 30px 30px;
  transition: transform 1s ease 0.4s;
}
.about-company__frame.is-visible .about-company__gauge-needle { transform: rotate(230deg); }
.about-company__gauge-hub { fill: var(--hh-steel); }

.about-company__content-col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.about-company__content-col.is-visible { opacity: 1; transform: translateY(0); }

.about-company__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hh-teal);
}
.about-company__eyebrow-icon {
  width: 8px;
  height: 8px;
  background: var(--hh-amber);
  transform: rotate(45deg);
  display: inline-block;
}

.about-company__divider {
  width: 46px;
  height: 3px;
  margin: 10px 0 18px;
  background: linear-gradient(90deg, var(--hh-teal), var(--hh-amber));
  transition: width 0.8s ease 0.3s;
}
.about-company__content-col.is-visible .about-company__divider { width: 86px; }

.about-company__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hh-ink);
  margin-bottom: 16px;
}

.about-company__desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4b524e;
  margin-bottom: 0;
}

.about-company__highlight {
  position: relative;
  margin-top: 28px;
  padding: 24px 24px 24px 64px;
  background: #fff;
  border-left: 4px solid var(--hh-teal);
  box-shadow: 0 12px 30px -18px rgba(15,30,25,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.about-company__highlight.is-visible { opacity: 1; transform: translateY(0); }

.about-company__highlight-icon {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 30px;
  height: 30px;
  color: var(--hh-teal);
}
.about-company__highlight-icon svg { width: 100%; height: 100%; }

.about-company__highlight-text { font-size: 15px; line-height: 1.7; color: #4b524e; }
.about-company__highlight-text p { margin: 0 0 12px; }
.about-company__highlight-text p:last-child { margin-bottom: 0; }
.about-company__highlight-text ul,
.about-company__highlight-text ol { margin: 0 0 14px; padding-left: 20px; }
.about-company__highlight-text li { margin-bottom: 6px; }
.about-company__highlight-text h1,
.about-company__highlight-text h2,
.about-company__highlight-text h3,
.about-company__highlight-text h4,
.about-company__highlight-text h5,
.about-company__highlight-text h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hh-ink);
  margin: 20px 0 10px;
}
.about-company__highlight-text h1:first-child,
.about-company__highlight-text h2:first-child,
.about-company__highlight-text h3:first-child,
.about-company__highlight-text h4:first-child { margin-top: 0; }

@media (max-width: 991px) {
  .about-company__title { font-size: 26px; }
  .about-company__gauge { display: none; }
}







/* --- Section Styling --- */
        .insta-section {
            padding: 60px 0;
            /* background-color: #fff; */
            text-align: center;
        }
        
        .insta-title {
            font-weight: 800;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .insta-subtitle {
            color: #666;
            font-size: 15px;
            /* margin-bottom: 40px; */
        }

        /* --- Slider Wrapper --- */
        .insta-wrapper {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }

        .insta-track {
            display: flex;
            gap: 15px;
            transition: transform 0.5s ease-in-out;
        }

        /* --- Video Card Styling --- */
        .insta-card {
            min-width: 240px; /* Square size */
            height: 240px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 4px;  
        }

        /* The Video Element */
        .insta-card video {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.5s ease;
        }

        /* Overlay (Play Icon on Hover) */
        .insta-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .insta-overlay i {
            color: white;
            font-size: 40px;
        }

        /* --- Hover Effects --- */
        .insta-card:hover video {
            transform: scale(1.1); /* Zoom Effect */
        }
        
        .insta-card:hover .insta-overlay {
            opacity: 1;  
        }

        /* --- Navigation Buttons --- */
        .insta-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .insta-btn:hover { background: white; color: #007f73; }
        .insta-prev { left: 10px; }
        .insta-next { right: 10px; }
        
        .insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover img {
    transform: scale(1.1);
}

        /* Visit Button */
        .visit-btn {
            background-color: black;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 40px;
            display: inline-block;
            transition: opacity 0.3s;
        }
        .visit-btn:hover {
            color: white;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .insta-card {
                min-width: 160px;
                height: 160px;
            }
            .insta-btn { width: 30px; height: 30px; font-size: 12px; }
        }

       
        



  /* ============================ testimonial section ===============================       */


  /* --- Section Styling --- */
        .testimonial-section {
            padding: 60px 0;
            background-color: #efefef;
            text-align: center;
            position: relative;
        }

        /* Header Area */
        .testi-header h2 {
            font-weight: 300;
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        .testi-header .main-stars {
            color: gold;
            font-size: 20px;
            margin-bottom: 5px;
        }
        .testi-header p {
            color: #666;
            font-size: 14px;
        }
        .verified-badge {
            color: #00bfa5;
            margin-left: 5px;
        }

        /* --- Slider Container --- */
        .testi-wrapper {
            overflow: hidden;
            padding: 20px 33px;
            margin: 0 auto;
            max-width: 1200px;  
        }

        .testi-track {
            display: flex;
            
            transition: transform 0.5s ease-in-out;
        }

        /* --- Card Styling --- */
        .testi-card {
            border:1px solid #000;
            margin:5px;
            flex: 0 0 33.333%; 
            max-width: 33.333%;
            padding: 20px 20px;  
            text-align: center;
            box-sizing: border-box;
        }

        .card-stars {
            color: gold;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .card-title {
            font-weight: 700;
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
        }

        .card-review {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
            min-height: 60px; 
        }

        .card-author {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
            display: block;
        }

        .product-thumb {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid #eee;
        }

        /* --- Navigation Arrows --- */
        .nav-controls {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .nav-arrow {
            background: transparent;
            border: none;
            color: #ccc;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .nav-arrow:hover {
            color: #333;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .testi-card {
 
                flex: 0 0 100%;
                max-width: 100%;
            }
            .testi-header h2 { font-size: 24px; }
        }



/* ========================footer section css ================================= */

        :root {
            --primary-teal: #007f73;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f9f9f9;
        }

       


        .footer-cta-banner {
            background-color: var(--primary-teal);
            color: white;
            padding: 30px 0;
        }
        
        .cta-text h5 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }
        .cta-text p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

        .btn-white-outline {
            background-color: white;
            color: var(--primary-teal);
            font-weight: 600;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .btn-white-outline:hover {
            background-color: #e6fcf9;
            transform: translateY(-2px);
        }

        /* --- 2. Main Footer Area --- */
        .main-footer {
            background-color: white;
            padding-top: 50px;
            color: var(--text-dark);
            border-top: 1px solid #eee;
        }

        /* Newsletter Section */
        .newsletter-box {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            border: 1px solid #eee;
        }
        .newsletter-title {
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            font-size: 20px;
        }
        .newsletter-input-group {
            max-width: 500px;
        }
        .form-control:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.2rem rgba(0, 127, 115, 0.25);
        }
        .btn-teal { 
            color: #ff0000;
            border: none;
            font-weight: 700;
        }
        .btn-teal:hover { 
            color: #fff;
        }
        
        .btn-teal:hover i{
            transform: translateX(10px);
            transition: transform 0.4s ease-in-out;
        }

        /* Footer Columns */
        .footer-heading {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 20px;
            text-transform: uppercase; /* As per image style */
            color: #222;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 200px; 
            overflow-y: auto;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-teal);
            padding-left: 5px; /* Small shift effect */
        }
        
        .footer-links::-webkit-scrollbar {
            width: 6px;
        }

        .footer-links::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .footer-links::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        .about-text {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            text-align: justify;
        }

        /* Contact Icons */
        .contact-item {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-light);
        }
        .contact-item i {
            color: var(--primary-teal);
            margin-top: 4px;
        }

        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }
        .social-link {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #eee;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-link:hover {
            background-color: var(--primary-teal);
            color: white;
            transform: rotate(360deg);
        }

        /* --- 3. Copyright Bottom Bar --- */
        .copyright-bar {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #eee;
            font-size: 13px;
            color: #888;
            justify-content:center;
        }
        
        .dev-credit a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .footer-cta-banner { text-align: center; }
            .cta-btn-wrapper { margin-top: 15px; }
            .newsletter-box { text-align: center; }
            .newsletter-input-group { margin: 0 auto; }
        }


/*======================= newslatter css==================== */
.input-wrapper {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.input {
  width: 170px;
  height: 40px;
  outline: none;
  padding-left: 15px;
  font-size: 0.7em;
  background-color: #fafaf7;
  border-radius: 6px;
  border: 1px solid #d0d7e1;
}
.Subscribe-btn {
  height: 40px;
  padding: 0 15px;
  border: none;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  background-color: #292524;
  transition: all 0.3s;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.Subscribe-btn:hover {
  color: white;
}
.Subscribe-btn:hover .arrow {
  margin-right: 0;
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.Subscribe-btn:active {
  transform: scale(0.9);
}




/* float icon  */

@keyframes pulse-zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

  /* Auto animation */
  animation: pulse-zoom 2s infinite ease-in-out;
  overflow: visible;
  position: fixed;
}

/* WhatsApp Wave Effect */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: wave 1.8s infinite ease-out;
  z-index: -1;
}

.joinnow-float {
  position: fixed;
  bottom: 25px;
  left: 20px;

  background-color: #000;     
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;

  border: 3px solid red;     

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

  /* Auto animation */
  animation: pulse-zoom 2s infinite ease-in-out;

  position: fixed;
  overflow: visible;
}

/* Join Us Wave Effect */
.joinnow-float::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0px;
  top: 1px;
  height: 100%;
  border-radius: 50px;
  background: rgba(255, 0, 0, 0.35);
  animation: wave 2s infinite ease-out;
  z-index: -1;
}


@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 15px;
    font-size: 26px;
  }

  .joinnow-float {
    padding: 12px 18px;
    font-size: 16px;
    left: 15px;
  }
}







/* ============================= product details page css ================================= */
:root {
      --hh-navy: #10233B;
      --hh-navy-2: #16324A;
      --hh-steel: #51637A;
      --hh-panel: #EEF0F2;
      --hh-amber: #E8A23A;
      --hh-amber-dark: #B9791E;
      --hh-line: rgba(16, 35, 59, .12);
    }

   

    /* ============================================================
     SECTION SHELL — static, hand-built by dev
     ============================================================ */
    .hh-about-section {
      background-color: var(--hh-navy);
      background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
      background-size: 38px 38px;
      padding: 78px 0 90px;
    }


    .hh-about-panel {
      background: var(--hh-panel);
      border: 1px solid var(--hh-line);
      border-top: 3px solid var(--hh-amber);
      padding: 46px;
    }

    @media (max-width: 767px) {
      .hh-about-panel {
        padding: 30px 22px;
      }
    }

    /* ============================================================
     .hh-about-content — SINGLE PARENT CLASS
     Everything below is a descendant selector off this one class.
     This is the ONLY class that needs to wrap the CKEditor output —
     whatever tags come back from the DB (p, ul/ol/li, table, img,
     strong, a, even a stray h1-h6) are styled automatically.
     ============================================================ */
    .hh-about-content {
      color: var(--hh-navy);
    }

    .hh-about-content::after {
      content: "";
      display: table;
      clear: both;
    }

    /* --- image: floats right, mat-frame with corner rivets --- */
    .hh-about-content img {
      float: right;
      width: 340px;
      max-width: 46%;
      height: auto;
      box-sizing: border-box;
      margin: 4px 0 30px 40px;
      padding: 14px;
      background-color: var(--hh-navy-2);
      border: 1px solid rgba(232, 162, 58, .35);
      background-image:
        radial-gradient(circle, var(--hh-amber) 0 3px, transparent 3.2px),
        radial-gradient(circle, var(--hh-amber) 0 3px, transparent 3.2px),
        radial-gradient(circle, var(--hh-amber) 0 3px, transparent 3.2px),
        radial-gradient(circle, var(--hh-amber) 0 3px, transparent 3.2px);
      background-repeat: no-repeat;
      background-position:
        10px 10px, calc(100% - 10px) 10px,
        10px calc(100% - 10px), calc(100% - 10px) calc(100% - 10px);
      box-shadow: 0 20px 40px -20px rgba(16, 35, 59, .5);
    }

    @media (max-width: 575px) {
      .hh-about-content img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 24px;
      }
    }

    /* --- paragraphs --- */
    .hh-about-content p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--hh-steel);
      margin: 0 0 20px;
    }

     

    .hh-about-content strong {
      color: var(--hh-navy);
      font-weight: 700;
    }

    .hh-about-content a {
      color: var(--hh-amber-dark);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hh-about-content a:hover {
      color: var(--hh-navy);
    }

    /* fallback in case CKEditor's format dropdown ever slips a
     heading tag into the DB content — keeps it visually in line
     with the rest of the copy instead of breaking the layout */
    .hh-about-content h1,
    .hh-about-content h2,
    .hh-about-content h3,
    .hh-about-content h4,
    .hh-about-content h5,
    .hh-about-content h6 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 25px;
      color: var(--hh-navy);
      margin: 6px 0 14px;
    }

    /* --- unordered list: icon markers instead of bullets --- */
    .hh-about-content ul {
      list-style: none;
      margin: 6px 0 28px;
      padding: 0;
      display: grid;
      gap: 11px;
    }

    .hh-about-content ul li {
      position: relative;
      padding-left: 31px;
      line-height: 1.6;
      color: var(--hh-steel);
    }

    .hh-about-content ul li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      width: 19px;
      height: 19px;
      font-size: 11px;
      color: #fff;
      background: var(--hh-amber);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* --- ordered list: numbered chips (rare, but content may need it) --- */
    .hh-about-content ol {
      list-style: none;
      counter-reset: hh-step;
      margin: 6px 0 28px;
      padding: 0;
      display: grid;
      gap: 11px;
    }

    .hh-about-content ol li {
      position: relative;
      counter-increment: hh-step;
      padding-left: 31px;
      line-height: 1.6;
      color: var(--hh-steel);
    }

    .hh-about-content ol li::before {
      content: counter(hh-step);
      position: absolute;
      left: 0;
      top: 1px;
      width: 20px;
      height: 20px;
      font-size: 11px;
      font-weight: 700;
      color: var(--hh-navy);
      background: transparent;
      border: 1.5px solid var(--hh-amber);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* --- table --- */
    .hh-about-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 8px 0 28px;
      display: block;
      overflow-x: auto;
      font-size: 14.5px;
    }

    .hh-about-content table th,
    .hh-about-content table td {
      border: 1px solid var(--hh-line);
      padding: 10px 14px;
      text-align: left;
      white-space: nowrap;
    }

    .hh-about-content table thead th {
      background: var(--hh-navy);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-size: 12.5px;
    }

    .hh-about-content table tbody tr:nth-child(even) {
      background: rgba(16, 35, 59, .04);
    }



/*=========================== Breadcrumb Section =================================*/

.breadcrumb-section {
    /* background-image:url("assets/banner/1597532115.jpg"); */
    width: 100%;
    padding: 60px 20px;
    background:#6c757d;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.breadcrumb-content {
    max-width: 1200px;
    width: 100%;
}

.breadcrumb-section span {
    font-size: 32px;
    color: #0a0a0a;
    margin-bottom: 5px;
    font-weight: 900;
}

.breadcrumb-section p {
    font-size: 16px;
    color: #fff;
}

.breadcrumb-section p a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}



/* =================== Contact From css ========================== */

/* Wrapper */
.contact-wrapper {
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    background: #000000;
}

.contact-grid {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #c8102e;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.contact-cards span {
    font-size: 20px;
    font-weight: 600;
}

/* Right Form Side */
.contact-form-area {
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-area span {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form-area p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-area input,
.contact-form-area textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
    margin: 10px;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus {
    border-color: #007f73;
    box-shadow: 0 0 8px rgba(52,183,247,0.3);
    outline: none;
}

textarea {
    height: 150px;
    resize: none;
}

.select{
    border-radius: 10px;
    margin: 10px;
    background-color: white;
    width:100%;
}

/* Button */
.send-btn {
    margin-top: 10px;
    background: #c8102e;

    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.send-btn:hover {
    background: #016258;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 147, 204, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}





/* ================================sitemap page css ============================= */
.sitemap-section {           
            padding: 60px 0;            
        }

        .sitemap-title {
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

       
        .sitemap-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #008074;
            margin: 10px auto 0;
            border-radius: 2px;
        }

       
        .sitemap-btn {
            display: block;
            text-decoration: none;
            color: #008074;
            font-size: 16px;
            font-weight: 600;
            padding: 15px 20px;
            border: 1px solid #007f73; 
            border-radius: 5px;
            text-align: center;
            position: relative;
            overflow: hidden; 
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.05); 
            margin-bottom: 20px;
        }

       
        .sitemap-btn i {
            margin-right: 8px;
            transition: transform 0.4s ease;
        }

       
        .sitemap-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #008074;
            transition: all 0.4s ease;
            z-index: 0;
            transform: skewX(-20deg);
        }

      
        .sitemap-btn span, 
        .sitemap-btn i {
            position: relative;
            z-index: 1;
        }

       
        .sitemap-btn:hover {
            color: #fff; 
            border-color: white;
            transform: translateY(-3px); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .sitemap-btn:hover::before {
            left: 0; 
            transform: skewX(0deg); 
            width: 150%; 
        }

        .sitemap-btn:hover i {
            transform: scale(1.2); 
        }

       
        .row-gap-custom {
            --bs-gutter-y: 10px;
        }




/* ============================ about Us page css ================================= */

:root {
            --primary-teal: #000;
            --text-dark: #333;
            --text-gray: #666;
            --bg-light: #f9f9f9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

       
        .about-hero-section {
            padding: 80px 0;
        }

        .about-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-img-wrapper img {
            transition: transform 0.5s ease;
            width: 100%;
        }

        .about-img-wrapper:hover img {
            transform: scale(1.05); 
        }

        .section-subtitle {
            color: var(--primary-teal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-weight: 800;
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .product-section .section-title{
            color:#fff;
        }
        
        .product-section p{
            color:#000 !important;
        }
        
        .section-desc {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        
        .about-list {
            list-style: none;
            padding: 0;
        }
        .about-list li {
            margin-bottom: 10px;
            font-weight: 500;
            color: #444;
        }
        .about-list i {
            color: var(--primary-teal);
            margin-right: 10px;
        }

        
        .stats-section {
            background-color: var(--primary-teal);
            padding: 25px 0;
            color: white;
            text-align: center;
        }

        .stat-card {
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px); 
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0.9;
        }

       
        .stat-divider {
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        
        @media (max-width: 767px) {
            .stat-divider { 
                border-right: none; 
                border-bottom: 1px solid rgba(255,255,255,0.2); 
                padding-bottom: 20px; margin-bottom: 20px;
             }
        }

        
        .mv-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .mv-block {
            margin-bottom: 60px; 
        }

        .mv-img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 300px;
        }
        
       
        @media (max-width: 991px) {
            .mv-block { text-align: center; }
            .mv-text-col { margin-bottom: 30px; }
           
        }
        
         .faq-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
 
        .faq-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
 
        /* Left Column - Accordion */
        .faq-accordion {
            flex: 1.5;
        }
 
        .faq-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #000000;
            letter-spacing: -0.5px;
        }
 
        .faq-item {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
 
        .faq-item:hover {
            border-color: #000000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
 
        .faq-header {
            background-color: #ffffff;
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
            border-bottom: 1px solid #e0e0e0;
        }
 
        .faq-header:hover {
            background-color: #f5f5f5;
        }
 
        .faq-item.active .faq-header {
            background-color: #000000;
            color: #ffffff;
            border-bottom: 1px solid #000000;
        }
 
        .faq-question {
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            margin: 0;
            flex: 1;
        }
 
        .faq-item.active .faq-question {
            color: #ffffff;
        }
 
        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 16px;
            font-size: 14px;
            color: #000000;
            transition: transform 0.3s ease;
        }
 
        .faq-item.active .faq-icon {
            color: #ffffff;
            transform: rotate(180deg);
        }
 
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #ffffff;
        }
 
        .faq-item.active .faq-body {
            max-height: 500px;
        }
 
        .faq-answer {
            padding: 18px 20px;
            font-size: 15px;
            line-height: 1.6;
            color: #333333;
        }
 
        /* Right Column - Image */
        .faq-image-col {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .faq-image-wrapper {
            width: 100%;
            height: auto;
            background-color: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #000000;
        }
 
        .faq-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
 
        /* Responsive */
        @media (max-width: 768px) {
            .faq-container {
                flex-direction: column;
                gap: 30px;
            }
 
            .faq-title {
                font-size: 24px;
            }
 
            .faq-question {
                font-size: 14px;
            }
 
            .faq-answer {
                font-size: 14px;
            }
        }
        
        .about-header {
            text-align: left;
            /*margin-bottom: 60px;*/
        }
 
        /* Section Tag/Label */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 10px; 
        }
 
        .section-tag i {
            font-size: 8px;
        }
 
        /* Main Headline */
        .about-headline {
            font-size: 30px;
            font-weight: 700;
            color: #000000;
            margin: 0 ;
            line-height: 1.2;
            letter-spacing: -1px;
        }
  
 
        /* Divider */
        .header-divider {
            width: 60px;
            height: 3px;
            background-color: #000000;
            margin: 10px 0;
            border-radius: 2px;
        }
        
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-collapse {
                display: block !important;
                flex-basis: auto;
            }
        }
        
        
        .hh-brandline-section {
      background: #FBFAF8;
      padding: 80px 0;
    }

    .hh-brandline-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 38px 0;
      border-bottom: 1px solid rgba(16, 35, 59, .10);
    }

    .hh-brandline-row:last-child {
      border-bottom: none;
    }

    /* --- media column --- */
    .hh-brandline-media {
      box-sizing: border-box;
      padding: 16px;
      background-color: #10233B;
      border: 1px solid rgba(232, 162, 58, .35);
      background-image:
        radial-gradient(circle, #E8A23A 0 3px, transparent 3.2px),
        radial-gradient(circle, #E8A23A 0 3px, transparent 3.2px),
        radial-gradient(circle, #E8A23A 0 3px, transparent 3.2px),
        radial-gradient(circle, #E8A23A 0 3px, transparent 3.2px);
      background-repeat: no-repeat;
      background-position:
        10px 10px, calc(100% - 10px) 10px,
        10px calc(100% - 10px), calc(100% - 10px) calc(100% - 10px);
      box-shadow: 0 18px 36px -20px rgba(16, 35, 59, .45);
    }

    .hh-brandline-media img {
      display: block;
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    /* --- content column --- */
    .hh-brandline-info {
      padding: 26px 0 0 0;
    }

    @media (min-width: 992px) {
      .hh-brandline-info {
        padding: 0 0 0 46px;
      }
    }

    .hh-brandline-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #c8102e;
      margin: 0 0 10px;
    }

    .hh-brandline-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 30px;
      line-height: 1.2;
      color: #10233B;
      margin: 0 0 14px;
    }

    .hh-brandline-text {
      font-size: 15.5px;
      line-height: 1.8;
      color: #51637A;
      margin: 0 0 14px;
      max-width: 560px;
    }

    .hh-brandline-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 20px;
    }

    .hh-brandline-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 26px;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    }

    .hh-brandline-btn i {
      font-size: 12px;
    }

    .hh-brandline-btn--fill {
      background: #10233B;
      color: #ffffff;
      border: 1px solid #10233B;
    }

    .hh-brandline-btn--fill:hover {
      background: #E8A23A;
      border-color: #E8A23A;
      color: #10233B;
    }

    .hh-brandline-btn--outline {
      background: transparent;
      color: #c8102e;
      border: 1px solid #c8102e;
    }

    .hh-brandline-btn--outline:hover {
      background: #c8102e;
      color: #ffffff;
    }
    
    
    
    .hh-product-section{ padding:60px 0 80px; background:#ffffff; }

  /* ---------- top: image + side info (mostly static fields) ---------- */
  .hh-product-image{
    border:1px solid #d9d9d9;
    padding:0;
    background:#ffffff;
  }
  .hh-product-image img{
    display:block;
    width:100%;
    height:auto;
  }

  .hh-product-side{ padding-top:4px; }
  @media (min-width: 992px){
    .hh-product-side{ padding-left:20px; }
  }

  .hh-product-title{
    font-weight:700;
    font-size:26px;
    line-height:1.3;
    color:#17325C;
    margin:0 0 18px;
  }

  .hh-product-download{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
    padding:14px 28px;
    background:#C41230;
    color:#ffffff;
    font-size:13.5px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    text-decoration:none;
    border:1px solid #C41230;
    transition:background-color .2s ease;
  }
  .hh-product-download:hover{ background:#9E0E26; color:#ffffff; }

  /* =================================================================
     .hh-product-content — SINGLE PARENT CLASS
     Used in three places on this page (top description, Description
     tab, Technical Specifications tab). Whatever CKEditor saves to
     the DB for any of those fields — p, ul/li, table, strong, a, even
     a stray heading tag — is styled purely by this one class, so the
     same markup renders consistently everywhere it's dropped in.
     ================================================================= */
  .hh-product-content{ color:#4a4a4a; }
  .hh-product-content::after{ content:""; display:table; clear:both; }

  .hh-product-content p{
    font-size:15.5px;
    line-height:1.85;
    margin:0 0 16px;
  }
  .hh-product-content strong{ color:#17325C; font-weight:700; }
  .hh-product-content a{ color:#C41230; text-decoration:underline; }
  .hh-product-content a:hover{ color:#17325C; }

  /* fallback so an accidental heading tag from CKEditor's format
     dropdown doesn't break the type scale of this component */
  .hh-product-content h1,
  .hh-product-content h2,
  .hh-product-content h3,
  .hh-product-content h4,
  .hh-product-content h5,
  .hh-product-content h6{
    font-size:18px;
    font-weight:700;
    color:#17325C;
    margin:4px 0 12px;
  }

  .hh-product-content ul{
    list-style:none;
    margin:4px 0 20px;
    padding:0;
  }
  .hh-product-content ul li{
    position:relative;
    padding-left:22px;
    font-size:15.5px;
    line-height:2;
    color:#4a4a4a;
  }
  .hh-product-content ul li::before{
    content:"\f111";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0; top:9px;
    font-size:6px;
    color:#17325C;
  }

  .hh-product-content ol{
    list-style:none;
    counter-reset:hh-spec-step;
    margin:4px 0 20px;
    padding:0;
  }
  .hh-product-content ol li{
    position:relative;
    counter-increment:hh-spec-step;
    padding-left:26px;
    font-size:15.5px;
    line-height:2;
    color:#4a4a4a;
  }
  .hh-product-content ol li::before{
    content:counter(hh-spec-step) ".";
    position:absolute;
    left:0; top:0;
    font-weight:700;
    color:#C41230;
    font-size:14px;
  }

  .hh-product-content table{
    width:100%;
    border-collapse:collapse;
    margin:6px 0 20px;
    display:block;
    overflow-x:auto;
    font-size:14.5px;
  }
  .hh-product-content table th,
  .hh-product-content table td{
    border:1px solid #e2e2e2;
    padding:12px 16px;
    text-align:center;
    white-space:nowrap;
  }
  .hh-product-content table td:first-child,
  .hh-product-content table th:first-child{
    text-align:left;
  }
  .hh-product-content table thead tr:first-child th{
    background:#17325C;
    color:#ffffff;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.03em;
    border-color:#294a80;
  }
  .hh-product-content table thead tr:nth-child(2) th{
    background:#1F3E70;
    color:#ffffff;
    font-weight:600;
    font-size:13px;
    border-color:#294a80;
  }
  .hh-product-content table tbody tr:nth-child(odd){ background:#F1F1F1; }
  .hh-product-content table tbody tr:nth-child(even){ background:#ffffff; }
  .hh-product-content table tbody td:first-child{ font-weight:600; color:#333; }

  /* ---------- tabs (static shell — dev-built, not CMS content) ---------- */
  .hh-product-tabs{ margin-top:56px; }

  .hh-tab-nav{
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    margin:0;
    padding:0;
    border-bottom:1px solid #e2e2e2;
  }
  .hh-tab-nav .nav-item{ margin:0; }

  .hh-tab-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:none;
    background:#f2f2f2;
    color:#555;
    font-size:14.5px;
    font-weight:600;
    padding:16px 26px;
    cursor:pointer;
  }
  .hh-tab-btn i{ font-size:13px; }
  .hh-tab-btn.active{
    background:#141414;
    color:#ffffff;
  }

  .hh-tab-content{ padding-top:34px; }

  .hh-product-subtitle{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:19px;
    font-weight:700;
    color:#222;
    margin:0 0 18px;
  }
  .hh-product-subtitle i{ color:#17325C; font-size:16px; }
  
  
  
  .ind-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .ind-card__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background-color: #cccccc;
  }
  .ind-card__caption {
    padding: 30px 25px;
    flex: 1 1 auto;
  }
  .ind-card__title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .ind-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
  }
  .ind-card--dark {
    background-color: #000000;
    color: #ffffff;
  }
  .ind-card--red {
    background-color: #d0112b;
    color: #ffffff;
  }
  
  :root{
    --ct-gap: 1.5rem;
    --ct-logo-h: 60px;
    --ct-bg: #ffffff;
    --ct-border: #eaeaea;
  }

  .ct-section{
    padding: 3rem 0;
  }

  .ct-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--ct-logo-h) + 2rem);
    padding: 0 var(--ct-gap);
  }

  .ct-item img{
    /*max-height: var(--ct-logo-h);*/
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    /*opacity: .7;*/
    /*transition: filter .25s ease, opacity .25s ease, transform .25s ease;*/
  }

  .ct-item img:hover{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  /* Owl nav/dots minimal override */
  .ct-carousel .owl-nav button.owl-prev,
  .ct-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ct-bg);
    border: 1px solid var(--ct-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .ct-carousel .owl-nav button.owl-prev{ left: -10px; }
  .ct-carousel .owl-nav button.owl-next{ right: -10px; }

  .ct-carousel .owl-dots{
    text-align: center;
    margin-top: 1rem;
  }

  .ct-carousel .owl-dot span{
    width: 8px;
    height: 8px;
  }
  
  .language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.language-icon {
    font-size: 18px;
}

#google_translate_element select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
}


/* ==========================================================
     JG-GALLERY SECTION
  ========================================================== */
  .jg-gallery-section{
    padding:90px 0;
    background:#f6f6f8;
  }

  .jg-gallery-head{
    text-align:center;
    margin-bottom:56px;
  }

  .jg-gallery-eyebrow{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d9683f;
    font-weight:700;
    margin-bottom:12px;
  }

  .jg-gallery-title{
    font-size:36px;
    font-weight:800;
    color:#181820;
    margin-bottom:14px;
    letter-spacing:-0.5px;
  }

  .jg-gallery-desc{
    font-size:15.5px;
    color:#6b6b76;
    max-width:540px;
    margin:0 auto;
    line-height:1.7;
  }

  /* ---- Grid built with CSS Grid, not Bootstrap columns ----
     This gives exact, reliable gutters and lets us control
     row-span for the taller tiles without any padding hacks. */
  .jg-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    grid-auto-rows:190px;
    gap:22px;
  }

  .jg-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    cursor:pointer;
    background:#e4e4e8;
    grid-row:span 2;
  }

  .jg-gallery-item.jg-tall{
    grid-row:span 3;
  }

  .jg-gallery-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s cubic-bezier(.2,.7,.3,1);
  }

  .jg-gallery-item:hover .jg-gallery-img{
    transform:scale(1.06);
  }

  .jg-gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,15,20,0) 55%, rgba(15,15,20,.82) 100%);
    display:flex;
    align-items:flex-end;
    padding:20px;
    opacity:0;
    transition:opacity .35s ease;
  }

  .jg-gallery-item:hover .jg-gallery-overlay{
    opacity:1;
  }

  .jg-gallery-cap{
    font-size:15px;
    color:#fff;
    font-weight:600;
    margin:0;
    transform:translateY(6px);
    transition:transform .35s ease;
  }

  .jg-gallery-item:hover .jg-gallery-cap{
    transform:translateY(0);
  }

  .jg-gallery-zoom{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(4px);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .3s ease, transform .3s ease;
  }

  .jg-gallery-item:hover .jg-gallery-zoom{
    opacity:1;
    transform:translateY(0);
  }

  /* ==========================================================
     JG-LIGHTBOX
  ========================================================== */
  .jg-lightbox{
    position:fixed;
    inset:0;
    background:rgba(8,8,12,.95);
    z-index:2000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
  }

  .jg-lightbox.jg-open{
    display:flex;
    animation:jgFadeIn .3s ease;
  }

  @keyframes jgFadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
  }

  .jg-lightbox-stage{
    position:relative;
    max-width:920px;
    width:100%;
    text-align:center;
  }

  .jg-lightbox-imgwrap{
    position:relative;
    max-height:78vh;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .jg-lightbox-img{
    max-width:100%;
    max-height:78vh;
    border-radius:10px;
    box-shadow:0 24px 70px rgba(0,0,0,.55);
    animation:jgPop .3s ease;
  }

  @keyframes jgPop{
    from{ opacity:0; transform:scale(.95); }
    to{ opacity:1; transform:scale(1); }
  }

  .jg-lightbox-caption{
    color:#f1f1f4;
    font-size:15px;
    margin-top:20px;
  }

  .jg-lightbox-count{
    color:#8a8a94;
    font-size:12px;
    letter-spacing:1.5px;
    margin-top:5px;
  }

  .jg-lightbox-close,
  .jg-lightbox-prev,
  .jg-lightbox-next{
    position:absolute;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:16px;
    transition:background .25s ease, border-color .25s ease;
  }

  .jg-lightbox-close:hover,
  .jg-lightbox-prev:hover,
  .jg-lightbox-next:hover{
    background:#d9683f;
    border-color:#d9683f;
  }

  .jg-lightbox-close{
    top:-58px;
    right:0;
  }

  .jg-lightbox-prev{
    left:-62px;
    top:50%;
    transform:translateY(-50%);
  }

  .jg-lightbox-next{
    right:-62px;
    top:50%;
    transform:translateY(-50%);
  }

  /* ==========================================================
     RESPONSIVE
  ========================================================== */
  @media (max-width:991px){
    .jg-gallery-section{ padding:70px 0; }
    .jg-gallery-title{ font-size:31px; }
    .jg-gallery-grid{
      grid-template-columns:repeat(2, 1fr);
      grid-auto-rows:170px;
      gap:18px;
    }
  }

  @media (max-width:576px){
    .jg-gallery-section{ padding:54px 0; }
    .jg-gallery-head{ margin-bottom:36px; }
    .jg-gallery-title{ font-size:25px; }
    .jg-gallery-desc{ font-size:14px; }

    .jg-gallery-grid{
      grid-template-columns:1fr;
      grid-auto-rows:220px;
      gap:16px;
    }

    .jg-gallery-item,
    .jg-gallery-item.jg-tall{
      grid-row:span 1;
    }

    .jg-lightbox-prev{ left:6px; }
    .jg-lightbox-next{ right:6px; }
    .jg-lightbox-close{ top:-46px; right:0; width:38px; height:38px; }
    .jg-lightbox-caption{ font-size:13px; margin-top:16px; }
  }