        /* =====================================================
           MEN'S MINISTRY SECTION
           All styles are scoped inside .mens-ministry-section
        ====================================================== */

        .mens-ministry-section {
            --mm-navy: #101d35;
            --mm-dark: #09101f;
            --mm-gold: #d9a62e;
            --mm-light-gold: #f4d77c;
            --mm-orange: #d96b2b;
            --mm-cream: #fffaf0;
            --mm-soft: #f7f2e8;
            --mm-white: #ffffff;
            --mm-text: #454545;

            position: relative;
            overflow: hidden;
            padding: 90px 0;
            background:
                radial-gradient(circle at 10% 12%,
                    rgba(217, 166, 46, 0.15),
                    transparent 22%),
                radial-gradient(circle at 90% 85%,
                    rgba(217, 107, 43, 0.12),
                    transparent 25%),
                linear-gradient(135deg, #fffdf8 0%, #f8f1e6 50%, #fffaf0 100%);

            font-family: "Noto Sans Tamil", "Segoe UI", Arial, sans-serif;
            color: var(--mm-text);
        }

        .mens-ministry-section *,
        .mens-ministry-section *::before,
        .mens-ministry-section *::after {
            box-sizing: border-box;
        }

        /* Decorative background shapes */

        .mens-ministry-section .mm-bg-circle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(2px);
            animation: mmFloat 8s ease-in-out infinite;
        }

        .mens-ministry-section .mm-bg-circle.circle-one {
            width: 260px;
            height: 260px;
            top: -100px;
            left: -80px;
            border: 32px solid rgba(217, 166, 46, 0.07);
        }

        .mens-ministry-section .mm-bg-circle.circle-two {
            width: 320px;
            height: 320px;
            right: -130px;
            bottom: 70px;
            border: 45px solid rgba(16, 29, 53, 0.05);
            animation-delay: 2s;
        }

        .mens-ministry-section .mm-cross {
            position: absolute;
            color: rgba(217, 166, 46, 0.08);
            font-size: 110px;
            pointer-events: none;
        }

        .mens-ministry-section .mm-cross.cross-one {
            top: 15%;
            right: 5%;
            transform: rotate(8deg);
        }

        .mens-ministry-section .mm-cross.cross-two {
            left: 3%;
            bottom: 14%;
            font-size: 80px;
            transform: rotate(-10deg);
        }

        .mens-ministry-section .mm-container {
            position: relative;
            z-index: 2;
        }

        /* Section heading */

        .mens-ministry-section .mm-heading-box {
            position: relative;
            margin: 0 auto 50px;
            padding: 45px 50px;
            overflow: hidden;
            text-align: center;
            border: 1px solid rgba(217, 166, 46, 0.5);
            border-radius: 28px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255,255,255,0.96),
                    rgba(255,250,240,0.92)
                );
            box-shadow:
                0 25px 60px rgba(16, 29, 53, 0.12),
                inset 0 0 0 5px rgba(255,255,255,0.75);
        }

        .mens-ministry-section .mm-heading-box::before {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            top: -90px;
            left: -50px;
            border-radius: 50%;
            background: rgba(217, 166, 46, 0.11);
        }

        .mens-ministry-section .mm-heading-box::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            right: -80px;
            bottom: -130px;
            border-radius: 50%;
            background: rgba(16, 29, 53, 0.06);
        }

        .mens-ministry-section .mm-small-title {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding: 9px 20px;
            border-radius: 50px;
            background: linear-gradient(
                135deg,
                var(--mm-navy),
                #24395c
            );
            color: var(--mm-light-gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            box-shadow: 0 10px 25px rgba(16, 29, 53, 0.2);
        }

        .mens-ministry-section .mm-main-title {
            position: relative;
            z-index: 1;
            margin: 0 0 18px;
            color: var(--mm-navy);
            font-size: clamp(35px, 5vw, 64px);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .mens-ministry-section .mm-main-title span {
            color: var(--mm-gold);
        }

        .mens-ministry-section .mm-title-line {
            position: relative;
            z-index: 1;
            width: 100px;
            height: 5px;
            margin: 0 auto 22px;
            overflow: hidden;
            border-radius: 10px;
            background: #ead9ad;
        }

        .mens-ministry-section .mm-title-line::before {
            content: "";
            position: absolute;
            width: 40px;
            height: 100%;
            left: 0;
            border-radius: inherit;
            background: var(--mm-gold);
            animation: mmLineMove 2.8s ease-in-out infinite;
        }

        .mens-ministry-section .mm-subtitle {
            position: relative;
            z-index: 1;
            max-width: 820px;
            margin: 0 auto;
            color: #5e5e5e;
            font-size: 17px;
            font-weight: 500;
            line-height: 1.95;
        }

        /* Four photo boxes */

        .mens-ministry-section .mm-gallery {
            margin-bottom: 65px;
        }

        .mens-ministry-section .mm-photo-card {
            position: relative;
            height: 360px;
            overflow: hidden;
            border: 5px solid rgba(255,255,255,0.9);
            border-radius: 25px;
            background: var(--mm-navy);
            box-shadow:
                0 18px 40px rgba(16, 29, 53, 0.2),
                0 0 0 1px rgba(217, 166, 46, 0.35);
            transition:
                transform 0.45s ease,
                box-shadow 0.45s ease;
        }

        .mens-ministry-section .mm-photo-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 65px rgba(16, 29, 53, 0.26),
                0 0 25px rgba(217, 166, 46, 0.28);
        }

        .mens-ministry-section .mm-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition:
                transform 0.7s ease,
                filter 0.5s ease;
        }

        .mens-ministry-section .mm-photo-card:hover img {
            transform: scale(1.08);
        }

        .mens-ministry-section .mm-photo-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to top,
                    rgba(9, 16, 31, 0.94) 0%,
                    rgba(9, 16, 31, 0.15) 60%,
                    transparent 100%
                );
        }

        .mens-ministry-section .mm-photo-number {
            position: absolute;
            z-index: 3;
            top: 18px;
            right: 18px;
            display: grid;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            background: rgba(16, 29, 53, 0.75);
            color: var(--mm-light-gold);
            font-size: 15px;
            font-weight: 900;
            backdrop-filter: blur(7px);
        }

        .mens-ministry-section .mm-photo-content {
            position: absolute;
            z-index: 3;
            right: 24px;
            bottom: 25px;
            left: 24px;
        }

        .mens-ministry-section .mm-photo-icon {
            display: grid;
            width: 48px;
            height: 48px;
            margin-bottom: 13px;
            place-items: center;
            border-radius: 14px;
            background: linear-gradient(
                135deg,
                var(--mm-gold),
                var(--mm-orange)
            );
            color: var(--mm-white);
            font-size: 20px;
            box-shadow: 0 10px 25px rgba(217, 166, 46, 0.3);
        }

        .mens-ministry-section .mm-photo-content h3 {
            margin: 0 0 7px;
            color: var(--mm-white);
            font-size: 21px;
            font-weight: 900;
        }

        .mens-ministry-section .mm-photo-content p {
            margin: 0;
            color: rgba(255,255,255,0.78);
            font-size: 13px;
            line-height: 1.7;
        }

        /* Content block */

        .mens-ministry-section .mm-content-card {
            position: relative;
            overflow: hidden;
            margin-bottom: 42px;
            padding: 55px;
            border-radius: 30px;
            background:
                linear-gradient(
                    135deg,
                    var(--mm-dark),
                    var(--mm-navy)
                );
            box-shadow: 0 25px 65px rgba(9, 16, 31, 0.25);
        }

        .mens-ministry-section .mm-content-card::before {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            right: -90px;
            top: -120px;
            border-radius: 50%;
            border: 45px solid rgba(217, 166, 46, 0.08);
        }

        .mens-ministry-section .mm-content-card::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            left: -100px;
            bottom: -80px;
            border-radius: 50%;
            background: rgba(217, 107, 43, 0.08);
        }

        .mens-ministry-section .mm-content-image {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: 6px solid rgba(255,255,255,0.08);
            border-radius: 25px;
            box-shadow:
                0 20px 45px rgba(0,0,0,0.28),
                0 0 0 1px rgba(217,166,46,0.4);
        }

        .mens-ministry-section .mm-content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .mens-ministry-section .mm-content-card:hover
        .mm-content-image img {
            transform: scale(1.05);
        }

        .mens-ministry-section .mm-image-badge {
            position: absolute;
            right: 20px;
            bottom: 20px;
            left: 20px;
            padding: 18px;
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 18px;
            background: rgba(9, 16, 31, 0.82);
            color: var(--mm-white);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.7;
            backdrop-filter: blur(12px);
        }

        .mens-ministry-section .mm-content-text {
            position: relative;
            z-index: 1;
            padding-left: 20px;
        }

        .mens-ministry-section .mm-content-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 15px;
            color: var(--mm-light-gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .mens-ministry-section .mm-content-text h2 {
            margin-bottom: 22px;
            color: var(--mm-white);
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 900;
            line-height: 1.25;
        }

        .mens-ministry-section .mm-content-text h2 span {
            color: var(--mm-light-gold);
        }

        .mens-ministry-section .mm-content-text > p {
            margin-bottom: 17px;
            color: rgba(255,255,255,0.78);
            font-size: 16px;
            line-height: 2;
        }

        .mens-ministry-section .mm-feature-list {
            margin-top: 25px;
        }

        .mens-ministry-section .mm-feature-item {
            display: flex;
            gap: 14px;
            margin-bottom: 14px;
            padding: 14px 17px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            background: rgba(255,255,255,0.045);
            transition:
                transform 0.3s ease,
                background 0.3s ease,
                border-color 0.3s ease;
        }

        .mens-ministry-section .mm-feature-item:hover {
            transform: translateX(7px);
            border-color: rgba(217,166,46,0.35);
            background: rgba(217,166,46,0.08);
        }

        .mens-ministry-section .mm-feature-item i {
            width: 24px;
            padding-top: 4px;
            color: var(--mm-light-gold);
            font-size: 17px;
        }

        .mens-ministry-section .mm-feature-item span {
            color: rgba(255,255,255,0.84);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.7;
        }

        /* Mission cards */

        .mens-ministry-section .mm-section-title {
            margin-bottom: 38px;
            text-align: center;
        }

        .mens-ministry-section .mm-section-title .mm-mini-label {
            display: block;
            margin-bottom: 8px;
            color: var(--mm-gold);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .mens-ministry-section .mm-section-title h2 {
            margin: 0;
            color: var(--mm-navy);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 900;
        }

        .mens-ministry-section .mm-purpose-card {
            height: 100%;
            padding: 35px 28px;
            border: 1px solid rgba(217,166,46,0.26);
            border-radius: 23px;
            background: rgba(255,255,255,0.88);
            box-shadow: 0 15px 40px rgba(16, 29, 53, 0.1);
            transition:
                transform 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
        }

        .mens-ministry-section .mm-purpose-card:hover {
            transform: translateY(-9px);
            border-color: rgba(217,166,46,0.7);
            box-shadow: 0 25px 50px rgba(16, 29, 53, 0.16);
        }

        .mens-ministry-section .mm-purpose-icon {
            display: grid;
            width: 66px;
            height: 66px;
            margin-bottom: 23px;
            place-items: center;
            border-radius: 20px;
            background: linear-gradient(
                135deg,
                var(--mm-navy),
                #314669
            );
            color: var(--mm-light-gold);
            font-size: 27px;
            box-shadow: 0 14px 30px rgba(16,29,53,0.2);
        }

        .mens-ministry-section .mm-purpose-card h3 {
            margin-bottom: 13px;
            color: var(--mm-navy);
            font-size: 21px;
            font-weight: 900;
        }

        .mens-ministry-section .mm-purpose-card p {
            margin: 0;
            color: #686868;
            font-size: 14px;
            line-height: 1.85;
        }

        /* Bible verse section */

        .mens-ministry-section .mm-verse-wrapper {
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            padding: 60px 45px;
            border-radius: 30px;
            background:
                linear-gradient(
                    120deg,
                    #e6aa2e 0%,
                    #f1ce6a 48%,
                    #cf762b 100%
                );
            box-shadow: 0 25px 60px rgba(126, 79, 20, 0.23);
        }

        .mens-ministry-section .mm-verse-wrapper::before {
            content: "\f647";
            position: absolute;
            right: 35px;
            bottom: -45px;
            color: rgba(255,255,255,0.13);
            font-family: "Font Awesome 6 Free";
            font-size: 190px;
            font-weight: 900;
            transform: rotate(-10deg);
        }

        .mens-ministry-section .mm-verse-main {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .mens-ministry-section .mm-quote-icon {
            margin-bottom: 15px;
            color: var(--mm-navy);
            font-size: 44px;
            opacity: 0.75;
        }

        .mens-ministry-section .mm-verse-main blockquote {
            margin: 0 0 16px;
            color: var(--mm-dark);
            font-size: clamp(21px, 3vw, 30px);
            font-weight: 800;
            line-height: 1.75;
        }

        .mens-ministry-section .mm-verse-main cite {
            color: #4c3514;
            font-size: 15px;
            font-style: normal;
            font-weight: 900;
        }

        .mens-ministry-section .mm-small-verse {
            position: relative;
            z-index: 1;
            height: 100%;
            padding: 22px;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 18px;
            background: rgba(255,255,255,0.25);
            color: #3f2c13;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.8;
            backdrop-filter: blur(8px);
        }

        .mens-ministry-section .mm-small-verse strong {
            display: block;
            margin-top: 9px;
            color: var(--mm-navy);
            font-size: 13px;
        }

        /* Closing invitation */

        .mens-ministry-section .mm-join-box {
            margin-top: 65px;
            padding: 45px;
            text-align: center;
            border: 1px solid rgba(16,29,53,0.1);
            border-radius: 26px;
            background: var(--mm-white);
            box-shadow: 0 18px 50px rgba(16,29,53,0.11);
        }

        .mens-ministry-section .mm-join-box h2 {
            margin-bottom: 14px;
            color: var(--mm-navy);
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 900;
        }

        .mens-ministry-section .mm-join-box p {
            max-width: 750px;
            margin: 0 auto 25px;
            color: #666;
            font-size: 16px;
            line-height: 1.9;
        }

        .mens-ministry-section .mm-join-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            min-width: 190px;
            padding: 14px 27px;
            overflow: hidden;
            border: 0;
            border-radius: 50px;
            background:
                linear-gradient(
                    135deg,
                    var(--mm-navy),
                    #283d61
                );
            color: var(--mm-white);
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 15px 30px rgba(16,29,53,0.25);
            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

        .mens-ministry-section .mm-join-button:hover {
            transform: translateY(-4px);
            color: var(--mm-white);
            box-shadow:
                0 22px 40px rgba(16,29,53,0.3),
                0 0 20px rgba(217,166,46,0.3);
        }

        .mens-ministry-section .mm-join-button i {
            color: var(--mm-light-gold);
        }

        /* Animations */

        @keyframes mmFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes mmLineMove {
            0% {
                left: 0;
            }
            50% {
                left: 60px;
            }
            100% {
                left: 0;
            }
        }

        /* Responsive */

        @media (max-width: 991.98px) {
            .mens-ministry-section {
                padding: 70px 0;
            }

            .mens-ministry-section .mm-heading-box {
                padding: 38px 30px;
            }

            .mens-ministry-section .mm-photo-card {
                height: 330px;
            }

            .mens-ministry-section .mm-content-card {
                padding: 35px;
            }

            .mens-ministry-section .mm-content-image {
                height: 420px;
                margin-bottom: 38px;
            }

            .mens-ministry-section .mm-content-text {
                padding-left: 0;
            }
        }

        @media (max-width: 767.98px) {
            .mens-ministry-section {
                padding: 55px 0;
            }

            .mens-ministry-section .mm-heading-box {
                padding: 32px 20px;
                border-radius: 22px;
            }

            .mens-ministry-section .mm-subtitle {
                font-size: 15px;
                line-height: 1.85;
            }

            .mens-ministry-section .mm-photo-card {
                height: 370px;
            }

            .mens-ministry-section .mm-content-card {
                padding: 22px;
                border-radius: 23px;
            }

            .mens-ministry-section .mm-content-image {
                height: 360px;
            }

            .mens-ministry-section .mm-content-text h2 {
                font-size: 30px;
            }

            .mens-ministry-section .mm-content-text > p {
                font-size: 15px;
                line-height: 1.9;
            }

            .mens-ministry-section .mm-verse-wrapper {
                padding: 45px 22px;
            }

            .mens-ministry-section .mm-join-box {
                padding: 35px 20px;
            }
        }

        @media (max-width: 575.98px) {
            .mens-ministry-section .mm-photo-card {
                height: 340px;
            }

            .mens-ministry-section .mm-content-image {
                height: 320px;
            }

            .mens-ministry-section .mm-image-badge {
                right: 12px;
                bottom: 12px;
                left: 12px;
                padding: 14px;
                font-size: 12px;
            }

            .mens-ministry-section .mm-feature-item {
                padding: 13px;
            }

            .mens-ministry-section .mm-verse-main blockquote {
                font-size: 20px;
            }
        }

        /* Reduce animation for users who prefer it */

        @media (prefers-reduced-motion: reduce) {
            .mens-ministry-section *,
            .mens-ministry-section *::before,
            .mens-ministry-section *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }