        :root {
            --youth-navy: #101d3d;
            --youth-blue: #184d8c;
            --youth-gold: #d9a441;
            --youth-light-gold: #f6dd9a;
            --youth-cream: #fffaf0;
            --youth-white: #ffffff;
            --youth-text: #38445b;
        }

        * {
            box-sizing: border-box;
        }

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

        .youth-ministry-section {
            position: relative;
            overflow: hidden;
            padding: 95px 0;
            background:
                radial-gradient(circle at 5% 12%, rgba(217, 164, 65, 0.16), transparent 25%),
                radial-gradient(circle at 95% 85%, rgba(24, 77, 140, 0.15), transparent 27%),
                linear-gradient(135deg, #fffdf7 0%, #f5f9ff 52%, #fff8e8 100%);
        }

        .youth-ministry-section::before,
        .youth-ministry-section::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .youth-ministry-section::before {
            width: 380px;
            height: 380px;
            top: -170px;
            right: -130px;
            border: 55px solid rgba(217, 164, 65, 0.08);
            animation: youthRotate 20s linear infinite;
        }

        .youth-ministry-section::after {
            width: 300px;
            height: 300px;
            bottom: -140px;
            left: -100px;
            border: 40px solid rgba(24, 77, 140, 0.07);
            animation: youthRotateReverse 18s linear infinite;
        }

        .youth-floating-cross {
            position: absolute;
            color: rgba(217, 164, 65, 0.12);
            font-size: 46px;
            animation: youthFloat 6s ease-in-out infinite;
        }

        .youth-cross-one {
            top: 12%;
            left: 4%;
        }

        .youth-cross-two {
            right: 5%;
            top: 48%;
            animation-delay: 2s;
        }

        .youth-cross-three {
            bottom: 8%;
            left: 45%;
            animation-delay: 4s;
        }

        .youth-section-heading {
            position: relative;
            z-index: 2;
            margin: 0 auto 50px;
            text-align: center;
        }

        .youth-small-title {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 9px 22px;
            margin-bottom: 18px;
            border: 1px solid rgba(217, 164, 65, 0.55);
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.8);
            color: var(--youth-blue);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 8px 24px rgba(22, 48, 90, 0.08);
            backdrop-filter: blur(10px);
        }

        .youth-small-title i {
            color: var(--youth-gold);
        }

        .youth-main-title {
            margin-bottom: 18px;
            font-family: "Archivo Black", "Noto Sans Tamil", sans-serif;
            font-size: clamp(34px, 5vw, 65px);
            line-height: 1.15;
            color: var(--youth-navy);
        }

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

        .youth-title-line {
            position: relative;
            width: 100px;
            height: 4px;
            margin: 0 auto 26px;
            border-radius: 10px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--youth-gold),
                var(--youth-blue),
                transparent
            );
        }

        .youth-title-line::after {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            top: 50%;
            left: 50%;
            border: 2px solid var(--youth-gold);
            border-radius: 50%;
            background: #fff;
            transform: translate(-50%, -50%);
        }

        .youth-intro-box {
            position: relative;
            overflow: hidden;
            padding: 30px 34px;
            border: 1px solid rgba(217, 164, 65, 0.48);
            border-radius: 24px;
            background:
                linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.91)),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 14px,
                    rgba(217, 164, 65, 0.09) 14px,
                    rgba(217, 164, 65, 0.09) 15px
                );
            box-shadow:
                0 20px 55px rgba(15, 37, 78, 0.12),
                inset 0 0 0 5px rgba(255, 255, 255, 0.75);
        }

        .youth-intro-box::before {
            content: "";
            position: absolute;
            width: 140px;
            height: 140px;
            top: -75px;
            left: -70px;
            border-radius: 50%;
            background: rgba(217, 164, 65, 0.12);
        }

        .youth-intro-box::after {
            content: "\f004";
            position: absolute;
            right: 24px;
            bottom: -14px;
            font-family: "Font Awesome 6 Free";
            font-size: 85px;
            font-weight: 900;
            color: rgba(24, 77, 140, 0.05);
            transform: rotate(-12deg);
        }

        .youth-intro-box p {
            position: relative;
            z-index: 2;
            margin: 0;
            color: #47536a;
            font-size: 17px;
            line-height: 2;
        }

        .youth-photo-grid {
            position: relative;
            z-index: 2;
            margin-bottom: 70px;
        }

        .youth-photo-card {
            position: relative;
            overflow: hidden;
            height: 360px;
            border: 5px solid #ffffff;
            border-radius: 24px;
            background: var(--youth-navy);
            box-shadow: 0 18px 45px rgba(15, 37, 78, 0.17);
            transition: transform 0.45s ease, box-shadow 0.45s ease;
        }

        .youth-photo-card::before {
            content: "";
            position: absolute;
            z-index: 2;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 30%,
                rgba(7, 18, 45, 0.12) 50%,
                rgba(7, 18, 45, 0.94) 100%
            );
        }

        .youth-photo-card::after {
            content: "";
            position: absolute;
            z-index: 3;
            inset: 10px;
            border: 1px solid rgba(246, 221, 154, 0.48);
            border-radius: 17px;
            pointer-events: none;
        }

        .youth-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .youth-photo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 28px 60px rgba(15, 37, 78, 0.25);
        }

        .youth-photo-card:hover img {
            transform: scale(1.09);
        }

        .youth-photo-content {
            position: absolute;
            z-index: 4;
            right: 24px;
            bottom: 25px;
            left: 24px;
        }

        .youth-photo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            margin-bottom: 12px;
            border: 1px solid rgba(255, 255, 255, 0.38);
            border-radius: 13px;
            background: rgba(217, 164, 65, 0.92);
            color: var(--youth-navy);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        }

        .youth-photo-content h3 {
            margin: 0 0 7px;
            color: #ffffff;
            font-size: 21px;
            font-weight: 800;
        }

        .youth-photo-content p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            line-height: 1.7;
        }

        .youth-content-block {
            position: relative;
            z-index: 2;
            margin-bottom: 55px;
        }

        .youth-content-image-wrap {
            position: relative;
            padding: 12px;
        }

        .youth-content-image-wrap::before {
            content: "";
            position: absolute;
            inset: 0;
            border: 1px solid rgba(217, 164, 65, 0.42);
            border-radius: 30px;
            background: linear-gradient(
                135deg,
                rgba(217, 164, 65, 0.24),
                rgba(24, 77, 140, 0.12)
            );
            transform: rotate(-3deg);
        }

        .youth-content-image {
            position: relative;
            overflow: hidden;
            height: 460px;
            border: 6px solid #ffffff;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(15, 37, 78, 0.2);
        }

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

        .youth-content-image:hover img {
            transform: scale(1.07);
        }

        .youth-image-badge {
            position: absolute;
            right: 28px;
            bottom: 28px;
            left: 28px;
            z-index: 3;
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 18px;
            background: rgba(9, 25, 59, 0.88);
            color: white;
            backdrop-filter: blur(10px);
        }

        .youth-image-badge strong {
            display: block;
            margin-bottom: 4px;
            color: var(--youth-light-gold);
            font-size: 17px;
        }

        .youth-image-badge span {
            font-size: 13px;
            line-height: 1.7;
        }

        .youth-content-card {
            position: relative;
            padding: 42px;
            border: 1px solid rgba(24, 77, 140, 0.14);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 20px 55px rgba(15, 37, 78, 0.1);
            backdrop-filter: blur(9px);
        }

        .youth-content-card::before {
            content: "";
            position: absolute;
            top: 30px;
            left: 0;
            width: 5px;
            height: 85px;
            border-radius: 0 10px 10px 0;
            background: linear-gradient(
                180deg,
                var(--youth-gold),
                var(--youth-blue)
            );
        }

        .youth-content-label {
            display: inline-block;
            margin-bottom: 13px;
            color: var(--youth-gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .youth-content-card h2 {
            margin-bottom: 22px;
            color: var(--youth-navy);
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 800;
            line-height: 1.4;
        }

        .youth-content-card > p {
            margin-bottom: 20px;
            color: #536078;
            font-size: 16px;
            line-height: 2;
        }

        .youth-feature-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 28px;
        }

        .youth-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            border: 1px solid rgba(217, 164, 65, 0.24);
            border-radius: 15px;
            background: linear-gradient(
                135deg,
                rgba(255, 250, 240, 0.95),
                rgba(245, 249, 255, 0.95)
            );
            color: var(--youth-navy);
            font-size: 14px;
            font-weight: 700;
            transition: all 0.35s ease;
        }

        .youth-feature-item i {
            display: flex;
            flex: 0 0 35px;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 10px;
            background: var(--youth-navy);
            color: var(--youth-light-gold);
        }

        .youth-feature-item:hover {
            transform: translateX(6px);
            border-color: rgba(217, 164, 65, 0.65);
            box-shadow: 0 10px 25px rgba(15, 37, 78, 0.09);
        }

        .youth-verse-section {
            position: relative;
            z-index: 2;
            overflow: hidden;
            padding: 55px 45px;
            border-radius: 30px;
            background:
                linear-gradient(115deg, rgba(10, 24, 55, 0.97), rgba(24, 77, 140, 0.93)),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(255, 255, 255, 0.04) 20px,
                    rgba(255, 255, 255, 0.04) 21px
                );
            box-shadow: 0 28px 70px rgba(10, 28, 66, 0.28);
        }

        .youth-verse-section::before {
            content: "\f654";
            position: absolute;
            top: 50%;
            right: 5%;
            font-family: "Font Awesome 6 Free";
            font-size: 190px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.035);
            transform: translateY(-50%);
        }

        .youth-verse-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 75px;
            height: 75px;
            border: 1px solid rgba(246, 221, 154, 0.5);
            border-radius: 22px;
            background: linear-gradient(
                135deg,
                var(--youth-gold),
                var(--youth-light-gold)
            );
            color: var(--youth-navy);
            font-size: 29px;
            box-shadow: 0 15px 40px rgba(217, 164, 65, 0.28);
        }

        .youth-verse-content {
            position: relative;
            z-index: 2;
        }

        .youth-verse-content span {
            display: block;
            margin-bottom: 10px;
            color: var(--youth-light-gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.5px;
        }

        .youth-verse-content blockquote {
            margin: 0 0 14px;
            color: white;
            font-size: clamp(18px, 2.2vw, 25px);
            font-weight: 600;
            line-height: 1.9;
        }

        .youth-verse-content cite {
            color: var(--youth-light-gold);
            font-size: 15px;
            font-style: normal;
            font-weight: 800;
        }

        .youth-second-verse {
            margin-top: 22px;
            padding: 20px 24px;
            border-left: 3px solid var(--youth-gold);
            border-radius: 0 15px 15px 0;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.84);
            font-size: 14px;
            line-height: 1.9;
        }

        .youth-second-verse strong {
            color: var(--youth-light-gold);
        }

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

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

        @keyframes youthRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes youthRotateReverse {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

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

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

            .youth-content-image {
                height: 420px;
            }

            .youth-content-card {
                margin-top: 30px;
                padding: 35px;
            }
        }

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

            .youth-intro-box {
                padding: 24px 20px;
                border-radius: 19px;
            }

            .youth-intro-box p {
                font-size: 15px;
                line-height: 1.9;
            }

            .youth-photo-card {
                height: 370px;
            }

            .youth-content-image {
                height: 390px;
            }

            .youth-content-card {
                padding: 30px 23px;
                border-radius: 22px;
            }

            .youth-feature-list {
                grid-template-columns: 1fr;
            }

            .youth-verse-section {
                padding: 38px 25px;
                text-align: center;
            }

            .youth-verse-icon {
                margin: 0 auto 25px;
            }

            .youth-second-verse {
                border-left: 0;
                border-top: 3px solid var(--youth-gold);
                border-radius: 12px;
            }
        }

        @media (max-width: 480px) {
            .youth-photo-card {
                height: 330px;
            }

            .youth-content-image {
                height: 340px;
            }

            .youth-main-title {
                font-size: 35px;
            }
        }