        :root {
            --cm-navy: #172554;
            --cm-blue: #2563eb;
            --cm-sky: #38bdf8;
            --cm-gold: #f59e0b;
            --cm-orange: #fb923c;
            --cm-pink: #ec4899;
            --cm-green: #10b981;
            --cm-light: #f8fbff;
            --cm-cream: #fffaf0;
            --cm-text: #334155;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Noto Sans Tamil", sans-serif;
            background: #ffffff;
            color: var(--cm-text);
        }

        .children-ministry-section {
            position: relative;
            overflow: hidden;
            padding: 95px 0;
            background:
                radial-gradient(circle at 8% 15%, rgba(56, 189, 248, 0.18), transparent 25%),
                radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.18), transparent 24%),
                radial-gradient(circle at 82% 88%, rgba(236, 72, 153, 0.13), transparent 24%),
                linear-gradient(135deg, #f8fbff 0%, #fffdf8 48%, #f4fbff 100%);
        }

        .children-ministry-section::before,
        .children-ministry-section::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(3px);
            pointer-events: none;
            animation: floatingShape 9s ease-in-out infinite;
        }

        .children-ministry-section::before {
            width: 230px;
            height: 230px;
            left: -100px;
            top: 28%;
            border: 35px solid rgba(37, 99, 235, 0.06);
        }

        .children-ministry-section::after {
            width: 290px;
            height: 290px;
            right: -130px;
            bottom: 6%;
            border: 42px solid rgba(245, 158, 11, 0.07);
            animation-delay: -3s;
        }

        @keyframes floatingShape {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-18px) rotate(8deg);
            }
        }

        .cm-decor-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cm-gold);
            box-shadow:
                35px 28px 0 rgba(37, 99, 235, 0.35),
                70px -5px 0 rgba(236, 72, 153, 0.28),
                105px 32px 0 rgba(16, 185, 129, 0.28);
            animation: dotMove 5s ease-in-out infinite;
        }

        .cm-dot-one {
            top: 80px;
            left: 8%;
        }

        .cm-dot-two {
            right: 12%;
            bottom: 100px;
            transform: rotate(180deg);
            animation-delay: -2s;
        }

        @keyframes dotMove {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .cm-section-header {
            position: relative;
            z-index: 2;
            margin: 0 auto 45px;
            padding: 40px 45px;
            text-align: center;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.92));
            border: 1px solid rgba(37, 99, 235, 0.20);
            border-radius: 28px;
            box-shadow:
                0 25px 60px rgba(23, 37, 84, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
        }

        .cm-section-header::before {
            content: "";
            position: absolute;
            inset: 8px;
            border-radius: 21px;
            border: 1px dashed rgba(245, 158, 11, 0.35);
            pointer-events: none;
        }

        .cm-mini-title {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 12px;
            padding: 9px 18px;
            color: #9a5800;
            background: linear-gradient(135deg, #fff4cf, #fffaf0);
            border: 1px solid rgba(245, 158, 11, 0.32);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .cm-main-title {
            position: relative;
            margin: 0 0 15px;
            color: var(--cm-navy);
            font-family: "Anton", "Noto Sans Tamil", sans-serif;
            font-size: clamp(38px, 5vw, 68px);
            line-height: 1.12;
            letter-spacing: 1px;
        }

        .cm-main-title span {
            color: var(--cm-gold);
        }

        .cm-header-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 18px auto;
        }

        .cm-header-line span {
            width: 55px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cm-blue));
        }

        .cm-header-line span:last-child {
            background: linear-gradient(90deg, var(--cm-gold), transparent);
        }

        .cm-header-line i {
            color: var(--cm-gold);
            font-size: 18px;
        }

        .cm-subtitle {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            color: #526277;
            font-size: 17px;
            line-height: 2;
            font-weight: 500;
        }

        /* Four Photo Boxes */
        .cm-photo-grid {
            position: relative;
            z-index: 2;
            margin-bottom: 55px;
        }

        .cm-photo-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            border: 5px solid #ffffff;
            box-shadow:
                0 18px 40px rgba(23, 37, 84, 0.16),
                0 0 0 1px rgba(37, 99, 235, 0.12);
            transition: transform 0.45s ease, box-shadow 0.45s ease;
        }

        .cm-photo-card:hover {
            transform: translateY(-9px);
            box-shadow:
                0 28px 55px rgba(23, 37, 84, 0.22),
                0 0 0 2px rgba(245, 158, 11, 0.30);
        }

        .cm-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.65s ease, filter 0.65s ease;
        }

        .cm-photo-card:hover img {
            transform: scale(1.09);
            filter: saturate(1.1);
        }

        .cm-photo-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            padding: 22px;
            background: linear-gradient(
                to top,
                rgba(8, 20, 55, 0.90),
                rgba(8, 20, 55, 0.08) 68%
            );
        }

        .cm-photo-number {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            color: #ffffff;
            background: rgba(245, 158, 11, 0.92);
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            font-size: 14px;
            font-weight: 800;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
        }

        .cm-photo-caption {
            color: #ffffff;
        }

        .cm-photo-caption h3 {
            margin: 0 0 6px;
            font-size: 20px;
            font-weight: 800;
        }

        .cm-photo-caption p {
            margin: 0;
            color: rgba(255, 255, 255, 0.83);
            font-size: 13px;
            line-height: 1.7;
        }

        /* Welcome Content */
        .cm-content-box {
            position: relative;
            z-index: 2;
            margin-bottom: 45px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(37, 99, 235, 0.14);
            border-radius: 30px;
            box-shadow: 0 22px 55px rgba(30, 64, 175, 0.09);
            backdrop-filter: blur(10px);
        }

        .cm-content-inner {
            padding: 28px;
            background: linear-gradient(135deg, #ffffff, #f8fbff);
            border-radius: 23px;
            border: 1px solid rgba(245, 158, 11, 0.18);
        }

        .cm-content-image {
            position: relative;
            height: 100%;
            min-height: 420px;
            overflow: hidden;
            border-radius: 22px;
            box-shadow: 0 20px 40px rgba(23, 37, 84, 0.18);
        }

        .cm-content-image img {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .cm-content-image:hover img {
            transform: scale(1.06);
        }

        .cm-floating-label {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            padding: 17px 20px;
            color: #ffffff;
            background: rgba(23, 37, 84, 0.90);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .cm-floating-label strong {
            display: block;
            margin-bottom: 5px;
            color: #ffd56a;
            font-size: 17px;
        }

        .cm-floating-label span {
            font-size: 13px;
            line-height: 1.6;
        }

        .cm-content-text {
            padding: 15px 10px 15px 25px;
        }

        .cm-small-heading {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 13px;
            color: var(--cm-blue);
            font-size: 15px;
            font-weight: 800;
        }

        .cm-content-title {
            margin-bottom: 18px;
            color: var(--cm-navy);
            font-size: clamp(27px, 3vw, 40px);
            line-height: 1.45;
            font-weight: 800;
        }

        .cm-content-title span {
            color: var(--cm-orange);
        }

        .cm-content-text p {
            margin-bottom: 17px;
            color: #526277;
            font-size: 16px;
            line-height: 2.05;
            text-align: justify;
        }

        .cm-highlight-text {
            padding: 17px 20px;
            color: #31435b;
            background: linear-gradient(135deg, #fff8e7, #ffffff);
            border-left: 5px solid var(--cm-gold);
            border-radius: 4px 15px 15px 4px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
        }

        /* Ministry Features */
        .cm-feature-section {
            position: relative;
            z-index: 2;
            margin-bottom: 55px;
        }

        .cm-feature-card {
            height: 100%;
            padding: 30px 24px;
            text-align: center;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(37, 99, 235, 0.12);
            border-radius: 22px;
            box-shadow:
                0 15px 35px rgba(23, 37, 84, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .cm-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 45px rgba(23, 37, 84, 0.14);
        }

        .cm-feature-icon {
            width: 76px;
            height: 76px;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            color: #ffffff;
            border-radius: 23px;
            font-size: 29px;
            box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
            transform: rotate(-4deg);
            transition: transform 0.4s ease;
        }

        .cm-feature-card:hover .cm-feature-icon {
            transform: rotate(4deg) scale(1.06);
        }

        .icon-blue {
            background: linear-gradient(135deg, #2563eb, #38bdf8);
        }

        .icon-orange {
            background: linear-gradient(135deg, #f59e0b, #fb7185);
        }

        .icon-green {
            background: linear-gradient(135deg, #10b981, #22c55e);
        }

        .icon-pink {
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
        }

        .cm-feature-card h3 {
            margin-bottom: 12px;
            color: var(--cm-navy);
            font-size: 20px;
            font-weight: 800;
        }

        .cm-feature-card p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
            line-height: 1.9;
        }

        /* Bible Verse */
        .cm-verse-box {
            position: relative;
            z-index: 2;
            overflow: hidden;
            margin-bottom: 48px;
            padding: 55px 45px;
            text-align: center;
            color: #ffffff;
            background:
                radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.26), transparent 28%),
                radial-gradient(circle at 85% 80%, rgba(56, 189, 248, 0.22), transparent 28%),
                linear-gradient(135deg, #0f1f4b, #172554 45%, #1e3a8a);
            border: 1px solid rgba(245, 158, 11, 0.40);
            border-radius: 28px;
            box-shadow: 0 28px 60px rgba(15, 31, 75, 0.25);
        }

        .cm-verse-box::before {
            content: "“";
            position: absolute;
            left: 35px;
            top: -30px;
            color: rgba(255, 255, 255, 0.08);
            font-family: Georgia, serif;
            font-size: 210px;
            line-height: 1;
        }

        .cm-verse-icon {
            width: 72px;
            height: 72px;
            display: grid;
            place-items: center;
            margin: 0 auto 20px;
            color: var(--cm-gold);
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            font-size: 28px;
        }

        .cm-verse-box blockquote {
            position: relative;
            max-width: 920px;
            margin: 0 auto 22px;
            color: #ffffff;
            font-size: clamp(20px, 2.3vw, 29px);
            line-height: 1.8;
            font-weight: 700;
        }

        .cm-verse-reference {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 10px 20px;
            color: #172554;
            background: linear-gradient(135deg, #fbbf24, #fde68a);
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
        }

        /* Second Content Row */
        .cm-story-box {
            position: relative;
            z-index: 2;
            overflow: hidden;
            padding: 45px;
            background: linear-gradient(135deg, #fff8e9, #ffffff 55%, #f0f9ff);
            border: 1px solid rgba(245, 158, 11, 0.22);
            border-radius: 28px;
            box-shadow: 0 22px 50px rgba(23, 37, 84, 0.10);
        }

        .cm-story-title {
            margin-bottom: 20px;
            color: var(--cm-navy);
            font-size: clamp(27px, 3vw, 39px);
            line-height: 1.4;
            font-weight: 800;
        }

        .cm-story-text p {
            color: #53647a;
            font-size: 16px;
            line-height: 2;
            text-align: justify;
        }

        .cm-list {
            margin: 23px 0 0;
            padding: 0;
            list-style: none;
        }

        .cm-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            color: #3f5066;
            line-height: 1.8;
            font-weight: 600;
        }

        .cm-list i {
            flex: 0 0 auto;
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            margin-top: 2px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--cm-green), #22c55e);
            border-radius: 50%;
            font-size: 12px;
        }

        .cm-story-images {
            position: relative;
            min-height: 470px;
        }

        .cm-story-main-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 82%;
            height: 380px;
            overflow: hidden;
            border: 7px solid #ffffff;
            border-radius: 26px;
            box-shadow: 0 25px 45px rgba(23, 37, 84, 0.20);
        }

        .cm-story-main-image img,
        .cm-story-small-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cm-story-small-image {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 55%;
            height: 230px;
            overflow: hidden;
            border: 7px solid #ffffff;
            border-radius: 23px;
            box-shadow: 0 22px 40px rgba(23, 37, 84, 0.22);
        }

        .cm-image-badge {
            position: absolute;
            right: 18px;
            bottom: 25px;
            max-width: 210px;
            padding: 16px 18px;
            color: #ffffff;
            background: linear-gradient(135deg, #f97316, #ec4899);
            border: 3px solid #ffffff;
            border-radius: 16px;
            font-size: 13px;
            line-height: 1.65;
            font-weight: 700;
            box-shadow: 0 15px 30px rgba(236, 72, 153, 0.24);
        }

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

            .cm-section-header {
                padding: 35px 25px;
            }

            .cm-content-text {
                padding: 30px 5px 5px;
            }

            .cm-content-image,
            .cm-content-image img {
                min-height: 390px;
            }

            .cm-story-images {
                margin-top: 35px;
            }
        }

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

            .cm-main-title {
                font-family: "Noto Sans Tamil", sans-serif;
                font-weight: 800;
            }

            .cm-photo-card {
                height: 330px;
            }

            .cm-content-inner {
                padding: 17px;
            }

            .cm-content-text p,
            .cm-story-text p {
                text-align: left;
            }

            .cm-verse-box {
                padding: 42px 20px;
            }

            .cm-story-box {
                padding: 30px 20px;
            }

            .cm-story-images {
                min-height: auto;
            }

            .cm-story-main-image,
            .cm-story-small-image {
                position: relative;
                width: 100%;
                height: 310px;
                margin-bottom: 20px;
            }

            .cm-image-badge {
                position: relative;
                right: auto;
                bottom: auto;
                max-width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .cm-section-header {
                padding: 32px 18px;
                border-radius: 22px;
            }

            .cm-subtitle {
                font-size: 15px;
                line-height: 1.9;
            }

            .cm-photo-card {
                height: 300px;
            }

            .cm-content-image,
            .cm-content-image img {
                min-height: 330px;
            }

            .cm-content-title,
            .cm-story-title {
                font-size: 27px;
            }

            .cm-content-text p,
            .cm-story-text p {
                font-size: 15px;
                line-height: 1.9;
            }
        }