.elementor-18 .elementor-element.elementor-element-e9fc3ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-e9fc3ec *//* ===================================================
   RADIO CENTER GLOBAL PAGE STYLES (v2.0)
   Categories: Daily Meal, Snacks, Frozen Food
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Hind+Siliguri:wght@400;600;700&display=swap');

:root {
    --brand-red: #c11e2e;
    --dark-grey: #1a1a1a;
    --light-bg: #fdfdfd;
    --text-color: #444;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 1. Global Section Setup */
.rc-page-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    color: var(--text-color);
}

.rc-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Main Headings */
.rc-main-heading {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-grey);
    text-transform: uppercase;
    position: relative;
}

.rc-main-heading span {
    color: var(--brand-red);
}

.rc-main-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-red);
    border-radius: 2px;
}

/* 3. About Us Layout (Daily Meal, Snacks, Frozen Food Focus) */
.rc-content-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.rc-text-box {
    flex: 1.2;
    min-width: 320px;
}

.rc-text-box h2 {
    color: var(--brand-red);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.rc-text-box p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

/* Feature List with Red Icons */
.rc-list {
    list-style: none;
    padding: 0;
}

.rc-list li {
    margin-bottom: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 4px solid var(--brand-red);
}

.rc-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.rc-list i {
    color: var(--brand-red);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.rc-list strong {
    color: var(--dark-grey);
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Image Box */
.rc-image-box {
    flex: 0.8;
    min-width: 320px;
    text-align: center;
}

.rc-image-box img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* 4. Contact Grid Layout */
.rc-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.rc-info-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.rc-info-card:hover {
    transform: translateY(-15px);
    border-color: var(--brand-red);
}

.rc-icon {
    width: 80px;
    height: 80px;
    background: rgba(193, 30, 46, 0.08);
    color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    transition: 0.5s;
}

.rc-info-card:hover .rc-icon {
    background: var(--brand-red);
    color: var(--white);
    transform: rotateY(360deg);
}

.rc-info-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--dark-grey);
}

/* 5. Policy Layouts (Privacy, Terms, Refund) */
.rc-policy-box {
    max-width: 900px;
    margin: 0 auto;
}

.rc-policy-item {
    margin-bottom: 35px;
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-right: 5px solid transparent;
    transition: 0.3s;
}

.rc-policy-item:hover {
    border-right-color: var(--brand-red);
    background: #fffafa;
}

.rc-policy-item h3 {
    margin-bottom: 15px;
    color: var(--brand-red);
    font-size: 22px;
    display: flex;
    align-items: center;
}

.rc-policy-item p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
    .rc-main-heading { font-size: 32px; margin-bottom: 40px; }
    .rc-page-section { padding: 60px 15px; }
    .rc-text-box h2 { font-size: 26px; text-align: center; }
    .rc-content-flex { gap: 40px; }
    .rc-info-card { padding: 35px 20px; }
    .rc-policy-item { padding: 25px; }
}

/* Footer Category Icon Support */
.rc-link-list i {
    width: 20px;
    color: var(--brand-red);
    margin-right: 8px;
}/* End custom CSS */