
    :root {
            --primary: #BF3131;
            --secondary: #7D0A0A;
            --third: #EAD196;
            --bg: #f7f7f7;
            --text: #1d1d1d;
            --text-secondary: #666666;
            --white: #ffffff;
            --overlay: rgba(0, 0, 0, 0.8);
            --font-h1: 42px;
            --font-h2: 32px;
            --font-h3: 24px;
            --font-p: 16px;
            --font-btn: 16px;
            --image-height: 500px;
            --padding-large: 80px;
            --padding-medium: 50px;
            --padding-small: 30px;
            --padding-xsmall: 15px;
        }

        body {
            /* background: var(--bg); */
            color: var(--text);
            font-family: Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        .apjtc-gr-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 20px;
            position: relative;
        }

        .apjtc-gr-heading {
            font-size: var(--font-h1);
            color: var(--primary);
            text-align: center;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeIn 2s ease-in-out;
        }

        /* Animated Background Shapes and Particles */
        .apjtc-gr-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }
        .apjtc-gr-shape-1 { width: 200px; height: 200px; background: var(--third); top: -100px; left: -100px; }
        .apjtc-gr-shape-2 { width: 150px; height: 150px; background: var(--secondary); bottom: -50px; right: -50px; animation-delay: 2s; }
        .apjtc-gr-shape-3 { width: 100px; height: 100px; background: var(--primary); top: 20%; left: 20%; animation-delay: 4s; }
        .apjtc-gr-shape-4 { width: 80px; height: 80px; background: var(--third); top: 10%; right: 10%; animation-delay: 6s; opacity: 0.15; }
        .apjtc-gr-shape-5 { width: 120px; height: 120px; background: var(--secondary); bottom: 20%; left: 5%; animation-delay: 8s; opacity: 0.12; }
        .apjtc-gr-shape-6 { width: 60px; height: 60px; background: var(--primary); top: 50%; right: 15%; animation-delay: 10s; opacity: 0.18; }

        .apjtc-gr-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(191, 49, 49, 0.4);
            border-radius: 50%;
            animation: drift 20s infinite linear;
        }
        .apjtc-gr-particle-1 { top: 5%; left: 10%; }
        .apjtc-gr-particle-2 { top: 30%; right: 20%; animation-delay: 3s; }
        .apjtc-gr-particle-3 { bottom: 15%; left: 25%; animation-delay: 6s; }
        .apjtc-gr-particle-4 { top: 70%; right: 5%; animation-delay: 9s; }
        .apjtc-gr-particle-5 { bottom: 5%; left: 40%; animation-delay: 12s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes drift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, -100px); opacity: 0; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Slideshow Section */
        .apjtc-gr-slideshow {
            display: flex;
            margin-bottom: var(--padding-large);
            position: relative;
        }
        .apjtc-gr-slide-left {
            width: 30%;
            height: var(--image-height);
            overflow: hidden;
            position: relative;
            margin-right: var(--padding-xsmall);
        }
        .apjtc-gr-slide-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        .apjtc-gr-slide-right {
            width: 70%;
            height: var(--image-height);
            position: relative;
            overflow: hidden;
            margin-left: var(--padding-xsmall);
            position: relative;
        }
        .apjtc-gr-slide-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            border-radius: 8px;
        }
        .apjtc-gr-slide-right img.apjtc-gr-active {
            opacity: 1;
        }
        .apjtc-gr-dots {
            display: none;
            text-align: center;
            position: relative;
            /* bottom: 10%; */
            width: 100%;
            margin-top: var(--padding-xsmall);
        }
        .apjtc-gr-dot {
            height: 10px;
            width: 10px;
            background: var(--text-secondary);
            border-radius: 50%;
            display: inline-block;
            margin: 0 var(--padding-xsmall);
            cursor: pointer;
        }
        .apjtc-gr-dot.apjtc-gr-active {
            background: var(--primary);
        }

        /* Gallery Grid */
        .apjtc-gr-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--padding-xsmall);
            margin-bottom: var(--padding-xsmall);
        }
        .apjtc-gr-gallery-row-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .apjtc-gr-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }
        .apjtc-gr-gallery img:hover {
            transform: scale(1.05);
        }

        /* Modal for Enlarged Image */
        .apjtc-gr-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, var(--overlay), rgba(0, 0, 0, 0.5));
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .apjtc-gr-modal-content {
            max-width: 90%;
            max-height: 90%;
        }
        .apjtc-gr-modal-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .apjtc-gr-close {
            position: absolute;
            top: var(--padding-small);
            right: var(--padding-small);
            font-size: var(--font-h2);
            color: var(--white);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .apjtc-gr-slideshow {
                flex-direction: column;
            }
            .apjtc-gr-slide-left, .apjtc-gr-slide-right {
                width: 100%;
                margin: var(--padding-xsmall) 0;
            }
            .apjtc-gr-gallery, .apjtc-gr-gallery-row-2 {
                grid-template-columns: 1fr;
            }
        }