  /* Fix for mobile scrolling - WITHOUT breaking content */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  
}



/* Prevent scrolling ONLY while preloader is active */
body.-loading {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

/* When preloader is active - prevent ANY scrolling */
.-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

/* After preloader hides - restore normal scrolling */
body.preloader-hidden {
    overflow: auto !important;
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
}
    
    body.preloader-hidden header,
    body.preloader-hidden #noticeBoard,
    body.preloader-hidden footer,
    body.preloader-hidden section,
    body.preloader-hidden .content,
    body.preloader-hidden .nav-main,
    body.preloader-hidden .home-video,
    body.preloader-hidden .stats-grid,
    body.preloader-hidden .cat-main,
    body.preloader-hidden .about-main,
    body.preloader-hidden .manufacture-section,
    body.preloader-hidden .why-choose-section,
    body.preloader-hidden .raw-main,
    body.preloader-hidden .main-serv,
    body.preloader-hidden .spr-all,
    body.preloader-hidden .faq-section {
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* iPad / Tablet View Fix */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.logo-link {
                position: relative;
                right: 0px;
                left:40px;
                display: inline-block;
              }

    
}
            
              /* Desktop */
              .logo-link {
                position: relative;
                right: 30px;
                display: inline-block;
              }

              /* Tablet */
              @media (max-width: 991px) {
                .logo-link {
                  right: 40px;
                }
              }


              /* Mobile - No margin from right */
              @media (max-width: 767px) {
                .logo-link {
                  position: relative;
                  right: 0;
                  left: 5%;
                }
              }

              /* Small mobile */
              @media (max-width: 480px) {
                .logo-link img {
                  max-width: 130px;
                  height: auto;
                }
              }

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}
/* Reset list */
          .main-links ul {
            display: flex;
            align-items: center;
            padding: 0;
            margin: 0;
            list-style: none;
          }

          /* Push cart to far right */
          .main-links ul .cart-icon {
            margin-left: auto;
          }

          /* Cart circle */
          .cart-icon {
            width: 48px;
            height: 48px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            cursor: pointer;
            transform: translateY(-3px);
            transition: all 0.3s ease;
          }

          /* Make link fill full circle */
          .cart-icon a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border: 2px solid black;
          }

          #carto {
            position: relative;
            right: 8px;
          }

          /* Icon styling */
          .cart-icon i {
            font-size: 18px;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            /* Fix visual imbalance */
            transform: translateY(1px);
          }

          /* Hover effect */
          .cart-icon:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
          }

          /* Optional: better spacing on small screens */
          @media (max-width: 576px) {
            .cart-icon {
              width: 32px;
              height: 32px;
              border-radius: 50%;
              background: black;
              border: none;
              outline: none;
            }

            .cart-icon a {
              border: none;
              text-decoration: none;
              background: none;
            }

            .cart-icon i {
              font-size: 16px;
              position: relative;
              left: 1px;
              right: 0.5px;
              color: white;
              background: none;
            }
          }

/* Mobile screens (max-width 768px) */
@media (max-width: 768px) {
  .img-fluid {
    position: relative;
    left: 0;
    right:20px;
  }
}
    /* ---------- COMPLETE CSS SEWING MACHINE ANIMATION STYLES ---------- */
    .-preloader-container {
        text-align: center;
        max-width: 750px;
        width: 90%;
        padding: 20px;
        box-sizing: border-box;
    }

    .stitching-machine-area {
        border-radius: 24px;
        padding: 20px 20px 30px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        margin-bottom: 0px;
        position: relative;
        background: transparent;
    }
    
    /* Track for moving machine */
    .moving-machine-track {
        position: relative;
        height: 180px;
        margin-bottom: 0px;
        overflow: visible;
    }
    
    /* Machine that slides left to right */
    .moving-machine {
        position: absolute;
        left: 0%;
        animation: moveMachine 5s ease-in-out forwards;
        z-index: 10;
    }
    
    @keyframes moveMachine {
        0% { left: -5%; }
        10% { left: 0%; }
        100% { left: 88%; }
    }
    
    /* CSS Sewing Machine */
    .machine {
        position: relative;
        width: 140px;
        height: 130px;
        transform: translateX(-50%);
        /*background:white;*/
    }
    
    /* Machine Base */
    .machine-base {
        position: absolute;
        bottom: 10px;
        left: 10%;
        width: 80%;
        height: 15px;
        background:#A9A7A7;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    /* Machine Body */
    .machine-body {
        position: absolute;
        bottom: 20px;
        left: 25%;
        width: 55%;
        height: 55px;
        background: #A9A7A7;
        border-radius: 15px 15px 8px 8px;
        border-bottom: 2px solid #555;
    }
    
    /* Machine Arm (the curved top part) */
    .machine-arm {
        position: absolute;
        bottom: 65px;
        left: 45%;
        width: 40%;
        height: 40px;
        background: #A9A7A7;
        border-radius: 20px 20px 0 0;
        transform: skewX(-5deg);
    }
    
    /* Machine Head Piece */
    .machine-head-piece {
        position: absolute;
        bottom: 35px;
        left: 78%;
        width: 12%;
        height: 35px;
        background: #A9A7A7;
        border-radius: 5px;
    }
    
    /* Needle Holder */
    .needle-holder {
        position: absolute;
        bottom: 15px;
        left: 81%;
        width: 6%;
        height: 25px;
        background: ##A9A7A7;
        border-radius: 2px;
    }
    
    /* Big Wheel */
    .machine-wheel {
        position: absolute;
        bottom: 15px;
        right: 5%;
        width: 22px;
        height: 22px;
        background: #444;
        border-radius: 50%;
        border: 2px solid #666;
        animation: spinWheel 0.8s linear infinite;
    }
    
    .machine-wheel::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 6px;
        height: 6px;
        background: #888;
        border-radius: 50%;
    }
    
    /* Small Wheel */
    .machine-wheel-small {
        position: absolute;
        bottom: 35px;
        right: 12%;
        width: 12px;
        height: 12px;
        background: #444;
        border-radius: 50%;
        border: 1px solid #666;
        animation: spinWheel 0.6s linear infinite;
    }
    
    @keyframes spinWheel {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Thread Spool on top */
    .thread-spool {
        position: absolute;
        top: 5px;
        left: 30%;
        width: 16px;
        height: 16px;
        background: #555;
        border-radius: 3px;
        box-shadow: 0 0 0 2px #444;
    }
    
    .thread-line {
        position: absolute;
        top: 20px;
        left: 38%;
        width: 1px;
        height: 30px;
        background: #fff;
        opacity: 0.5;
    }
    
    /* Needle */
  .needle {
    position: absolute;
    bottom: 0;
    top:150px;
    left: 80%;
    transform: translateX(-50%);
    width: 3px;
    height: 83px;
    background: linear-gradient(to bottom, #e0e0e0 0%, #c0c0c0 70%, #888888 100%);
    border-radius: 1px;
    animation: needleTouchFabric 0.4s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 30% 100%);
}

.needle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -1px;
    width: 2px;
    height: 10px;
    background: #999;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
    
    /* Thread going to needle */
    .needle-thread {
        position: absolute;
        top: -35px;
        left: 83%;
        transform: translateX(-50%);
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, #fff, #fff 40%, transparent);
        opacity: 0.7;
        animation: threadFlow 0.4s ease-in-out infinite;
        z-index: 15;
    }
    
    @keyframes needleTouchFabric {
        0%, 100% { 
            transform: translateX(-50%) translateY(0); 
            height: 35px;
        }
        50% { 
            transform: translateX(-50%) translateY(28px); 
            height: 28px;
        }
    }
    
    @keyframes threadFlow {
        0%, 100% { height: 50px; opacity: 0.5; top: -35px; }
        50% { height: 65px; opacity: 1; top: -45px; }
    }
    
    /* Fabric Track */
    .stitch-track {
        position: relative;
        background: linear-gradient(145deg, #1a1a1a, #121212);
        border-radius: 16px;
        border: 1px solid #2a2a2a;
        padding: 20px 15px;
        margin-top: -10px;
        min-height: 100px;
    }
    
    .fabric-surface {
        height: 60px;
        background: repeating-linear-gradient(90deg, #222, #222 2px, #282828 2px, #282828 10px);
        border-radius: 8px;
        border: 1px solid #3a3a3a;
        position: relative;
    }
    
    /* Stitch line */
    .stitch-line {
        position: absolute;
        top: 50%;
        left: 15px;
        width: 0%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px);
        transform: translateY(-50%);
        animation: drawStitch 5s linear forwards;
        z-index: 5;
    }
    
    @keyframes drawStitch {
        0% { width: 0%; opacity: 0; }
        5% { opacity: 1; }
        100% { width: calc(100% - 30px); opacity: 1; }
    }
    
    /* Stitch points */
    .stitch-points-container {
        position: absolute;
        top: 50%;
        left: 15px;
        right: 15px;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        z-index: 4;
    }
    
    .stitch-point {
        width: 4px;
        height: 4px;
        background: #fff;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
    }
    
    /* 30 stitch points */
    .sp1 { animation: stitchAppear 5s forwards; animation-delay: 0.15s; }
    .sp2 { animation: stitchAppear 5s forwards; animation-delay: 0.3s; }
    .sp3 { animation: stitchAppear 5s forwards; animation-delay: 0.45s; }
    .sp4 { animation: stitchAppear 5s forwards; animation-delay: 0.6s; }
    .sp5 { animation: stitchAppear 5s forwards; animation-delay: 0.75s; }
    .sp6 { animation: stitchAppear 5s forwards; animation-delay: 0.9s; }
    .sp7 { animation: stitchAppear 5s forwards; animation-delay: 1.05s; }
    .sp8 { animation: stitchAppear 5s forwards; animation-delay: 1.2s; }
    .sp9 { animation: stitchAppear 5s forwards; animation-delay: 1.35s; }
    .sp10 { animation: stitchAppear 5s forwards; animation-delay: 1.5s; }
    .sp11 { animation: stitchAppear 5s forwards; animation-delay: 1.65s; }
    .sp12 { animation: stitchAppear 5s forwards; animation-delay: 1.8s; }
    .sp13 { animation: stitchAppear 5s forwards; animation-delay: 1.95s; }
    .sp14 { animation: stitchAppear 5s forwards; animation-delay: 2.1s; }
    .sp15 { animation: stitchAppear 5s forwards; animation-delay: 2.25s; }
    .sp16 { animation: stitchAppear 5s forwards; animation-delay: 2.4s; }
    .sp17 { animation: stitchAppear 5s forwards; animation-delay: 2.55s; }
    .sp18 { animation: stitchAppear 5s forwards; animation-delay: 2.7s; }
    .sp19 { animation: stitchAppear 5s forwards; animation-delay: 2.85s; }
    .sp20 { animation: stitchAppear 5s forwards; animation-delay: 3.0s; }
    .sp21 { animation: stitchAppear 5s forwards; animation-delay: 3.15s; }
    .sp22 { animation: stitchAppear 5s forwards; animation-delay: 3.3s; }
    .sp23 { animation: stitchAppear 5s forwards; animation-delay: 3.45s; }
    .sp24 { animation: stitchAppear 5s forwards; animation-delay: 3.6s; }
    .sp25 { animation: stitchAppear 5s forwards; animation-delay: 3.75s; }
    .sp26 { animation: stitchAppear 5s forwards; animation-delay: 3.9s; }
    .sp27 { animation: stitchAppear 5s forwards; animation-delay: 4.05s; }
    .sp28 { animation: stitchAppear 5s forwards; animation-delay: 4.2s; }
    .sp29 { animation: stitchAppear 5s forwards; animation-delay: 4.35s; }
    .sp30 { animation: stitchAppear 5s forwards; animation-delay: 4.5s; }
    
    @keyframes stitchAppear {
        0% { opacity: 0; transform: scale(0); }
        30% { opacity: 1; transform: scale(1.3); background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.8); }
        100% { opacity: 1; transform: scale(1); background: #fff; }
    }
    
    /* Icons */
    .stitch-icon {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    }
    
    .stitch-icon .icon-circle {
        width: 55px;
        height: 55px;
        background: #1a1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffffff;
        box-shadow: 0 0 15px rgba(255,255,255,0.3);
    }
    
    .stitch-icon i {
        font-size: 26px;
        color: #ffffff;
    }
    
    .icon-label {
        position: absolute;
        top: 62px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
        font-weight: 600;
        color: #fff;
        background: rgba(0,0,0,0.85);
        padding: 4px 12px;
        border-radius: 20px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
    
    .stitch-icon-1 { left: 18%; top: 50%; }
    .stitch-icon-2 { left: 50%; top: 50%; }
    .stitch-icon-3 { left: 82%; top: 50%; }
    
    .stitch-icon.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .stitch-icon.show .icon-circle {
        animation: iconPop 0.5s ease-out;
    }
    
    @keyframes iconPop {
        0% { transform: scale(0); opacity: 0; border-color: #fff; }
        50% { transform: scale(1.2); border-color: #ffcc00; box-shadow: 0 0 25px rgba(255,204,0,0.5); }
        100% { transform: scale(1); opacity: 1; border-color: #fff; }
    }
    
    /* Logo wrapper */
    .stitched-logo-wrapper {
        margin-top: 20px;
        display: inline-block;
        opacity: 0;
        visibility: hidden;
    }
    
    .stitched-logo-wrapper.reveal {
        animation: logoReveal 0.6s ease-out forwards;
    }
    
    @keyframes logoReveal {
        0% { opacity: 0; transform: scale(0.7); visibility: hidden; }
        100% { opacity: 1; transform: scale(1); visibility: visible; }
    }
    
    .stitched-logo {
        max-width: 240px;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 4px 15px rgba(255,255,255,0.15));
    }
    
    .stitch-underline {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px);
        transition: width 0.6s ease-out 0.2s;
    }
    
    .stitched-logo-wrapper.reveal .stitch-underline {
        width: 100%;
    }
    
    .logo-text {
        font-size: 11px;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.6);
        margin-top: 15px;
        text-transform: uppercase;
        font-weight: 500;
        opacity: 0;
        transition: opacity 0.4s ease 0.3s;
    }
    
    .stitched-logo-wrapper.reveal .logo-text {
        opacity: 1;
    }
    
    /* Responsive */
    @media (max-width: 560px) {
        .stitch-icon .icon-circle { width: 45px; height: 45px; }
        .stitch-icon i { font-size: 20px; }
        .icon-label { font-size: 9px; top: 52px; padding: 3px 8px; }
        .stitched-logo { max-width: 180px; }
        .machine { transform: translateX(-50%) scale(0.8); }
        .moving-machine-track { height: 150px; }
    }
    
    @media (max-width: 480px) {
        .stitch-icon-1 { left: 12%; }
        .stitch-icon-2 { left: 50%; }
        .stitch-icon-3 { left: 88%; }
        .stitch-icon .icon-circle { width: 38px; height: 38px; }
        .stitch-icon i { font-size: 16px; }
        .icon-label { font-size: 8px; top: 45px; padding: 2px 6px; }
        .stitched-logo { max-width: 150px; }
        .logo-text { font-size: 9px; letter-spacing: 1.5px; }
        .machine { transform: translateX(-50%) scale(0.7); }
        .moving-machine-track { height: 130px; }
    }
    @media only screen and (max-width: 768px) {
  #customHeading {
    top: 20px !important;
    font-size: 18px !important;
  }
}

html,body{
        /*overflow:hidden;*/
        height:100%;
        width:100%;
    }
    


    /* Hover Effects for Cards */
    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    }
    
    
    
    .stat-card:hover div[style*="background: #1a1a2e"] {
        background:  !important;
        width: 70px;
    }
    
    .stat-card:hover i {
        transform: scale(1.1);
        color:  !important;
        transition: all 0.3s ease;
    }
    
    .stat-card i {
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    /* Responsive Design - 2x2 Grid on Mobile */
    @media (max-width: 992px) {
        .stats-grid {
            gap: 20px !important;
        }
        
        .stat-card {
            padding: 25px 20px !important;
        }
        
        .stat-card i {
            font-size: 45px !important;
        }
        
        .stat-number {
            font-size: 40px !important;
        }
        
        .stat-card div[style*="font-size: 16px"] {
            font-size: 14px !important;
        }
    }
    
    @media (max-width: 768px) {
        /* 2x2 Grid on Mobile */
        .stats-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 15px !important;
        }
        
        .stat-card {
            padding: 20px 15px !important;
        }
        
        .stat-card i {
            font-size: 38px !important;
            margin-bottom: 12px !important;
        }
        
        .stat-number {
            font-size: 32px !important;
            margin-bottom: 8px !important;
        }
        
        .stat-card div[style*="font-size: 16px"] {
            font-size: 12px !important;
            letter-spacing: 1px !important;
        }
        
        .stat-card div[style*="width: 50px"] {
            width: 40px !important;
            margin-top: 12px !important;
        }
    }
    
    @media (max-width: 480px) {
        .stats-grid {
            gap: 12px !important;
        }
        
        .stat-card {
            padding: 15px 10px !important;
        }
        
        .stat-card i {
            font-size: 32px !important;
            margin-bottom: 10px !important;
        }
        
        .stat-number {
            font-size: 28px !important;
        }
        
        .stat-card div[style*="font-size: 16px"] {
            font-size: 10px !important;
            letter-spacing: 0.5px !important;
        }
        
        .stat-card div[style*="width: 50px"] {
            width: 30px !important;
        }
    }
    /* Reset & Base */
    .cat-main {
        width: 100%;
        background: white;
        padding: 0;
        margin: 0;
        display: block !important;
        visibility: visible !important;
    }

    .container-fluid {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    /* Desktop: 5 Column Grid - Full Width */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        margin: 0;
        width: 100%;
        background: white;
    }

    .category-card {
        position: relative;
        overflow: hidden;
        width: 100%;
        background: white;
    }

    /* Category Images - Using Flexbox approach for reliability */
    .cat-images {
        position: relative;
        width: 100%;
        height: 500px; /* Fallback height */
        min-height: 300px;
        overflow: hidden;
        cursor: pointer;
        background: white;
        display: block;
    }

    .cat-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .cat-images:hover img {
        transform: scale(1.08);
    }

    /* Text Overlay - LEFT ALIGNED */
    .cat-text {
        position: absolute;
        bottom: 80px;
        left: 0px;
        right: auto;
        text-align: left;
        z-index: 1;
        width: auto;
        padding: 15px 25px;
        pointer-events: none;
    }

    .cat-text h6 {
        font-size: 24px;
        font-weight: 800;
        color: white;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.3;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Hover Button Container */
    .hover-button {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 25px 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        text-align: center;
        transform: translateY(100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 2;
    }

    .cat-images:hover .hover-button {
        transform: translateY(0);
        opacity: 1;
    }

    /* Button Styles - Black & White Scheme */
    .order-now-btn {
        display: inline-block;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
        font-family: inherit;
    }

    /* Dark Button */
    .order-now-btn-dark {
        background: #000000;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .order-now-btn-dark:hover {
        background: #ffffff;
        color: #000000;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border-color: #000000;
    }

    /* Light Button */
    .order-now-btn-light {
        background: #ffffff;
        color: #000000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .order-now-btn-light:hover {
        background: #000000;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    /* ======================================== */
    /* RESPONSIVE DESIGN */
    /* ======================================== */

    /* Large Desktop */
    @media (max-width: 1400px) {
        .cat-images {
            height: 450px;
        }
        
        .cat-text h6 {
            font-size: 22px;
        }
    }

    /* Desktop Small - FIX FOR LAPTOPS */
    @media (max-width: 1200px) {
        .cat-images {
            height: 420px;
            min-height: 350px;
        }
        
        .cat-text {
            bottom: 60px;
            left: 25px;
            padding: 12px 20px;
        }
        
        .cat-text h6 {
            font-size: 20px;
        }
        
        .order-now-btn {
            padding: 10px 25px;
            font-size: 13px;
        }
    }

    /* Tablet: 2x2 + 1 Grid */
    @media (max-width: 992px) {
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }
        
        .cat-images {
            height: 380px;
            min-height: 300px;
        }
        
        .cat-text {
            bottom: 50px;
            left: 20px;
            padding: 10px 18px;
        }
        
        .cat-text h6 {
            font-size: 20px;
        }
        
        .order-now-btn {
            padding: 10px 25px;
            font-size: 13px;
        }
    }

    /* Mobile: 2x2 Grid + 5th Card Centered */
    @media (max-width: 768px) {
        .cat-main {
            background: white;
        }
        
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }
        
        /* Make the 5th card span full width and center */
        .category-card-center {
            grid-column: span 2;
            display: flex;
            justify-content: center;
        }
        
        .category-card-center .cat-images {
            max-width: 100%;
            margin: 0 auto;
            width: 100%;
        }
        
        .cat-images {
            height: 320px;
            min-height: 250px;
        }
        
        .cat-text {
            bottom: 40px;
            left: 15px;
            padding: 8px 15px;
        }
        
        .cat-text h6 {
            font-size: 18px;
            letter-spacing: 1px;
        }
        
        .hover-button {
            padding: 15px;
        }
        
        .order-now-btn {
            padding: 8px 20px;
            font-size: 11px;
        }
    }

    /* Small Mobile */
    @media (max-width: 576px) {
        .cat-images {
            height: 280px;
            min-height: 200px;
        }
        
        .cat-text {
            bottom: 30px;
            left: 12px;
            padding: 6px 12px;
        }
        
        .cat-text h6 {
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .hover-button {
            padding: 12px;
        }
        
        .order-now-btn {
            padding: 6px 15px;
            font-size: 10px;
        }
    }

    /* Extra Small Devices */
    @media (max-width: 480px) {
        .cat-images {
            height: 240px;
            min-height: 180px;
        }
        
        .cat-text {
            bottom: 25px;
            left: 10px;
            padding: 5px 10px;
        }
        
        .cat-text h6 {
            font-size: 12px;
            letter-spacing: 0.3px;
        }
        
        .order-now-btn {
            padding: 5px 12px;
            font-size: 9px;
        }
    }

    /* Hover Pop-up Effect for All Image Boxes */
.position-relative {
    overflow: hidden;
}

.box-1, .box-3, .box-4, .box-5, 
.box-6, .box-7, .box-9, .box-10 {
    position: relative;
}

.box-1 img, .box-3 img, .box-4 img, .box-5 img,
.box-6 img, .box-7 img, .box-9 img, .box-10 img {
    transition: transform 0.6s ease;
}

.box-1:hover img, .box-3:hover img, .box-4:hover img, 
.box-5:hover img, .box-6:hover img, .box-7:hover img,
.box-9:hover img, .box-10:hover img {
    transform: scale(1.08);
}

/* Bottom Pop-up */
.popup-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.box-1:hover .popup-bottom,
.box-3:hover .popup-bottom,
.box-4:hover .popup-bottom,
.box-5:hover .popup-bottom,
.box-6:hover .popup-bottom,
.box-7:hover .popup-bottom,
.box-9:hover .popup-bottom,
.box-10:hover .popup-bottom {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-bottom h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.popup-bottom p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Optional subtle overlay */
.box-1::before, .box-3::before, .box-4::before, .box-5::before,
.box-6::before, .box-7::before, .box-9::before, .box-10::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.box-1:hover::before, .box-3:hover::before, .box-4:hover::before,
.box-5:hover::before, .box-6:hover::before, .box-7:hover::before,
.box-9:hover::before, .box-10:hover::before {
    opacity: 1;
}
/* Section Styles - Black & White Theme */
    .manufacture-section {
        width: 100%;
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        padding: 80px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .manufacture-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Header Styles */
    .manufacture-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .manufacture-header h2 {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a2e;
        margin: 0 0 15px 0;
    }

    .manufacture-header p {
        font-size: 15px;
        color: #666;
        margin: 0;
        text-align: left;
    }

    .header-underline {
        width: 60px;
        height: 4px;
        background: #1a1a2e;
        margin: 20px auto 0;
        border-radius: 2px;
    }

    /* Grid Layout */
    .manufacture-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Card Styles - White Card, Black Elements */
    .manufacture-card {
        background: white;
        border-radius: 20px;
        padding: 35px 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }

    .manufacture-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    /* Card Icon - Black Background */
    .card-icon {
        width: 70px;
        height: 70px;
        background: #1a1a2e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .manufacture-card:hover .card-icon {
        transform: scale(1.05);
    }

    .card-icon i {
        font-size: 32px;
        color: white;
        text-align:left;
    }

    /* Card Heading - Black */
    .manufacture-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    /* Card Paragraph - Dark Grey */
    .manufacture-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin: 0 0 20px 0;
    }

    /* Card Footer Tags - Black & White */
    .card-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .card-tag {
        display: inline-block;
        background: #f0f0f0;
        color: #1a1a2e;
        font-size: 12px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .manufacture-card:hover .card-tag {
        background: #1a1a2e;
        color: white;
    }

    /* Responsive Design */
    
    /* Tablet Landscape */
    @media (max-width: 1199px) {
        .manufacture-grid {
            gap: 25px;
        }
        
        .manufacture-card h3 {
            font-size: 20px;
        }
    }

    /* Tablet Portrait - 2x2 Grid */
    @media (max-width: 991px) {
        .manufacture-section {
            padding: 60px 20px;
        }
        
        .manufacture-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .manufacture-header h2 {
            font-size: 36px;
        }
        
        .manufacture-card {
            padding: 30px 25px;
        }
    }

    /* Mobile - 1 card per line (1x4 Grid) */
    @media (max-width: 767px) {
        .manufacture-section {
            padding: 50px 15px;
        }
        
        .manufacture-header {
            margin-bottom: 40px;
        }
        
        .manufacture-header h2 {
            font-size: 32px;
        }
        
        .manufacture-header p {
            font-size: 16px;
            
        }
        
        /* 1 card per line */
        .manufacture-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .manufacture-card {
            padding: 25px 20px;
        }
        
        .manufacture-card h3 {
            font-size: 20px;
        }
        
        /* Reduced paragraph font size on mobile */
        .manufacture-card p {
            font-size: 13px;
            line-height: 1.5;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
        }
        
        .card-icon i {
            font-size: 28px;
        }
        
        .card-tag {
            font-size: 11px;
            padding: 5px 12px;
        }
    }

    /* Small Mobile - 1 card per line with smaller paragraph */
    @media (max-width: 575px) {
        .manufacture-section {
            padding: 40px 12px;
        }
        
        .manufacture-header h2 {
            font-size: 28px;
        }
        
        .manufacture-header p {
            font-size: 14px;
        }
        
        .header-underline {
            width: 60px;
            height: 3px;
        }
        
        .manufacture-grid {
            gap: 20px;
        }
        
        .manufacture-card {
            padding: 20px 18px;
            border-radius: 15px;
        }
        
        .manufacture-card h3 {
            font-size: 18px;
        }
        
        /* Even smaller paragraph font */
        .manufacture-card p {
            font-size: 11px;
            line-height: 1.5;
        }
        
        .card-icon {
            width: 55px;
            height: 55px;
            margin-bottom: 15px;
        }
        
        .card-icon i {
            font-size: 24px;
        }
        
        .card-tag {
            font-size: 10px;
            padding: 4px 10px;
        }
    }

    /* Extra Small */
    @media (max-width: 400px) {
        .manufacture-card h3 {
            font-size: 16px;
        }
        
        .manufacture-card p {
            font-size: 10px;
        }
        
        .card-tag {
            font-size: 9px;
            padding: 3px 8px;
        }
    }
     /* Section Styles */
    .why-choose-section {
        width: 100%;
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        padding: 80px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .why-choose-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Header Styles */
    .why-choose-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .why-choose-header h2 {
        font-weight: 800;
        color: #1a1a2e;
        margin: 0 0 20px 0;
    }

    .header-underline {
        width: 80px;
        height: 4px;
        background: #1a1a2e;
        margin: 0 auto;
        border-radius: 2px;
    }

    /* Grid Layout - 3 columns */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Card Styles - ALL CONTENT LEFT ALIGNED */
    .feature-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        text-align: left;  /* CHANGED: Left align all content */
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    /* Card Icon - Left aligned */
    .feature-icon {
        width: 80px;
        height: 80px;
        background: #1a1a2e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 25px 0;  /* CHANGED: margin-right auto removed, left aligned */
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.05);
    }

    .feature-icon i {
        font-size: 36px;
        color: white;
    }

    /* Card Heading - Left aligned */
    .feature-card h3 {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 20px 0;
        line-height: 1.3;
        text-align: left;  /* CHANGED: Left aligned */
    }

    /* Card Paragraph - Left aligned */
    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin: 0 0 25px 0;
        text-align: left;  /* Already left aligned */
    }

    /* Feature Footer Tags - Left aligned */
    .feature-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;  /* CHANGED: Left aligned instead of center */
        margin-top: 20px;
    }

    .feature-tag {
        display: inline-block;
        background: #f0f0f0;
        color: #1a1a2e;
        font-size: 12px;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-tag {
        background: #1a1a2e;
        color: white;
    }

    /* Responsive Design - PRESERVED */
    
    /* Tablet Landscape */
    @media (max-width: 1024px) {
        .features-grid {
            gap: 25px;
        }
        
        .feature-card {
            padding: 35px 25px;
        }
        
        .feature-card h3 {
            font-size: 22px;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
        }
        
        .feature-icon i {
            font-size: 32px;
        }
    }

    /* Tablet Portrait - 2 columns */
    @media (max-width: 768px) {
        .why-choose-section {
            padding: 60px 20px;
        }
        
        .why-choose-header h2 {
            font-size: 36px;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .feature-card {
            padding: 30px 25px;
        }
        
        .feature-card h3 {
            font-size: 20px;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
        }
        
        .feature-icon i {
            font-size: 32px;
        }
    }

    /* Mobile - Single column */
    @media (max-width: 576px) {
        .why-choose-section {
            padding: 50px 15px;
        }
        
        .why-choose-header {
            margin-bottom: 40px;
        }
        
        .why-choose-header h2 {
            font-size: 28px;
        }
        
        .header-underline {
            width: 60px;
            height: 3px;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .feature-card {
            padding: 25px 20px;
            border-radius: 15px;
        }
        
        .feature-card h3 {
            font-size: 20px;
        }
        
        .feature-card p {
            font-size: 14px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
        }
        
        .feature-icon i {
            font-size: 28px;
        }
        
        .feature-tag {
            font-size: 11px;
            padding: 4px 12px;
        }
    }

    /* Small Mobile */
    @media (max-width: 380px) {
        .why-choose-section {
            padding: 40px 12px;
        }
        
        .why-choose-header h2 {
            font-size: 24px;
        }
        
        .feature-card h3 {
            font-size: 18px;
        }
        
        .feature-card p {
            font-size: 13px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
        }
        
        .feature-icon i {
            font-size: 24px;
        }
        
        .feature-tag {
            font-size: 10px;
            padding: 3px 10px;
        }
    }
    /* iPad / Tablet View Fix */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .material-sec{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
    }

    .material-sec > div{
        width: 100% !important;
        max-width: 100%;
    }

    .material-sec img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Full width text sections */
    .box-2,
    .box-8{
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* Hide scrollbar */
    #testimonialTrack::-webkit-scrollbar {
        display: none;
    }
    
    /* Hover effect on cards */
    .testimonial-card:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    }
    
    /* Active dot style */
    .dot.active {
        opacity: 1 !important;
        transform: scale(1.3);
        background: #black !important;
    }
    
    
    
    /* Responsive */
    @media (max-width: 1024px) {
        .testimonial-card {
            flex: 0 0 calc(50% - 15px) !important;
        }
        
        #prevBtn, #nextBtn {
            width: 45px !important;
            height: 45px !important;
            font-size: 24px !important;
        }
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 calc(100% - 0px) !important;
        }
        
        #prevBtn, #nextBtn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
        }
        
        [style*="padding: 0 60px"] {
            padding: 0 20px !important;
        }
        
        .dot {
            width: 8px !important;
            height: 8px !important;
        }
    }
    /* FAQ Section Styles */
    .faq-section {
        width: 100%;
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        padding: 80px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Header Styles */
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-header h2 {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a2e;
        margin: 0 0 15px 0;
    }

    .faq-header p {
        font-size: 18px;
        color: #666;
        margin: 0;
    }

    .header-underline {
        width: 80px;
        height: 4px;
        background: #1a1a2e;
        margin: 20px auto 0;
        border-radius: 2px;
    }

    /* FAQ Grid - 2 columns on desktop */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* FAQ Item Styles */
    .faq-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        height: fit-content;
    }

    .faq-item:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* FAQ Question Styles */
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 24px;
        cursor: pointer;
        background: white;
        transition: background 0.3s ease;
        gap: 15px;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question h3 {
        font-size: 17px;
        font-weight: 600;
        color: #1a1a2e;
        line-height: 1.4;
        flex: 1;
    }

    .faq-icon {
        font-size: 18px;
        color: #1a1a2e;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    /* Active/Open State */
    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-item.active .faq-question {
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
    }

    /* FAQ Answer Styles */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        background: white;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        transition: max-height 0.5s ease-in;
    }

    .faq-answer p {
        padding: 0 24px 24px 24px;
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        margin: 0;
    }

    /* Responsive Design */
    
    /* Desktop Small */
    @media (max-width: 1024px) {
        .faq-section {
            padding: 60px 20px;
        }
        
        .faq-header h2 {
            font-size: 36px;
        }
        
        .faq-grid {
            gap: 20px;
        }
        
        .faq-question {
            padding: 18px 20px;
        }
        
        .faq-question span {
            font-size: 16px;
        }
        
        .faq-answer p {
            padding: 0 20px 20px 20px;
            font-size: 14px;
        }
    }

    /* Tablet */
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 15px;
        }
        
        .faq-header h2 {
            font-size: 32px;
        }
        
        .faq-header p {
            font-size: 16px;
        }
        
        .faq-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .faq-question {
            padding: 16px 18px;
        }
        
        .faq-question span {
            font-size: 15px;
        }
        
        .faq-answer p {
            padding: 0 18px 18px 18px;
            font-size: 14px;
        }
    }

    /* Mobile - 1 column */
    @media (max-width: 576px) {
        .faq-section {
            padding: 40px 12px;
        }
        
        .faq-header {
            margin-bottom: 30px;
        }
        
        .faq-header h2 {
            font-size: 28px;
        }
        
        .faq-header p {
            font-size: 14px;
        }
        
        .header-underline {
            width: 60px;
            height: 3px;
            margin-top: 15px;
        }
        
        /* Single column on mobile */
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        
        .faq-question {
            padding: 16px 16px;
        }
        
        .faq-question span {
            font-size: 14px;
        }
        
        .faq-icon {
            font-size: 14px;
        }
        
        .faq-answer p {
            padding: 0 16px 16px 16px;
            font-size: 13px;
            line-height: 1.6;
        }
    }

    /* Small Mobile */
    @media (max-width: 380px) {
        .faq-question {
            padding: 14px 12px;
        }
        
        .faq-question span {
            font-size: 13px;
        }
        
        .faq-icon {
            font-size: 12px;
        }
        
        .faq-answer p {
            font-size: 12px;
            padding: 0 12px 14px 12px;
        }
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        section > div:first-child h2 { font-size: 32px;}
        section > div:first-child p {font-size: 16px;}
        .info-cards > div { min-width: 100%;}
        iframe {height: 450px !important;}}
    /* Tablet view */
    @media (min-width: 769px) and (max-width: 1024px) {
        iframe {height: 550px !important;}}
        .sp-imag-3 {display: flex;justify-content: center;align-items: center;    margin-top: 20px;flex-wrap: wrap;}
.sp-imag-3 .spr-main {display: inline-block;  text-align: center;  margin: 10px;}
.spr-11 {width:90px;height:90px;border-radius:50%;background:transparent;margin:0 auto 12px auto;display:flex;  align-items: center;  justify-content: center;}
.spr-11 i {font-size: 48px;color: black;}
.sp-imag-3 .spr-hidden {display: none;}
.sp-imag-3 .clk-pop {cursor: pointer;}
/* Fix for popup content overflow */
.spr-hidden.clk-pop ul {max-height: 80vh;overflow-y: auto;display: block;padding: 15px;}
.spr-hidden.clk-pop ul img {max-width: 100%;height: auto;max-height: 250px;object-fit: contain;margin-bottom: 10px;}
#hiqu{width:500px;height:500px;}


 .client-images{
           text-align: center;
            border: 1px #ccc solid;
            height: 100%;
            padding: 10px;
            border-radius: 5px;
            transition:all 0.3s;
        }
        .client-
        .pb-img{}
        .client-images .pb-img img{}
        .client-images .pb-img h4{
            font-family: Outfit, sans-serif;
            font-size:1.0rem !important;
            color:#000;
        }
        .client-images:hover{
            border: 1px #000 solid;
        }

        nav.page-breadcrumb {
            position: absolute;
            bottom:10%;
            left: 0;
            right: 0;
            background:none;
            padding:0;
        }
        .ab-main{margin-top:0px !important;}
        .site-header.style9 {
                border-bottom: 0px;
            }

            img.kl-iconbox__icon {
                filter: invert(1);
                -webkit-filter: invert(1);
            }

            a.actions-addtocart.product_type_simple {
                display: none;
            }

            svg.svg-moreIcon {
                display: none;
            }

            button.ctc-analytics.s1_btn.ctc_s_1 {
                width: 100%;
                background-color: #5DC080;
                color: white;
                border: none;
                padding: 6px;
            }

            button.ctc-analytics.s1_btn.ctc_s_1:hover {
                background-color: black;
            }

            a.lumise-button.lumise-list-button {
                display: none;
            }

            div.kw-details.clearfix {
                padding-bottom: 20px;
            }

            h3.m_title.m_title_ext.text-custom.ff-alternative.spp-title.spp-el-title {
                color: black;
                font-weight: 700;
                font-size: 35px;
                margin-top: 50px;
            }

            div.row.gutter-sm {
                margin-left: -60px;
                margin-right: -60px;
            }

            h1.page-title.kl-blog-page-title {
                background-color: #58B874;
                color: white;
                font-size: 40px;
                padding-left: 30px;
                text-align: center;
                padding-top: 10px;
            }

            span.envira-title.envira-gallery-captioned-text {
                background-color: #58B874;
                text-align: center;
                color: white;
                font-weight: 600;
                padding-top: 5px;
            }