/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header-tab li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ACTIVE LINK */
.header-tab li a.active {
    color: rgb(142 23 25);
    font-weight: 600;
}


/* HEADER */
.header {
    width: 100%;
    position: relative;
    z-index: 999;
}

/* 🔝 TOP BAR */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    padding-bottom: 0px;
    background: #8e1719db;
}

.header-top p {
    margin-bottom: 0px !important;
}

.header-top p a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 0px !important;
}

.social-icons li a {
    width: 27px;
    height: 27px;
    background: #000000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons li a i {
    font-size: 12px;
}

.social-icons li a:hover {
    background: #fff;
    color: #000000;
}

/* 🔻 BOTTOM NAV */
.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 40px;
    background: #fff;
    transition: 0.3s;
}

/* LOGO */
.header-logo img {
    width: 100%;
    height: 80px;
}

/* MENU */
.header-tab {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
    margin-bottom: 0px;
}

.header-tab li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.header-tab li a:hover {
    color: rgb(142 23 25);
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.modal-dialog {
    margin-top: 100px;
}

/* =========================
   SCROLL EFFECT
========================= */

.header.scrolled .header-top {
    display: none;
}

.header.scrolled .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 768px) {

    .header-top {
        display: none;
    }

    .header-bottom {
        padding: 10px 15px;
    }

    .header-logo img {
        height: 40px;
    }

    .menu-toggle {
        display: block;
    }

    .header-tab {
        position: absolute;
        top: -500px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        gap: 15px;
        transition: 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        align-items: baseline;
    }

    .header-tab.active {
        top: 60px;
    }
}


/* DROPDOWN BASE */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    border: none;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 15px;
    transition: background 0.3s ease;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #000;
    display: block;
    transition: color 0.3s ease;
    line-height: 1;
}

/* HOVER EFFECT */
.dropdown-menu li:hover {
    background: #c18384;
}

.dropdown-menu li:hover a {
    color: #fff;
}


/* ICON */
.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* ✅ ROTATE ON CLICK */
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* ✅ ROTATE ON HOVER (DESKTOP ONLY) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* HOVER (DESKTOP) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ICON */
.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
}

/* ROTATE ICON WHEN OPEN */
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* SHOW ON CLICK */
.dropdown.open .dropdown-menu {
    display: block;
}

/* MOBILE DROPDOWN */
@media (max-width: 768px) {

    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        padding-left: 10px;

        /* ❌ REMOVE animation effects */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}


/* Banner Start */
.banner-section img {
    width: 100%;

    object-fit: contain;
}

/* ARROWS */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000 !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 50%;
}

.owl-nav .owl-prev {
    left: 20px;
}

button.owl-prev,
button.owl-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-nav button:hover {
    background: #88171b !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .banner-section img {
        height: 250px;
        object-fit: cover;
    }

    button.owl-prev,
    button.owl-next {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}

/* Banner End */


/*  About Start  */



button.abt-read {
    border: none;
    padding: 6px 10px;
    border-radius: 30px;
    font-size: 15px;
    background: #8e1719;
}

.btn-dark {
    border: none;
    padding: 6px 10px;
    border-radius: 30px;
    font-size: 15px;
    background: #8e1719;
}

.btn-dark:hover {
    background: #2e643b;
}

button.abt-read a {
    text-decoration: none;
    color: white;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 40px;
}

/* CAROUSEL IMAGE */
.about-carousel img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

/* THUMB IMAGE (OVERLAY) */
.about-thumb {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.about-thumb img {
    width: 120px;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* RIGHT CONTENT */
.about-right-content {
    padding: 20px 30px;
}

.about-right-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-right-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {

    .about-section {
        padding: 30px 15px;
    }

    .about-carousel img {
        height: 250px;
    }

    .about-thumb img {
        width: 80px;
    }

    .about-right-content {
        padding: 20px 10px;
        text-align: center;
    }
}

/*  About End */






/* Established Section Start */
.estab-bgi {
    position: relative;
    background: url('static\images\home\bg-red.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.estab-bgi .col-md-3 {
    border-right: 1px solid #4b703f;
    padding: 80px 0px;
}

/* 🔴 Dark red overlay (IMPORTANT for premium look) */
.estab-bgi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #8e1719db;
    /* adjust color */
    z-index: 1;
}

/* Content upar lana */
.estab-bgi .container-fluid {
    position: relative;
    z-index: 2;
}

/* Each column center */
.estab-bgi .col-md-3 {
    text-align: center;
}

/* Small text */
.estab-bgi p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 0px;
    opacity: 0.9;
    font-weight: 700;
}

/* Big numbers */
.estab-bgi h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

/* sub number (45, 50 etc) */
.estab-bgi h3 sub {
    font-size: 40px;
    bottom: 0;
}

/* span text */
.estab-bgi h3 span {
    font-size: 20px;
    font-weight: 700;
}

/* Optional divider line */
.estab-bgi .col-md-3:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Established Section End */



/* OUR PRODUCT YOUR BRAND Start */


/* SECTION */
.our-product {
    padding: 80px 0;
    text-align: center;
}

.our-product h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.our-product p {
    max-width: 671px;
    margin: 0 auto 50px;
    color: #666;
}

.our-product-card {
    background: #f8f9fa;
    height: 336px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.our-product-card h4 {
    text-align: left;
    margin-bottom: 6px;
    font-size: 17px;
    padding-top: 17px;
    padding-left: 20px;
    font-weight: 700;
}


.img-box {
    flex: 1;
    /* ye space fill karega */
    display: flex;
    justify-content: center;
    align-items: center;
}

.read-more {
    position: relative;
    background: black;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* IMPORTANT */
    /* z-index: 1; */
}

.read-more::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #8e1719;
    z-index: -1;
    transition: height 0.4s ease;
}

.our-product-card:hover .read-more::before {
    height: 100%;
}

.fa-arrow-right-long {
    transition: transform 0.3s ease;
}

/* Hover par move + thoda tilt */
.our-product-card:hover .fa-arrow-right-long {
    transform: translateX(8px) rotate(-50deg);
}


.img-box img {
    object-fit: contain;
    width: 178px;
    height: 228px;
}


/* OUR PRODUCT YOUR BRAND End */




/* private Labelling & Packaging Start */

.bgi-leblling {
    padding: 25px 0;
    color: white;
}

.privatelabelrow {
    align-items: center !important;
}
/* 
.label-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.label-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 180px;
}


.label-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.label-item.big {
    height: 200px;
}

.label-item.small {
    height: 120px;
}

.bigss-label {
    height: 210px;
}

.label-item.card {
    min-height: 180px;
}


.label-item.card {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.hover-wrapper {
    position: relative;
    height: 100%;
}


.hover-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.img-default {
    opacity: 1;
    z-index: 1;
}

.img-hover {
    opacity: 0;
    z-index: 2;
}

.hover-wrapper:hover .img-default {
    opacity: 0;
    transform: scale(1.1);
}

.hover-wrapper:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.privatelabelrow {
    align-items: center !important;
} */


/* private Labelling & Packaging End */


/* What We Do Section Start */

.whatwedoimgone,
.whatwedoimgtwo {
    border-radius: 5px;
    height: 450px;
    object-fit: cover;
}


/* What We Do Section End */


/* Why partner with DP SQUARE Start */


.whypartner {
    color: #fff;
    font-size: 32px;
}

.whypartner {
    background: #8e1719db;
    padding: 50px;
    text-align: center;
}

.ourclientshead,
.gallery h2,
.review-heading h2 {
    font-weight: 600;
    text-align: center;
    color: #8d1819;
}

.whatwedo h2 {
    font-weight: 600;
    color: #8d1819;
    font-size: 25px;
}

.ourclientspara {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}

.whyparnercard {
    border: 1px solid #560709;
    border-radius: 10px;
    padding: 20px;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 296px;
}

.whyparnercard i {
    font-size: 16px;
    border: 2px solid #9e3839;
    border-radius: 50%;
    margin-bottom: 10px;
    width: 35px;
    height: 35px;
    padding: 6px;
    color: #8e171b;
}

.whyparnercard p {
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.811);
}

.whyparnercard h5 {
    color: rgba(0, 0, 0, 0.826);
    font-weight: 600;
    font-size: 16px;
}

.whyparnercard p {
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.811);
    font-size: 15px;
}

.homelogocarausel .owl-item img {
    height: 100px !important;
    object-fit: contain;
    cursor: pointer;
}


.homelogocarausel .owl-nav .owl-prev {
    left: -20px;
}

.homelogocarausel .owl-nav .owl-next {
    right: -20px;
}

i.fa-solid.fa-chevron-right,
i.fa-solid.fa-chevron-left {
    font-size: 12px;
}

/* Why partner with DP SQUARE End */



/* Review Start */


.review-card {
    background: #a43d3e1c;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    cursor: pointer;
    min-height: 200px;
}

.review-card:hover {
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.stars {
    color: #f5a623;
    font-size: 14px;
}

.review-text {
    margin-top: 15px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}


/* Review End */




/* footer start */

.footer {
    background: #8e1719db;
    color: #fff;
    padding: 50px 20px 20px;
    position: relative;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.footer h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    display: block;
    margin-top: 6px;
}

.menu-box {
    list-style: none;
    padding: 0;
}

.menu-box li {
    margin-bottom: 8px;
}

.menu-box li a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.menu-box li a:hover {
    color: #ffd6d6;
    padding-left: 5px;
}

/* Newsletter */
.newsletter-message {
    font-size: 14px;
    margin-bottom: 10px;
    color: #f3f3f3;
}

.input-box {
    display: flex;
    background: #9e3839;
    border-radius: 30px;
    overflow: hidden;
}

.email-input {
    border: none;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.send-btn {
    background: #5c0d0f;
    border: none;
    padding: 0 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #3f0809;
}

/* Divider line */
.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0 15px;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ddd;
}



.menu-box li a {
    position: relative;
}

.menu-box li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

.menu-box li a:hover::after {
    width: 100%;
}


/* footer End */



/* phone view start */


@media (max-width:768px) {
    .about-section {
        padding: 0px 15px;
    }

    .img-box img {
        width: 85%;
    }

    .whypartner {
        padding: 2px;
    }

    .whyparnercard {
        margin-bottom: 10px;
        min-height: auto
    }

    h2.whypartnerhead {
        padding-top: 20px;
    }

    .gallery.mt-2.p-5.mb-4 {
        padding: 0px !important;
    }

    .footer {
        padding: 50px 2px 20px;
    }

    .homelogocarausel .owl-nav .owl-prev {
        left: 20px;
    }

    .homelogocarausel .owl-nav .owl-next {
        right: 20px;
    }

    .estab-bgi h3,
    .estab-bgi h3 sub {
        font-size: 30px;
    }
}

@media (max-width:500px) {
    .phonereverse {
        flex-direction: column-reverse !important;
    }

    .estab-bgi .col-md-3 {
        padding: 20px 0px;
    }

    .our-product {
        padding: 30px 0px;
    }

    .about-thumb {
        display: none;
    }

    .about-right-content p {
        text-align: justify;
    }

}



/* phone view end */