/* ===== POLICIES HERO SECTION ===== */
.policies-hero {
    position: relative;
    background-image: url('../images/halal-bodies.webp');
    background-size: cover;
    background-position: center;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policies-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 140, 140, 0.72); /* teal overlay */
    backdrop-filter: blur(2px);
}

.policies-hero-content {
    position: relative;
    color: #fff;
    max-width: 850px;
}

.policies-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.policies-subtitle {
    font-size: 18px;
    line-height: 30px;
    color: #ffffffd9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .policies-title {
        font-size: 38px;
    }
    .policies-subtitle {
        font-size: 17px;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .policies-hero {
        height: 380px;
    }
    .policies-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .policies-hero {
        height: 340px;
        padding: 0 20px;
    }
    .policies-title {
        font-size: 28px;
    }
    .policies-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
}












/* SECTION */
.policies-section {
    background: #eef4fa;
    padding: 60px 7%;
}

/* TITLE */
.policies-title {
    text-align: center;
    font-size: 60px;
    line-height: 78px;
    font-weight: 700;

}
.policies-subtitle{

    text-align: center;
    font-size: 20.59px;
    line-height: 31.5px;
    font-weight: 500;
   

}

/* LAYOUT WRAPPER (LEFT + RIGHT) */
.policies-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; /* EXACT gap like screenshot */
}

/* LEFT SIDE WIDTH EXACT LIKE SCREENSHOT */
/* LEFT COLUMN WIDTH */
.policies-list {
    width: 55%;
    max-width: 700px;
    padding-top: 30px;
}

/* FORCE LEFT ALIGN TEXT + ITEMS */
.policy-card {
    display: flex;
    align-items: center;
    justify-content: space-between !important;  /* pushes view button to the right */
    gap: 20px;
    padding: 20px 25px;
}

.policy-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1; /* makes the left side take all space */
}

/* TEXT LEFT ALIGN */
.policy-text {
    text-align: left !important;
}

.policy-text h4,
.policy-text p {
    text-align: left !important;
}


/* RIGHT BOX */
.compliance-box {
    width: 40%;
    background: url('../images/halal-bodies.webp') center/cover no-repeat;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    color: #fff;
    min-height: 600px;
}

/* DARK OVERLAY */
.compliance-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 95, 95, 0.78);
    border-radius: 30px;
}

/* TEXT INSIDE BOX */
.compliance-content {
    position: relative;
    z-index: 5;
}

.compliance-box h3 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.compliance-item {
    margin-bottom: 22px;
}

.compliance-item h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.compliance-item p {
    font-size: 12px;
    line-height: 19px;
    opacity: .95;
    margin-bottom: 30px;
}

/* POLICY CARDS */
.policy-card {
    background: #fff;
    border-radius: 4px;
    padding: 18px 26px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* LEFT INSIDE CARD */
.policy-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICON */
.policy-icon {
    width: 42px;
}

/* TEXT */
.policy-text h4 {
    margin: 0;
    font-size: 18px;
    line-height: 23.9px;
    font-weight: 700;
}

.policy-text p {
    margin: 0;
    color: #000;
    line-height: 24px;
    font-size: 15px;
}


.view-btn {
   background: #F3F9FF;
    border: 1px solid #e0e4eb;
   border-radius: 2.6px;
    padding: 8px 22px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-weight: 500;

         white-space: nowrap;  
    margin-left: auto !important;
}

/* Hover effect (optional) */
.view-btn:hover {
    background: #e9f0f9;
}



.icon-doc {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12c0-5 4-9 8-9s8 4 8 9-4 9-8 9-8-4-8-9z'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E");
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .policies-wrapper {
        flex-direction: column;
    }
    .policies-list,
    .compliance-box {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .policy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .view-btn {
        align-self: flex-start;
    }
}
