   /* Scoped styles for Kandy Perahera Section - Unique Namespace */
        .oveena-kandy-perahera-section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .oveena-kandy-perahera-section *,
        .oveena-kandy-perahera-section *::before,
        .oveena-kandy-perahera-section *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .oveena-perahera-wrapper {
            position: relative;
            min-height: 100vh;
            padding: 80px 20px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
            overflow: hidden;
        }

        .oveena-perahera-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
            animation: oveenaPulseEffect 8s ease-in-out infinite;
        }

        @keyframes oveenaPulseEffect {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .oveena-perahera-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .oveena-perahera-header {
            text-align: center;
            margin-bottom: 60px;
            animation: oveenaFadeInDown 1s ease-out;
        }

        @keyframes oveenaFadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .oveena-perahera-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #daa520 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: oveenaShimmerEffect 3s ease-in-out infinite;
        }

        @keyframes oveenaShimmerEffect {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .oveena-perahera-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .oveena-perahera-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .oveena-perahera-text-box {
            animation: oveenaFadeInLeft 1s ease-out 0.3s backwards;
        }

        @keyframes oveenaFadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .oveena-perahera-content-heading {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .oveena-perahera-content-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, transparent);
            animation: oveenaExpandWidth 2s ease-in-out infinite;
        }

        @keyframes oveenaExpandWidth {
            0%, 100% { width: 60px; }
            50% { width: 100px; }
        }

        .oveena-perahera-text-box p {
            color: #ddd;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .oveena-perahera-highlights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .oveena-perahera-highlight-card {
            background: rgba(255, 215, 0, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid #ffd700;
            transition: all 0.3s ease;
        }

        .oveena-perahera-highlight-card:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateX(10px);
        }

        .oveena-perahera-highlight-card strong {
            color: #ffd700;
            display: block;
            margin-bottom: 5px;
        }

        .oveena-perahera-highlight-card span {
            color: #bbb;
            font-size: 0.95rem;
        }

        /* Advanced Fading Carousel Slider */
        .oveena-carousel-3d-wrapper {
            position: relative;
            height: 500px;
            animation: oveenaFadeInRight 1s ease-out 0.3s backwards;
            overflow: hidden;
        }

        @keyframes oveenaFadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .oveena-carousel-3d-stage {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .oveena-carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
        }

        .oveena-carousel-slide.oveena-active-slide {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .oveena-carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.3) 0%, 
                transparent 40%, 
                transparent 60%, 
                rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .oveena-carousel-slide.oveena-active-slide::before {
            opacity: 1;
        }

        .oveena-carousel-slide::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            animation: oveenaShineSlide 3s ease-in-out infinite;
        }

        @keyframes oveenaShineSlide {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .oveena-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease-in-out;
        }

        .oveena-carousel-slide.oveena-active-slide img {
            transform: scale(1.1);
        }

        /* Vignette Effect */
        .oveena-carousel-3d-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 3;
            pointer-events: none;
        }

        /* Navigation Dots */
        .oveena-carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }

        .oveena-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .oveena-carousel-dot.oveena-active-dot {
            background: #ffd700;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        }

        .oveena-carousel-dot:hover {
            background: rgba(255, 215, 0, 0.7);
            transform: scale(1.2);
        }

        /* Inquiry Button */
        .oveena-perahera-inquiry-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #000;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .oveena-perahera-inquiry-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .oveena-perahera-inquiry-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .oveena-perahera-inquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }

        .oveena-perahera-inquiry-btn span {
            position: relative;
            z-index: 1;
        }

        /* Modal */
        .oveena-perahera-modal-overlay {
            display: none;
            position: fixed;
            z-index: 999999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            animation: oveenaModalFadeIn 0.3s ease;
        }

        @keyframes oveenaModalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .oveena-perahera-modal-box {
            position: relative;
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
            margin: 5% auto;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 80px rgba(255, 215, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.3);
            animation: oveenaModalSlideDown 0.4s ease;
        }

        @keyframes oveenaModalSlideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .oveena-perahera-modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 30px;
            font-weight: bold;
            color: #ffd700;
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .oveena-perahera-modal-close:hover {
            transform: rotate(90deg);
            color: #fff;
        }

        .oveena-perahera-modal-title {
            color: #ffd700;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }

        .oveena-perahera-form-field {
            margin-bottom: 25px;
        }

        .oveena-perahera-form-label {
            display: block;
            color: #ffd700;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .oveena-perahera-form-input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .oveena-perahera-form-input:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .oveena-perahera-submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border: none;
            border-radius: 10px;
            color: #000;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .oveena-perahera-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        /* Hot News Popup Styles */
        .oveena-hotnews-popup-overlay {
            display: none;
            position: fixed;
            z-index: 9999999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            animation: oveenaHotNewsOverlayFade 0.5s ease;
        }

        @keyframes oveenaHotNewsOverlayFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .oveena-hotnews-popup-container {
            position: relative;
            background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
            margin: 8% auto;
            padding: 0;
            width: 90%;
            max-width: 600px;
            border-radius: 25px;
            box-shadow: 0 30px 100px rgba(255, 0, 0, 0.5),
                        0 0 50px rgba(255, 215, 0, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.5);
            animation: oveenaHotNewsPopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
        }

        @keyframes oveenaHotNewsPopIn {
            0% {
                opacity: 0;
                transform: scale(0.3) rotate(-10deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .oveena-hotnews-ribbon {
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            padding: 12px 20px;
            position: relative;
            overflow: hidden;
        }

        .oveena-hotnews-ribbon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: oveenaHotNewsShine 2s infinite;
        }

        @keyframes oveenaHotNewsShine {
            0% { left: -100%; }
            100% { left: 200%; }
        }

        .oveena-hotnews-badge {
            display: inline-block;
            background: #ffd700;
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: oveenaHotNewsPulse 1.5s ease-in-out infinite;
        }

        @keyframes oveenaHotNewsPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .oveena-hotnews-close-btn {
            position: absolute;
            right: 15px;
            top: 15px;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #ffd700;
            border-radius: 50%;
            font-size: 20px;
            color: #ffd700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .oveena-hotnews-close-btn:hover {
            background: #ffd700;
            color: #000;
            transform: rotate(90deg) scale(1.1);
        }

        .oveena-hotnews-content {
            padding: 40px 30px;
            text-align: center;
        }

        .oveena-hotnews-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: oveenaHotNewsFloat 3s ease-in-out infinite;
        }

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

        .oveena-hotnews-title {
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: oveenaHotNewsGlow 2s ease-in-out infinite;
        }

        @keyframes oveenaHotNewsGlow {
            0%, 100% { filter: brightness(1); text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
            50% { filter: brightness(1.3); text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
        }

        .oveena-hotnews-subtitle {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .oveena-hotnews-cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #000;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            text-decoration: none;
        }

        .oveena-hotnews-cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .oveena-hotnews-cta-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .oveena-hotnews-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        }

        .oveena-hotnews-cta-btn span {
            position: relative;
            z-index: 1;
        }

        .oveena-hotnews-sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .oveena-hotnews-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffd700;
            border-radius: 50%;
            animation: oveenaSparkleFloat 3s ease-in-out infinite;
        }

        .oveena-hotnews-sparkle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .oveena-hotnews-sparkle:nth-child(2) {
            top: 40%;
            left: 85%;
            animation-delay: 0.5s;
        }

        .oveena-hotnews-sparkle:nth-child(3) {
            top: 70%;
            left: 15%;
            animation-delay: 1s;
        }

        .oveena-hotnews-sparkle:nth-child(4) {
            top: 60%;
            left: 80%;
            animation-delay: 1.5s;
        }

        .oveena-hotnews-sparkle:nth-child(5) {
            top: 30%;
            left: 50%;
            animation-delay: 2s;
        }

        @keyframes oveenaSparkleFloat {
            0%, 100% {
                transform: translateY(0px) scale(1);
                opacity: 0;
            }
            50% {
                transform: translateY(-30px) scale(1.5);
                opacity: 1;
            }
        }

        @media (max-width: 1200px) {
            .oveena-perahera-content-grid {
                gap: 50px;
            }

            .oveena-perahera-main-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 968px) {
            .oveena-perahera-wrapper {
                padding: 60px 20px;
            }

            .oveena-perahera-content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .oveena-carousel-3d-wrapper {
                height: 400px;
                order: -1;
            }

            .oveena-perahera-main-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .oveena-section-subtitle {
                font-size: 1.1rem;
            }

            .oveena-perahera-content-heading {
                font-size: 1.8rem;
            }

            .oveena-perahera-text-box p {
                font-size: 1rem;
            }

            .oveena-perahera-highlights-grid {
                grid-template-columns: 1fr;
            }

            .oveena-perahera-inquiry-btn {
                width: 100%;
                text-align: center;
                padding: 16px 40px;
                font-size: 1.1rem;
            }

            .oveena-hotnews-title {
                font-size: 1.8rem;
            }

            .oveena-hotnews-icon {
                font-size: 3rem;
            }

            .oveena-hotnews-popup-container {
                margin: 15% auto;
                max-width: 500px;
            }

            .oveena-hotnews-content {
                padding: 30px 25px;
            }

            .oveena-perahera-modal-box {
                padding: 30px 25px;
                margin: 10% auto;
            }
        }

        @media (max-width: 768px) {
            .oveena-perahera-wrapper {
                padding: 50px 15px;
            }

            .oveena-perahera-main-title {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .oveena-section-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }

            .oveena-perahera-content-heading {
                font-size: 1.6rem;
            }

            .oveena-perahera-text-box p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .oveena-carousel-3d-wrapper {
                height: 350px;
            }

            .oveena-carousel-dots {
                bottom: 15px;
                gap: 8px;
            }

            .oveena-carousel-dot {
                width: 10px;
                height: 10px;
            }

            .oveena-perahera-highlight-card {
                padding: 12px;
            }

            .oveena-perahera-highlight-card strong {
                font-size: 0.95rem;
            }

            .oveena-perahera-highlight-card span {
                font-size: 0.9rem;
            }

            .oveena-perahera-inquiry-btn {
                padding: 14px 35px;
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .oveena-hotnews-popup-container {
                margin: 20% auto;
                max-width: 90%;
            }

            .oveena-hotnews-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .oveena-hotnews-subtitle {
                font-size: 1rem;
            }

            .oveena-hotnews-icon {
                font-size: 2.5rem;
            }

            .oveena-hotnews-content {
                padding: 30px 20px;
            }

            .oveena-hotnews-cta-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .oveena-perahera-modal-box {
                padding: 30px 20px;
                margin: 15% auto;
            }

            .oveena-perahera-modal-title {
                font-size: 1.7rem;
            }

            .oveena-perahera-form-field {
                margin-bottom: 20px;
            }

            .oveena-perahera-form-input {
                padding: 12px;
                font-size: 0.95rem;
            }

            .oveena-perahera-submit-btn {
                padding: 12px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .oveena-perahera-wrapper {
                padding: 40px 10px;
            }

            .oveena-section-header {
                margin-bottom: 40px;
            }

            .oveena-perahera-main-title {
                font-size: 1.7rem;
                letter-spacing: 0.5px;
            }

            .oveena-section-subtitle {
                font-size: 0.9rem;
            }

            .oveena-perahera-content-heading {
                font-size: 1.4rem;
            }

            .oveena-perahera-text-box p {
                font-size: 0.9rem;
            }

            .oveena-carousel-3d-wrapper {
                height: 300px;
            }

            .oveena-carousel-dots {
                gap: 6px;
            }

            .oveena-carousel-dot {
                width: 8px;
                height: 8px;
            }

            .oveena-perahera-inquiry-btn {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            .oveena-hotnews-popup-container {
                margin: 25% auto;
            }

            .oveena-hotnews-title {
                font-size: 1.3rem;
            }

            .oveena-hotnews-subtitle {
                font-size: 0.9rem;
            }

            .oveena-hotnews-icon {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .oveena-hotnews-content {
                padding: 25px 15px;
            }

            .oveena-hotnews-badge {
                font-size: 0.75rem;
                padding: 4px 12px;
            }

            .oveena-hotnews-cta-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .oveena-perahera-modal-box {
                padding: 25px 15px;
                margin: 20% auto;
            }

            .oveena-perahera-modal-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }

            .oveena-perahera-form-label {
                font-size: 0.9rem;
            }

            .oveena-perahera-form-input {
                padding: 10px;
                font-size: 0.9rem;
            }

            .oveena-perahera-submit-btn {
                padding: 10px;
                font-size: 0.95rem;
            }

            .oveena-hotnews-close-btn {
                width: 30px;
                height: 30px;
                font-size: 18px;
                right: 10px;
                top: 10px;
            }

            .oveena-perahera-modal-close {
                font-size: 25px;
                right: 15px;
                top: 15px;
            }
        }

        @media (max-width: 360px) {
            .oveena-perahera-main-title {
                font-size: 1.5rem;
            }

            .oveena-section-subtitle {
                font-size: 0.85rem;
            }

            .oveena-carousel-3d-wrapper {
                height: 250px;
            }

            .oveena-hotnews-title {
                font-size: 1.2rem;
            }

            .oveena-perahera-modal-title {
                font-size: 1.3rem;
            }
        }