.about-section {
    padding: 100px 40px;
    background: var(--cream);
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

    .about-image img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(61,31,0,0.15);
    }

/* Heading */
.section-label {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: var(--brown-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Text */
.about-text {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 25px;
}

/* Boxes */
.about-box {
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 25px rgba(139,105,20,0.1);
}

    .about-box h3 {
        color: var(--brown-dark);
        margin-bottom: 8px;
    }

    .about-box p {
        color: var(--text-light);
    }

/* Benefits */
.benefits-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mini-item {
    background: var(--gold-pale);
    color: var(--brown-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

    .mini-item:hover {
        background: var(--gold-light);
        color: var(--white);
    }


.about-list {
    list-style: none;
    padding-left: 0;
}
/* Responsive */
@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
    }
}




/* ourteam */

.team-section {
    padding: 100px 40px;
    background: var(--cream-dark);
    text-align: center;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-mid);
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(61,31,0,0.1);
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(139,105,20,0.2);
    }

/* IMAGE */
.team-image {
    overflow: hidden;
}

    .team-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top;
        transition: 0.4s;
    }

.team-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.team-content {
    padding: 20px;
}

.team-name {
    font-size: 20px;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.team-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ACCENT */
.accent {
    color: var(--gold);
}

/* MOBILE */
@media (max-width: 768px) {
    .team-section {
        padding: 70px 20px;
    }

    .team-image img {
        height: 260px;
    }
}

/* -------------- */


/* ingradiant  */


.benefits-section {
    padding: 50px 20px;
    background: var(--cream);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* CARD */
.benefit-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(61,31,0,0.1);
    transition: 0.4s;
    text-align: left;
    padding: 15px;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(139,105,20,0.2);
    }

    /* IMAGE */
    .benefit-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

/* CONTENT */
.benefit-content {
    padding: 18px;
}

    .benefit-content h3 {
        color: var(--brown-dark);
        margin-bottom: 8px;
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.5;
    }

/* MOBILE */
@media (max-width: 768px) {
    .benefits-section {
        padding: 70px 20px;
    }
}

/* /////////////////////// */



/* slider css  */



.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDER */
.carousel {
    position: relative;
}

.carousel-slide {
    display: none;
}

    .carousel-slide.active {
        display: block;
    }

    /* IMAGE */
    .carousel-slide img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

/* DOTS */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

    .carousel-dots .dot {
        width: 12px;
        height: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

        .carousel-dots .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

/* MOBILE */
@media (max-width:768px) {
    .carousel-slide img {
        height: 250px;
    }
}


.slidersection {
    padding: 0;
}




/* ------------------------------/ */





.product-section {
    padding: 100px 40px;
    background: var(--cream);
}

.product-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-content {
    flex: 1;
}

.product-image {
    flex: 1;
    text-align: center;
}

    .product-image img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* TITLE */
.product-title {
    font-size: 36px;
    color: var(--brown-dark);
}

/* RATING */
.product-rating {
    color: var(--gold);
    margin: 10px 0;
}

/* DESC */
.product-desc {
    color: var(--text-mid);
    margin-bottom: 15px;
}

/* SOCIAL */
.product-social {
    margin: 15px 0;
}

    .product-social a {
        margin-left: 10px;
        text-decoration: none;
    }

/* BOX */
.product-box {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

    .product-box h3 {
        margin-bottom: 8px;
        color: var(--brown-dark);
    }

    .product-box ul {
        padding-left: 18px;
    }

    .product-box li {
        margin-bottom: 6px;
        color: var(--text-mid);
    }

/* MOBILE */
@media(max-width:768px) {
    .product-inner {
        flex-direction: column;
    }
}



.product-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
}

/* BUY BUTTON */
.buy-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

    .buy-btn:hover {
        transform: scale(1.05);
    }

/* ICON LIST */
.icon-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .icon-list li {
        background: var(--gold-pale);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
    }

/* RATING */
.product-rating {
    color: var(--gold);
    margin: 8px 0;
    font-size: 14px;
}

    .product-rating span {
        color: var(--text-light);
    }













/* css mobile view slider */



/* SECTION */
.slidersection {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDER */
.carousel {
    position: relative;
}

.carousel-slide {
    display: none;
}

    .carousel-slide.active {
        display: block;
    }

    /* IMAGE */
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* DOTS */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        cursor: pointer;
    }

        .carousel-dots .dot.active {
            background: var(--gold);
        }

/* ========================= */
/* ðŸ“± MOBILE FIX START */
/* ========================= */

@media (max-width: 768px) {

    .carousel-slide img {
        height: 100%; /* mobile height fix */
        object-fit: cover; /* crop nicely */
    }

    .carousel-dots {
        bottom: 10px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .carousel-slide img {
        height: 100%;
    }
}

/* --------------------------- */





/* ===== DROPDOWN MENU ===== */

.nav-item {
    position: relative;
}

    .nav-item .dropdown {
        position: absolute;
        top: 120%;
        left: 0;
        background: #111;
        border: 1px solid rgba(201,168,76,0.2);
        border-radius: 8px;
        padding: 10px 0;
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: rgba(250,246,239,0.7);
    text-decoration: none;
    transition: all 0.25s ease;
}

    .dropdown a:hover {
        background: rgba(201,168,76,0.1);
        color: var(--gold-light);
    }

/* Arrow (optional) */
.nav-item > a::after {
    content: " â–¼";
    font-size: 0.6rem;
    margin-left: 5px;
}




/* ===== NATURAL SOURCES SECTION ===== */

.sources-section {
    padding: 5rem 2rem;
    background: var(--cream-dark);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.source-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139,105,20,0.15);
    transition: all 0.3s ease;
    padding: 10px;
}

    .source-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

.source-content {
    padding: 1.2rem;
}

    .source-content h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--brown-dark);
    }

    .source-content p {
        font-size: 0.85rem;
        color: var(--text-mid);
        margin-top: 0.5rem;
        line-height: 1.6;
    }

/* ===== HOVER EFFECT ===== */
.source-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sources-grid {
        grid-template-columns: 1fr;
    }
}





/* ===== WORK SECTION ===== */

.work-section {
    padding: 5rem 2rem;
    background: var(--cream-dark);
}

.work-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.work-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 1rem;
}

.work-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.work-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-item .icon {
    font-size: 18px;
}

.work-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 0.4rem;
    line-height: 1.6;
}

/* IMAGE */
.work-image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .work-inner {
        grid-template-columns: 1fr;
    }
}


/* ===== USAGE SECTION ===== */

.usage-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.usage-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* GRID CARDS */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

/* CARD */
.usage-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.3rem;
    border: 1px solid rgba(139,105,20,0.15);
    transition: 0.3s;
}

    .usage-card .icon {
        font-size: 22px;
        margin-bottom: 0.5rem;
    }

    .usage-card h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brown-dark);
    }

    .usage-card p {
        font-size: 0.82rem;
        color: var(--text-mid);
        margin-top: 0.4rem;
        line-height: 1.6;
    }

    /* HOVER */
    .usage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

/* IMAGE */
.usage-image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .usage-inner {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }
}





/* ===== BUSINESS CARDS ===== */

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.business-card {
    background: #fff;
    padding: 1.6rem;
    border-radius: 12px;
    border: 1px solid rgba(139,105,20,0.15);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: left;
}

/* ICON */
.biz-icon {
    width: 45px;
    height: 45px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

/* TEXT */
.business-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.business-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}

/* HOVER */
.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* OPTIONAL DIFFERENT STYLE FOR SECOND CARD */
.business-card:nth-child(2) {
    border-color: rgba(201,168,76,0.4);
}





/* ===== PROBLEMS SECTION ===== */

.problems-section {
    padding: 5rem 2rem;
    background: var(--cream-dark);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139,105,20,0.15);
    transition: 0.3s ease;
}

    /* IMAGE */
    .problem-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

/* CONTENT */
.problem-content {
    padding: 1.2rem;
    text-align: center;
}

    .problem-content h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brown-dark);
    }

    .problem-content p {
        font-size: 0.82rem;
        color: var(--text-mid);
        margin-top: 0.5rem;
        line-height: 1.5;
    }

/* HOVER */
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== SOLUTION SECTION ===== */

.solution-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.solution-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 1rem;
}

/* POINTS */
.solution-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.solution-card {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(139,105,20,0.15);
    transition: 0.3s ease;
}

    /* ICON */
    .solution-card .icon {
        font-size: 22px;
        width: 45px;
        height: 45px;
        background: rgba(201,168,76,0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* TEXT */
    .solution-card h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brown-dark);
    }

    .solution-card p {
        font-size: 0.82rem;
        color: var(--text-mid);
        margin-top: 0.3rem;
        line-height: 1.5;
    }

    /* HOVER */
    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

/* IMAGE */
.solution-image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .solution-inner {
        grid-template-columns: 1fr;
    }
}





/* ===== FIXED GRID BENEFITS ===== */

.green-benefits-section {
    padding: 5rem 2rem;
    background: var(--cream-dark);
    text-align: center;
}

/* GRID FIX */
.green-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* one line desktop */
    gap: 1.5rem;
    margin-top: 3rem;
}

/* CARD */
.green-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.4rem;
    border: 1px solid rgba(139,105,20,0.15);
    text-align: left;
    transition: 0.3s;
}

    /* ICON */
    .green-card .icon {
        width: 45px;
        height: 45px;
        background: rgba(201,168,76,0.12);
        border: 1px solid rgba(201,168,76,0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 1rem;
    }

    /* TEXT */
    .green-card h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brown-dark);
    }

    .green-card p {
        font-size: 0.82rem;
        color: var(--text-mid);
        line-height: 1.5;
    }

    /* HOVER */
    .green-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .green-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .green-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .green-benefits-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== PRICKLY PEAR SECTION ===== */

.prickly-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.prickly-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* TEXT */
.prickly-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 1rem;
}

/* BENEFITS */
.benefit-title {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 700;
}

.benefit-list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .benefit-list li {
        font-size: 0.9rem;
        color: var(--text-mid);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        /* ICON BULLET */
        .benefit-list li::before {
            content: "âœ”";
            color: var(--gold);
            font-weight: bold;
        }

/* IMAGE */
.prickly-image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .prickly-inner {
        grid-template-columns: 1fr;
    }
}






/* ===== CHALLENGE SECTION ===== */

.challenges-section {
    padding: 5rem 2rem;
    background: var(--cream-dark);
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* CARDS */
.challenge-card,
.solution-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(139,105,20,0.15);
    transition: 0.3s ease;
}

/* ICON */
.challenge-icon {
    font-size: 28px;
    margin-bottom: 1rem;
}

/* TEXT */
.challenge-card h3,
.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.8rem;
}

.challenge-card p,
.solution-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* HOVER */
.challenge-card:hover,
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 500px) {
    .challenge-card,
    .solution-card {
        padding: 1.5rem;
    }

        .challenge-card h3,
        .solution-card h3 {
            font-size: 1rem;
        }

        .challenge-card p,
        .solution-card p {
            font-size: 0.85rem;
        }
}




/* ===== FORCE MOBILE FIX ===== */

@media (max-width: 768px) {

    .hero-ingredient-inner {
        display: grid !important;
        grid-template-columns: 1fr !important; /* single column */
        gap: 1.5rem !important;
    }

        /* IMAGE TOP */
        .hero-ingredient-inner > div:first-child {
            order: 1;
        }

        /* CONTENT BOTTOM */
        .hero-ingredient-inner > div:last-child {
            order: 2;
        }

        /* TEXT ADJUST */
        .hero-ingredient-inner h3 {
            font-size: 1.2rem !important;
        }

        .hero-ingredient-inner p {
            font-size: 0.85rem !important;
            line-height: 1.6 !important;
        }

    .hero-ingredient-section {
        padding: 3rem 1.2rem !important;
    }
}



/* Mobile View */
@media (max-width: 768px) {

    .product-inner {
        display: flex;
        flex-direction: column;
    }

    .product-image {
        order: -1; /* image upar */
    }

    .product-content {
        order: 1; /* content niche */
    }
}








/* Layout Settings */
.dv9-section {
    padding: 60px 20px;
    background-color: var(--cream);
    font-family: 'Jost', sans-serif;
}

/* ===== POLICY / LEGAL PAGE CONTENT ===== */
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(139,105,20,0.12);
    box-shadow: 0 6px 20px rgba(61,31,0,0.06);
}

    .contact-info h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--brown-dark);
        margin-bottom: 1rem;
    }

    .contact-info h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--gold);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-info p {
        font-size: 0.92rem;
        color: var(--text-mid);
        line-height: 1.85;
        margin-bottom: 0.8rem;
    }

    .contact-info hr {
        border: none;
        border-top: 1px solid rgba(139,105,20,0.15);
        margin: 1rem 0 1.5rem;
    }

    .contact-info strong {
        color: var(--brown-dark);
    }

    .contact-info ul, .contact-info ol {
        padding-left: 1.4rem;
        color: var(--text-mid);
        font-size: 0.92rem;
        line-height: 1.85;
    }

    .contact-info li {
        margin-bottom: 0.4rem;
    }

/* Policy page hero banner */
.policy-hero {
    background: var(--cream-dark);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(139,105,20,0.12);
}

.dv9-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Desktop par Left to Right */
    gap: 40px;
    align-items: center;
}





/* Cards Design */
.business-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .business-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .business-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .business-business-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}






/* Cards Design */
.business-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.business-card {
    flex: 1;
    min-width: 150px;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(139,105,20,0.15);
}

    .business-card img {
        width: 100%;
        border-radius: 5px;
    }

    .business-card h3 {
        font-size: 16px;
        margin: 10px 0 5px;
        color: var(--brown-dark);
    }

    .business-card p {
        font-size: 12px;
        color: var(--text-mid);
    }

/* Image Side */
.dv9-image {
    flex: 1;
}

    .dv9-image img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

/* MOBILE RESPONSIVE (Upar aur Niche karne ke liye) */
@media (max-width: 768px) {
    .dv9-container {
        flex-direction: column; /* Mobile par stack ho jayega */
        text-align: center;
    }

    .divider {
        margin: 0 auto 20px;
    }

    .business-grid {
        justify-content: center;
    }

    .dv9-image {
        order: -1; /* Mobile par Image ko Text se pehle dikhane ke liye (optional) */
    }
}

.text-content {
    line-height: 1.8;
}






/* Gallery */
.img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .img-gallery img {
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .img-gallery img:hover {
            transform: scale(1.05);
        }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

/* Image inside modal */
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}


.bg-light {
    background-color: var(--cream);
}
















.testimonial-section {
    padding: 60px 20px;
    background: var(--cream-dark);
    text-align: center;
}

.section-title span {
    color: var(--gold);
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

/* CLIENT */
.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .client-info img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

/* STARS */
.stars {
    color: var(--gold-light);
    font-size: 14px;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


.tab, .tab-btn {
    text-transform: uppercase;
}















.premium-tabs-section {
    padding: 60px 20px;
    background: var(--cream);
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

    .section-title span {
        color: var(--gold);
    }

/* TABS WRAPPER */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    position: relative;
}

/* TAB BUTTON */
.tab-btn {
    padding: 10px 22px;
    border: none;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    color: var(--text-mid);
}

    /* UNDERLINE EFFECT */
    .tab-btn::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0%;
        height: 3px;
        background: var(--gold);
        transition: 0.3s;
        transform: translateX(-50%);
    }

    .tab-btn:hover::after {
        width: 60%;
    }

    .tab-btn.active {
        color: var(--gold);
    }

        .tab-btn.active::after {
            width: 100%;
        }

/* CONTENT */
.tab-content {
    display: none;
    animation: fadeUp 0.4s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CARD STYLE READY */
.card-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .card-box:hover {
        transform: translateY(-8px);
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .section-title {
        font-size: 22px;
    }
}






.photogallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 1 row à¤®à¥‡à¤‚ 4 */
    gap: 15px;
}

.photo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    margin-top: 20px;
}

    .photo-item img:hover {
        transform: scale(1.05);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .photogallery {
        grid-template-columns: repeat(2, 1fr); /* mobile à¤®à¥‡à¤‚ 2 */
    }
}

.galleryphotos {
    width: 100%;
    height: 100%;
    background-size: cover;
}

    .galleryphotos img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
