.md-water-section {
    padding: 70px 20px;
    background: #f2f2f2;
}

.md-water-container {
    max-width: 1320px;
    margin: auto;
}

/* HEADER */
.md-water-header {
    text-align: center;
    margin-bottom: 50px;
}

.md-water-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.md-water-header p {
    color: #555;
}

/* GRID */
.md-water-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

/* CARD */
.md-water-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.md-water-item img {
    width: 120px;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* NAME */
.md-water-item h3 {
    font-size: 16px;
    font-weight: 600;
}

.md-water-item span {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    transition: color 0.35s ease;
}

.md-water-item:hover span {
    color: #c9a961;
}

/* 🔥 HOVER EFFECT */
.md-water-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.md-water-item:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* GLOW EFFECT */
.md-water-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(201,169,97,0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.md-water-item:hover::before {
    left: 100%;
}

/* SCROLL ANIMATION */
.md-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.7s;
}

.md-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width:900px){
    .md-water-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px){
    .md-water-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* CLEAN SLIDER ONLY */
.md-clean-slider {
    padding: 61px 34px;
    background: #f2f2f2;
}

.md-clean-card {
    background: #eaeaea;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    width: 106px;
    height: 175px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.md-clean-card img {
    width: 99px;
    height: 99px;
    object-fit: contain;
    margin-bottom: 8px;
}

.md-clean-card p {
    font-size: 14px;    
    font-weight: 600;
}

/* BUTTON */
.md-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 99px;
    transform: translateX(-50%);
    background: #c9a961;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 20px;
    text-decoration: none;
    opacity: 0;
    transition: 0.3s;
}

/* HOVER */
.md-clean-card:hover {
    background: #fff;
    transform: translateY(-5px);
}

.md-clean-card:hover .md-btn {
    bottom: 8px;
    opacity: 1;
}

/* IMPORTANT */
.md-clean-swiper-chemicals .swiper-slide,
.md-clean-swiper-materials .swiper-slide {
    width: auto !important;
}

/* CLEAN SLIDER NAV (UPGRADED LIKE RACK SECTION) */
.md-clean-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    /*margin: 15px 30px;*/
}

/* COMMON STYLE FOR ALL ARROWS */
.md-clean-prev-1,
.md-clean-next-1,
.md-clean-prev-2,
.md-clean-next-2 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #c9a961;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* ICON */
.md-clean-prev-1 i,
.md-clean-next-1 i,
.md-clean-prev-2 i,
.md-clean-next-2 i {
    font-size: 16px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.md-clean-prev-1:hover,
.md-clean-next-1:hover,
.md-clean-prev-2:hover,
.md-clean-next-2:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 15px 40px rgba(201,169,97,0.4);
}

/* CLICK EFFECT */
.md-clean-prev-1:active,
.md-clean-next-1:active,
.md-clean-prev-2:active,
.md-clean-next-2:active {
    transform: scale(0.95);
}

.md-clean-prev-1::after,
.md-clean-next-1::after,
.md-clean-prev-2::after,
.md-clean-next-2::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.md-clean-prev-1:hover::after,
.md-clean-next-1:hover::after,
.md-clean-prev-2:hover::after,
.md-clean-next-2:hover::after {
    opacity: 1;
}

.md-cta {
    position: relative;
    padding: 70px 20px;
    text-align: center;
    background: #f7f7f7;
    margin: 0px 0px;
    overflow: hidden;
}
/*
.md-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
*/
.md-cta-container {
    position: relative;
    z-index: 2;
    color: #fff;
    background: url('../images/banner/1.png') center/cover no-repeat;
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    padding: 50px;
    text-align: left;
}

.md-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.md-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

.md-cta-btn {
    display: inline-block;
    background: #c9a961;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.md-cta-btn:hover {
    background: #000;
}

/* Responsive */
@media(max-width:768px){
    .md-cta h2 {
        font-size: 28px;
    }
}

.md-ladder-section {
    padding: 70px 43px;
    background: #f7f7f7;
}

.md-ladder-header {
    text-align: center;
    margin-bottom: 50px;
}

.md-ladder-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.md-ladder-header p {
    color: #666;
    margin-top: 10px;
}

/* GRID */
.md-ladder-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */
.md-ladder-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.md-ladder-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* TITLE */
.md-ladder-card h3 {
    font-size: 16px;
    font-weight: 600;
}

/* HOVER EFFECT */
.md-ladder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.md-ladder-card:hover img {
    transform: scale(1.1) rotate(3deg);
}

/* GLOW EFFECT */
.md-ladder-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(201,169,97,0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.md-ladder-card:hover::before {
    left: 100%;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .md-ladder-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px){
    .md-ladder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .md-ladder-grid {
        grid-template-columns: 1fr;
    }
}

.md-rack-section {
    padding: 60px 20px;
    background: #f7f7f7;
}

.md-rack-header {
    text-align: center;
    margin-bottom: 20px;
}

.md-rack-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.md-rack-header p {
    color: #666;
    margin-top: 8px;
}

/* NAV */
.md-rack-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 10px 20px;
}

.md-rack-prev,
.md-rack-next {
    width: 40px;
    height: 40px;
    background: #c9a961;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.md-rack-prev:hover,
.md-rack-next:hover {
    background: #000;
}

/* CARD */
.md-rack-card {
    width: 150px;
    height: 190px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.md-rack-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: 0.3s;
}

.md-rack-card p {
    font-size: 13px;
    font-weight: 600;
}

/* HOVER */
.md-rack-card:hover {
    transform: translateY(-6px);
    background: #fff;
}

.md-rack-card:hover img {
    transform: scale(1.1);
}

/* IMPORTANT */
.md-rack-swiper .swiper-slide {
    width: auto !important;
}


.mdwc-section {
    padding: 70px 20px;
    background: #fff;
}

.mdwc-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.mdwc-header {
    text-align: center;
    margin-bottom: 50px;
}

.mdwc-header h2 {
    font-size: 38px;
    font-weight: 700;
}

.mdwc-header p {
    color: #666;
    margin-top: 10px;
}

/* GRID */
.mdwc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.mdwc-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

/* ICON */
.mdwc-card i {
    font-size: 30px;
    color: #c9a961;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* TEXT */
.mdwc-card h3 {
    font-size: 16px;
    font-weight: 600;
}

/* HOVER EFFECT */
.mdwc-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.mdwc-card:hover i {
    transform: scale(1.2);
    color: #1a1a1a;
}

/* GLOW LINE */
.mdwc-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #c9a961;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: 0.4s;
}

.mdwc-card:hover::before {
    transform: scaleX(1);
}

/* SCROLL ANIMATION */
.mdwc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
}

.mdwc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width:992px){
    .mdwc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .mdwc-grid {
        grid-template-columns: 1fr;
    }
}


.mdbrand-section {
    padding: 70px 20px;
    background: #f9f9f9;
    overflow: hidden;
}

.mdbrand-header {
    text-align: center;
    margin-bottom: 40px;
}

.mdbrand-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.mdbrand-header p {
    color: #666;
    margin-top: 8px;
}

/* SLIDER */
.mdbrand-slider {
    width: 100%;
}

/* LOGO CARD */
.mdbrand-slider .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 13px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mdbrand-slider img {
    width: 134px;
    height: 70px;
    object-fit: contain;
    transition: 0.4s;
}

/* HOVER EFFECT */
.mdbrand-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:768px){
    .mdbrand-slider img {
        width: 90px;
        height: 60px;
    }
}
.mdbrand-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.mdfaq-section {
    padding: 70px 20px;
    background: #f5f6fa;
}

.mdfaq-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.mdfaq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ITEM */
.mdfaq-item {
    margin-bottom: 18px;
    border-radius: 50px;
    overflow: hidden;
    transition: 0.4s;
}

/* QUESTION */
.mdfaq-question {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #c9a961;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.mdfaq-question:hover {
    background: #f0f2ff;
    border-color: #1a1a1a;
}

/* ICON */
.mdfaq-icon {
    transition: 0.3s;
}

/* ANSWER */
.mdfaq-answer {
    max-height: 0;
    overflow: hidden;
    text-align: left;
    padding: 0 25px;
    transition: all 0.4s ease;
}

.mdfaq-answer p {
    padding: 15px 0;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE */
.mdfaq-item.active .mdfaq-answer {
    max-height: 200px;
}

.mdfaq-item.active .mdfaq-icon {
    transform: rotate(180deg);
}

/* SCROLL ANIMATION */
.mdfaq-item {
    opacity: 0;
    transform: translateY(40px);
}

.mdfaq-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s;
}

/* MOBILE */
@media(max-width:600px){
    .mdfaq-title {
        font-size: 28px;
    }

    .mdfaq-question {
        font-size: 14px;
        padding: 15px 18px;
    }
}


.mdcta2-section {
    padding: 70px 20px;
    background: #f7f7f7;
}

/* CONTAINER */
.mdcta2-container {
    max-width: 1100px;
    margin: auto;
    background: url('../images/banner/2.png') center/cover no-repeat;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* FLOATING SHAPES */
.mdcta2-container::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #c9a961;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.1;
}

.mdcta2-container::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    opacity: 0.05;
}

/* LEFT */
.mdcta2-left h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}

.mdcta2-left p {
    color: #fff;
    margin-bottom: 25px;
}

/* BUTTONS */
.mdcta2-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.mdcta2-btn {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* PRIMARY */
.mdcta2-btn.primary {
    background: #1a1a1a;
    color: #fff;
}

.mdcta2-btn.primary:hover {
    background: #c9a961;
    transform: translateY(-3px);
}

/* SECONDARY */
.mdcta2-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.mdcta2-btn.secondary:hover {
    background: #fff;
    color: #c9a961;
}

/* RIGHT VISUAL */
.mdcta2-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mdcta2-shape {
    width: 120px;
    height: 120px;
    background: #c9a961;
    /*background: linear-gradient(135deg,#c9a961,#000);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* SCROLL EFFECT */
.mdcta2-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.7s;
}

.mdcta2-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width:768px){
    .mdcta2-container {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }

    .mdcta2-left h2 {
        font-size: 26px;
    }
}


.mdarea-section {
    padding: 70px 20px;
    background: #fff;
}

.mdarea-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.mdarea-header {
    text-align: center;
    margin-bottom: 50px;
}

.mdarea-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.mdarea-header p {
    color: #666;
    margin-top: 8px;
}

/* GRID */
.mdarea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.mdarea-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ICON */
.mdarea-card i {
    font-size: 26px;
    color: #c9a961;
    margin-bottom: 10px;
}

/* TEXT */
.mdarea-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* HOVER EFFECT */
.mdarea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LIGHT GLOW */
.mdarea-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(201,169,97,0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.mdarea-card:hover::before {
    left: 100%;
}

/* SCROLL ANIMATION */
.mdarea-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s;
}

.mdarea-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width:900px){
    .mdarea-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px){
    .mdarea-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* MOBILE WATER SLIDER + ARROWS */
@media (max-width: 768px) {
    .md-water-container {
        position: relative;
    }

    .md-water-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 40px 30px 40px; /* space for arrows */
    }

    .md-water-grid::-webkit-scrollbar {
        display: none;
    }

    .md-water-item {
        min-width: 70%;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    /* ARROWS */
    .md-water-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #c9a961;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .md-water-prev {
        left: 0;
    }

    .md-water-next {
        right: 0;
    }
}

@media (max-width: 768px) {

    .md-ladder-section {
        position: relative;
    }

    .md-ladder-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 15px;
        scroll-behavior: smooth;
        padding: 10px 40px 30px 4px; /* space for arrows */
    }

    .md-ladder-grid::-webkit-scrollbar {
        display: none;
    }

    .md-ladder-card {
        min-width: 80%;
        flex: 0 0 auto;
    }

    /* ARROWS */
    .md-ladder-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #c9a961;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

    .md-ladder-prev { left: 5px; }
    .md-ladder-next { right: 5px; }

}

.md-related-area {
    background: #e6eef1;
    padding: 25px 15px;
    text-align: center;
}

.md-related-area h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* SCROLL CONTAINER */
.md-related-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    justify-content: center;
    flex-wrap: wrap;
}

/* LINKS */
.md-related-scroll a {
    display: inline-block;
    padding: 6px 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

/* SEPARATOR LINE */
.md-related-scroll a::after {
    content: "|";
    margin-left: 10px;
    color: #999;
}

.md-related-scroll a:last-child::after {
    display: none;
}

/* HOVER EFFECT */
.md-related-scroll a:hover {
    color: #c9a961;
    transform: translateY(-2px);
}

/* MOBILE SCROLL FORCE */
@media (max-width: 768px) {
    .md-related-scroll {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
    }
}

.md-related-area {
    background: #f2f2f2;
    padding: 20px 10px;
    text-align: center;
}

.md-related-area h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.md-related-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* 🔥 THIS IS KEY */
    text-align: center;
}

/* TEXT STYLE */
.md-related-scroll span {
    font-size: 15px;
    color: #333;
    padding: 5px 8px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

/* SEPARATOR */
.md-related-scroll span::after {
    content: "|";
    margin-left: 8px;
    color: #555;
}

.md-related-scroll span:last-child::after {
    display: none;
}

/* HOVER */
.md-related-scroll span:hover {
    color: #000;
    text-decoration: underline;
}

.md-about-ultra {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f7f9f8, #eaf3ef);
    position: relative;
    overflow: hidden;
}

/* BACKGROUND SHAPES */
.md-about-ultra::before,
.md-about-ultra::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.md-about-ultra::before {
    width: 300px;
    height: 300px;
    background: #c9a961;
    top: -50px;
    left: -50px;
}

.md-about-ultra::after {
    width: 250px;
    height: 250px;
    background: #2f7d32;
    bottom: -50px;
    right: -50px;
}

/* LAYOUT */
.md-about-ultra-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.md-about-img {
    position: relative;
}

.md-about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.md-about-img:hover img {
    transform: scale(1.05);
}

/* FLOATING BADGE */
.md-about-badge-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.md-about-badge-box h4 {
    margin: 0;
    color: #c9a961;
}

.md-about-badge-box p {
    font-size: 13px;
}

/* TEXT */
.md-tag {
    background: #c9a961;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.md-about-text h2 {
    font-size: 42px;
    margin: 10px 0;
}

.md-about-text h2 span {
    color: #c9a961;
}

.md-about-text h4 {
    color: #666;
    margin-bottom: 15px;
}

.md-about-text p {
    line-height: 1.8;
    color: #444;
}

/* BOXES */
.md-about-boxes {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.md-about-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.md-about-box:hover {
    transform: translateY(-10px);
}

.md-about-box .icon {
    width: 45px;
    height: 45px;
    background: #c9a961;
    /*background: linear-gradient(135deg, #c9a961, #2f7d32);*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* ANIMATION */
.md-reveal-left,
.md-reveal-right {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.md-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .md-about-ultra-container {
        grid-template-columns: 1fr;
    }

    .md-about-text h2 {
        font-size: 28px;
    }

    .md-about-boxes {
        flex-direction: column;
    }
}


.md-values-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff, #f5f9f5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* HEADER */
.md-values-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.md-values-header p {
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.md-values-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.md-value-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    animation: floatCard 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* GRADIENT BORDER */
.md-value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: #c9a961;
    /*background: linear-gradient(135deg, #c9a961, #2f7d32);*/
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* SHINE EFFECT */
.md-value-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* ICON */
.md-value-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: #c9a961;
    /*background: linear-gradient(135deg, #c9a961, #2f7d32);*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s;
}

/* TEXT */
.md-value-card h3 {
    margin-bottom: 10px;
    transition: 0.3s;
}

.md-value-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.md-value-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.2),
        0 0 25px rgba(201,169,97,0.4);
}

/* ICON ANIMATION */
.md-value-card:hover .md-value-icon {
    transform: rotate(10deg) scale(1.2);
}

/* TEXT COLOR */
.md-value-card:hover h3 {
    color: #c9a961;
}

/* SHINE MOVE */
.md-value-card:hover::after {
    left: 120%;
}

/* SCROLL ANIMATION */
.md-reveal,
.md-reveal-top {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.md-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width: 1100px){
    .md-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px){
    .md-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .md-values-grid {
        grid-template-columns: 1fr;
    }
}

.md-banner-left {
    position: relative;
    height: 70vh;
    background: url('../images/banner/1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY */
.md-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* CONTAINER */
.md-banner-container {
    max-width: 1300px;
    margin: auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* CONTENT LEFT */
.md-banner-content {
    max-width: 600px;
    color: #fff;
}

/* TEXT */
.md-banner-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.md-banner-content h1 span {
    color: #c9a961;
}

.md-banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTONS */
.md-banner-buttons {
    display: flex;
    gap: 15px;
}

/* BUTTON STYLE */
.md-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* PRIMARY */
.md-btn.primary {
    background: linear-gradient(135deg, #c9a961, #2f7d32);
    color: #fff;
}

.md-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.5);
}

/* SECONDARY */
.md-btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.md-btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* ANIMATION */
.md-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: 1s ease;
}

.md-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .md-banner-left {
        height: 70vh;
    }

    .md-banner-content h1 {
        font-size: 30px;
    }

    .md-banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== HERO SECTION (NO CONFLICT) ===== */
.afsan-hero {
    position: relative;
    height: 70vh;
    background-image: url('../images/banner/4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Overlay */
.afsan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    transition: all 0.4s ease;
}

/* Content */
.afsan-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: #fff;
}

.afsan-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.afsan-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

/* Button */
.afsan-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effects */
.afsan-hero:hover .afsan-overlay {
    background: rgba(0,0,0,0.65);
}

.afsan-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .afsan-content h1 {
        font-size: 30px;
    }

    .afsan-content p {
        font-size: 16px;
    }
}

/* ===== SECTION ===== */
.afsan-category-section {
    padding: 20px;
}

/* Wrapper 
.afsan-category-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
}
*/
/* Wrapper */
.afsan-category-wrapper {
    display: flex;
    flex-direction: column;   /* 🔥 STACK */
    align-items: center;      /* 🔥 CENTER EVERYTHING */
    gap: 15px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
}
.afsan-category-title {
    text-align: center;
}
.afsan-category-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Title */
.afsan-category-title h2 {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Scroll container */
.afsan-category-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}

/* Hide scrollbar */
.afsan-category-scroll::-webkit-scrollbar {
    display: none;
}

/* Item */
.afsan-cat-item {
    min-width: 166px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Icon */
.afsan-cat-item img {
    width: 40px;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Text */
.afsan-cat-item p {
    font-size: 14px;
    margin: 0;
}

/* Hover */
.afsan-cat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.afsan-cat-item:hover img {
    opacity: 1;
}

/* Active */
.afsan-cat-item.active {
    background: #eaeaea;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .afsan-category-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .afsan-category-scroll {
        width: 100%;
    }
}

.afsan-icon {
    width: 50px;
    height: 50px;
    stroke: #9aa0a6;   /* light gray like your image */
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* Hover effect */
.afsan-cat-item:hover .afsan-icon {
    stroke: #000;
    transform: scale(1.1);
}

/* ===== SECTION ===== */
.afsan-about-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f9f8, #eaf3ef);
}

/* Container */
.afsan-about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
.afsan-about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.afsan-about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.afsan-about-image:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.afsan-about-content {
    flex: 1;
}

.afsan-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.afsan-about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* ===== SCROLL ANIMATION ===== */
.afsan-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.afsan-scroll.afsan-show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .afsan-about-container {
        flex-direction: column;
    }

    .afsan-title {
        font-size: 26px;
    }
}

/* ===== SECTION ===== */
.afsan-why-section {
    padding: 60px 20px;
    text-align: center;
}

/* Title */
.afsan-why-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.afsan-why-title span {
    color: #c9a961;
}

/* Grid */
.afsan-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Item */
.afsan-why-item {
    padding: 20px;
    transition: all 0.3s ease;
}

/* Icon Circle */
.afsan-icon-box {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000;
    transition: all 0.3s ease;
}

/* Active / Hover Highlight */
.afsan-why-item:hover .afsan-icon-box,
.afsan-why-item.active .afsan-icon-box {
    border-color: #c9a961;
    color: #c9a961;
}

/* Text */
.afsan-why-item h3 {
    margin-top: 15px;
    font-size: 18px;
}

.afsan-why-item p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Hover Effect */
.afsan-why-item:hover {
    transform: translateY(-8px);
}

/* ===== SCROLL ANIMATION ===== */
.afsan-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.afsan-scroll.afsan-show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .afsan-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .afsan-why-grid {
        grid-template-columns: 1fr;
    }
}

.sofa-category-section {
    padding: 60px 25px;
    background: #fff;
}

/* GRID */
.sofa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.sofa-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

/* IMAGE */
.sofa-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* TITLE */
.sofa-title {
    padding: 15px;
    font-weight: 600;
    font-size: 15px;
}

/* HOVER EFFECT */
.sofa-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sofa-box:hover img {
    transform: scale(1.08);
}

/* TABLET */
@media (max-width: 992px) {
    .sofa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .sofa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sofa-box img {
        height: 160px;
    }
}

.rack-section {
    padding: 60px 20px;
    background: #fff;
}

/* GRID LAYOUT */
.rack-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Desktop one line */
    gap: 20px;
    justify-content: center;
}

/* TABLET */
@media (max-width: 992px) {
    .rack-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .rack-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {

    .afsan-category-scroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;   /* 🔥 FIX */
        scroll-behavior: smooth;
    }

    .afsan-cat-item {
        flex: 0 0 auto;
        min-width: 140px;
    }
}
/* ===== MOBILE & TABLET SLIDER ===== */
@media (max-width: 768px) {

    .afsan-category-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .afsan-category-scroll {
        display: flex;
        flex-wrap: nowrap;          /* 🔥 force single row */
        overflow-x: auto;           /* 🔥 enable scroll */
        gap: 15px;
        width: 100%;
        scroll-behavior: smooth;
        padding-bottom: 10px;
    }

    /* hide scrollbar */
    .afsan-category-scroll::-webkit-scrollbar {
        display: none;
    }

    .afsan-cat-item {
        flex: 0 0 auto;             /* 🔥 prevent shrinking */
        min-width: 140px;           /* card width */
    }
}

@media (max-width: 768px) {

    .afsan-category-scroll {
        scroll-snap-type: x mandatory;
    }

    .afsan-cat-item {
        scroll-snap-align: start;
    }
}

.rack-row2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 🔥 change 6 → 5 */
    gap: 20px;
}

/* TABLET */
@media (max-width: 992px) {
    .rack-row2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .rack-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* GRID LAYOUT */
.rack-row3 {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Desktop one line */
    gap: 20px;
    justify-content: center;
}
/* TABLET */
@media (max-width: 992px) {
    .rack-row3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .rack-row3 {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* GRID LAYOUT */
.rack-row4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop one line */
    gap: 20px;
    justify-content: center;
}
/* TABLET */
@media (max-width: 992px) {
    .rack-row4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .rack-row4 {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* GRID LAYOUT */
.rack-row5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop one line */
    gap: 20px;
    justify-content: center;
}
/* TABLET */
@media (max-width: 992px) {
    .rack-row5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .rack-row5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SECTION */
.afsan-contact-v5 {
    padding: 80px 20px;
    background: #f9f9f9;
}

.afsan-contact-v5 .afsan-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADING */
.afsan-contact-v5 .afsan-head {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.afsan-contact-v5 .afsan-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.afsan-contact-v5 .afsan-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.afsan-contact-v5 .afsan-icon {
    width: 55px;
    height: 55px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.afsan-contact-v5 .afsan-icon i {
    color: #c9a961;
    font-size: 20px;
}

/* TEXT */
.afsan-contact-v5 .afsan-text p {
    color: #666;
    font-size: 16px;
}

.afsan-text h4 {
    font-size: 20px;
}


/* HOVER */
.afsan-contact-v5 .afsan-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.afsan-contact-v5 .afsan-info-card:hover .afsan-icon {
    background: #c9a961;
}

.afsan-contact-v5 .afsan-info-card:hover .afsan-icon i {
    color: #fff;
}

/* BOTTOM LINE EFFECT */
.afsan-contact-v5 .afsan-info-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background: #c9a961;
    bottom: 0;
    left: 0;
    transition: 0.4s;
}

.afsan-contact-v5 .afsan-info-card:hover::before {
    width: 100%;
}

/* FORM */
.afsan-contact-v5 .afsan-form-box {
    margin-top: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.afsan-contact-v5 .afsan-form-box h3 {
    text-align: center;
    margin-bottom: 25px;
}

.afsan-contact-v5 .afsan-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.afsan-contact-v5 input,
.afsan-contact-v5 textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #eee;
    outline: none;
    font-family: inherit;
}

.afsan-contact-v5 textarea {
    height: 120px;
    margin-bottom: 15px;
}

.afsan-contact-v5 input:focus,
.afsan-contact-v5 textarea:focus {
    border-color: #c9a961;
    box-shadow: 0 0 0 2px rgba(221,44,28,0.1);
}

/* BUTTON */
.afsan-contact-v5 button {
    width: 100%;
    padding: 14px;
    border: none;
    font-size: 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.afsan-contact-v5 button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221,44,28,0.3);
}

@media (max-width: 768px) {

    .afsan-contact-v5 .afsan-info-row {
        grid-template-columns: 1fr;
    }

    .afsan-contact-v5 .afsan-form-row {
        flex-direction: column;
    }

}

/* CENTER ONLY THIS SECTION ITEMS */
.rack-row-4-center {
    justify-content: center;   /* center grid */
}

/* FIX WIDTH SO IT DOESN'T STRETCH */
.rack-row-4-center {
    grid-template-columns: repeat(4, 200px);
}

/* CENTER GRID PERFECTLY */
.rack-row-4-center {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .rack-row-4-center {
        grid-template-columns: repeat(2, 1fr);
    }
}