
        :root {
            --primary-color: #16a34a;
            --primary-hover: #15803d;
            --secondary-color: #1f2937;
            --accent-color: #0ea5e9;
            --text-primary: #111827;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;
            --background: #ffffff;
            --background-alt: #f8fafc;
            --surface: #ffffff;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            --gradient-hero: linear-gradient(135deg, #065f46 0%, #047857 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--background);
            color: var(--text-primary);
            line-height: 1.6;
            font-weight: 400;
            overflow-x:hidden;
        }

        /* Enhanced Navbar - Improved Mobile Responsiveness */
        .navbar {
            background-color: var(--surface);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
        }

        /* Improved Logo Section */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            max-width: calc(100vw - 160px); /* Ensure logo doesn't overflow */
        }

        .logo-image {
            width: 60px;
            height: auto;
            border-radius: 25px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            border: 2px solid rgba(22, 163, 74, 0.1);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow);
        }

        .logo-text {
            font-size: 26px;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.025em;
            white-space: nowrap;
            transition: all 0.3s ease;
            line-height: 1.1;
        }

        /* Full name for larger screens */
        .logo-text-full {
            display: inline;
        }

        .logo-text-short {
            display: none;
        }

        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 32px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 14px 48px 14px 20px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 15px;
            font-weight: 400;
            background-color: var(--background-alt);
            transition: all 0.3s ease;
            outline: none;
        }

        .search-input:focus {
            border-color: var(--primary-color);
            background-color: var(--surface);
            box-shadow: 0 0 0 3px rgb(22 163 74 / 0.1);
        }

        .search-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 18px;
            pointer-events: none;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .location-selector {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .location-selector:hover {
            background-color: var(--background-alt);
            color: var(--text-primary);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 8px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .menu-toggle:hover {
            background-color: var(--background-alt);
        }

        /* Enhanced Navigation Menu */
        .nav-menu {
            background-color: var(--background-alt);
            border-bottom: 1px solid var(--border-light);
            padding: 16px 0;
        }

        .nav-menu-container {
            max-width: 1280px;
            margin: -18px auto;
            padding: 0 24px;

            /* distribute left and right menus */
    display: flex;
    justify-content: space-between;
    align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links li a {
            /* color: var(--text-secondary); */
            color: var(--text-primary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links li a:hover {
            color: var(--primary-color);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* Enhanced Hero Carousel - Reduced spacing */
        .hero-section {
            position: relative;
            width: 100%;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            overflow: hidden;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 110%;
        }

        .carousel-slide {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            height: 85%;
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transition: none;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            /* background: linear-gradient(135deg, rgba(5,46,22,0.8) 0%, rgba(6,78,59,0.6) 50%, rgba(16,185,129,0.3) 100%); */
            z-index: 1;
        }

        .carousel-content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            background: rgba(6, 78, 59, 0.7);
             /* background: rgba(128, 75, 5, 0.7); */
            padding: 12px 16px;
            border-radius: 8px;
            z-index: 2;
        }

        .carousel-slide .carousel-content {
            opacity: 0;
            transition: none;
            pointer-events: none;
        }

        .carousel-slide.active .carousel-content {
            opacity: 1;
            pointer-events: auto;
        }

        .carousel-content h1 {
            font-size: clamp(20px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 8px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -0.025em;
            line-height: 1.2;
        }

        .carousel-content p {
            font-size: clamp(14px, 2vw, 16px);
            color: rgba(255,255,255,0.9);
            margin-bottom: 16px;
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .carousel-cta {
            margin-top: 8px;
            padding: 8px 14px;
            border: none;
            background: #16a34a;
            color: white;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .carousel-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
        }

        /* Navigation buttons */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(22, 101, 52, 0.8);
            color: white;
            border: none;
            padding: 12px 16px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 18px;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: rgba(22, 101, 52, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        /* Carousel positioning */
        .active {
            width: 80%;
            left: 10%;
            opacity: 1;
            z-index: 3;
        }

        .prev {
            width: 10%;
            left: 0;
            transform: translateY(-50%) translateX(-10px);
            opacity: 0.7;
            z-index: 2;
        }

        .next {
            width: 10%;
            right: 0;
            transform: translateY(-50%) translateX(10px);
            opacity: 0.7;
            z-index: 2;
        }

        /* Enhanced Projects Section */
        .movies-section {
            max-width: 1280px;
            margin: 0 auto 30px auto;
            padding: 0 24px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.025em;
        }

        .see-all-link {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: normal;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .see-all-link:hover {
            color: var(--primary-hover);
            transform: translateX(4px);
        }

        .movies-container {
            position: relative;
        }

        .movies-grid {
            display: flex;
            gap: 31px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0px 0 24px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .movies-grid-success {
            display: flex;
            gap: 31px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0px 0 24px;
            scrollbar-width: none;
            -ms-overflow-style: none;
            margin-bottom: -3%;
        }

        .movies-grid::-webkit-scrollbar {
            display: none;
        }

        .movie-card {
            min-width: 18%;
            background: var(--surface);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }

        .movie-card-success {
            /* max-height: fit-content; */
            min-width: 17.9%;
            background: var(--surface);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }

        .movie-card-greeting {
            min-width: 18%;
            background: var(--surface);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }
        
        .movie-card a{
            display: block; /* allows clickable area */
    text-decoration: none; /* removes underline */
    color: inherit; /* keep text color */
        }

        .movie-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--border);
        }

        .movie-poster {
            width: 100%;
            height: 48%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .movie-poster-greeting {
            width: 65%;
            height: 48%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .movie-poster-success {
            /* margin-top: 10%;
            width: 80%;
            border-radius: 10px;
            height: 48%; */
            margin-top: 2%;
            width: 200px;
            border-radius: 10px;
            height: 200px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .movie-card:hover .movie-poster {
            transform: scale(1.05);
        }

        .movie-info {
            padding: 20px;
        }

        .movie-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .rating-badge {
            background: var(--gradient-primary);
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rating-badge-success {
            margin: 5% 24% 0% 24%;
            background: var(--gradient-primary);
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rating-votes {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .movie-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .movie-genre {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .scroll-navigation {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-primary);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
        }

        .scroll-navigation:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .scroll-prev {
            left: -24px;
        }

        .scroll-next {
            right: -24px;
        }

        /* Enhanced Footer */
        .footer {
            background: var(--gradient-hero);
            color: white;
            margin-top: 30px;
            padding: 48px 0 24px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: 15px;
        }

        .footer-apps {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .app-download-btn {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .app-download-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .footer-section h4 {
            margin-bottom: 20px;
            color: white;
            font-size: 16px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
            transform: translateX(4px);
        }

        .social-media {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-2px) scale(1.1);
            border-color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            background: var(--surface);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 24px;
        }

        .mobile-nav ul li {
            margin-bottom: 16px;
        }

        .mobile-nav ul li a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            padding: 8px 0;
        }

        /* Responsive Breakpoints */

        /* Large tablets and small desktops (1024px and down) */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 16px;
            }
            
            .search-container {
                max-width: 280px;
                margin: 0 20px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .nav-actions {
                gap: 12px;
            }
        }

        /* Tablets (768px and down) */
        @media (max-width: 768px) {

            .movie-card-greeting {
            min-width: 36%;
            }

            .movie-card-success {
            min-width: 67%;
            }

            .search-container {
                display: none;
            }

            .nav-actions .location-selector {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
            }

            .logo-image {
                width: 38px;
                height: 38px;
            }

            .logo-text {
                font-size: 22px;
            }

            .hero-section {
                height: 280px;
                margin-bottom: 15px;
            }

            .carousel-slide {
                height: 88%;
            }

            .carousel-content {
                left: 16px;
                right: 16px;
                bottom: 16px;
                padding: 10px 12px;
            }

            .carousel-content h1 {
                font-size: 20px;
                margin-bottom: 6px;
            }

            .carousel-content p {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .carousel-cta {
                padding: 6px 12px;
                font-size: 12px;
            }

            .carousel-nav {
                padding: 10px 14px;
                font-size: 16px;
            }

            .carousel-prev {
                left: 12px;
            }

            .carousel-next {
                right: 12px;
            }

            .movies-section {
                padding: 0 16px;
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 22px;
            }

            .movie-card {
                min-width: 200px;
            }

            .movie-poster {
                height: 260px;
            }

            .scroll-navigation {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer {
                margin-top: 20px;
            }
        }

        /* Small tablets and large phones (640px and down) */
        @media (max-width: 640px) {
            .nav-container {
                height: 64px;
                padding: 0 12px;
            }

            .logo {
                gap: 8px;
                max-width: calc(100vw - 120px);
            }

            .logo-image {
                width: 36px;
                height: 36px;
            }

            /* Switch to short form on smaller screens */
            .logo-text-full {
                display: none;
            }

            .logo-text-short {
                display: inline;
            }

            .logo-text {
                font-size: 20px;
            }

            .btn-primary {
                padding: 10px 16px;
                font-size: 13px;
            }

            .hero-section {
                height: 240px;
                margin-bottom: 12px;
            }

            .carousel {
                width: 96%;
            }

            .carousel-slide {
                border-radius: 12px;
                height: 85%;
            }

            .carousel-content {
                left: 12px;
                right: 12px;
                bottom: 12px;
                padding: 8px 10px;
            }

            .carousel-content h1 {
                font-size: 18px;
                margin-bottom: 4px;
            }

            .carousel-content p {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .movies-section {
                padding: 0 12px;
                margin-bottom: 15px;
            }

            .section-title {
                font-size: 20px;
            }

            .movie-card {
                min-width: 170px;
            }

            .movie-poster {
                height: 220px;
            }
        }

        /* Mobile phones (480px and down) */
        @media (max-width: 480px) {
            .nav-container {
                height: 60px;
                padding: 0 10px;
            }

            .logo {
                gap: 6px;
                max-width: calc(100vw - 100px);
            }

            .logo-image {
                width: 32px;
                height: 32px;
            }

            .logo-text {
                font-size: 18px;
            }

            .btn-primary {
                padding: 8px 12px;
                font-size: 12px;
            }

            .hero-section {
                height: 200px;
                margin-bottom: 10px;
            }

            .carousel {
                width: 98%;
            }

            .carousel-slide {
                border-radius: 10px;
                height: 82%;
            }

            .carousel-content {
                left: 10px;
                right: 10px;
                bottom: 10px;
                padding: 6px 8px;
            }

            .carousel-content h1 {
                font-size: 16px;
                margin-bottom: 3px;
            }

            .carousel-content p {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .carousel-cta {
                padding: 4px 8px;
                font-size: 11px;
            }

            .carousel-nav {
                padding: 8px 12px;
                font-size: 14px;
            }

            .carousel-prev {
                left: 8px;
            }

            .carousel-next {
                right: 8px;
            }

            .movies-section {
                padding: 0 10px;
                margin-bottom: 12px;
            }

            .section-title {
                font-size: 18px;
            }

            .movie-card {
                min-width: 150px;
            }

            .movie-poster {
                height: 190px;
            }

            .movie-info {
                padding: 14px;
            }

            .movie-title {
                font-size: 15px;
            }

            .footer {
                margin-top: 15px;
                padding: 36px 0 20px;
            }

            .footer-container {
                padding: 0 16px;
            }

            .ecosyslogowithlogin {
                width:30%;
                margin-right:auto;
            }

            .ecosyslogowithoutlogin {
                    width:20%;
                    margin-right:auto;
            }
            
        }

        /* Very small phones (360px and down) */
        @media (max-width: 360px) {
            .ecosyslogowithlogin {
                width:30% !important;
                margin-right:0px !important;
                margin-left: -10px !important;
            }

            .ecosyslogowithoutlogin {
                width:20% !important;
                margin-right:0px !important;
                margin-left: -10px !important;
            }

            .nav-container {
                padding: 0 8px;
            }

            .logo {
                gap: 4px;
                max-width: calc(100vw - 80px);
            }

            .logo-image {
                width: 28px;
                height: 28px;
            }

            .logo-text {
                font-size: 16px;
            }

            .btn-primary {
                padding: 6px 10px;
                font-size: 11px;
            }

            .movie-card {
                min-width: 130px;
            }

            .movie-poster {
                height: 160px;
            }
        }

        /* Loading animations */
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .loading {
            position: relative;
            overflow: hidden;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }
          a {
    text-decoration: none; /* removes underline */
    color: inherit;        /* uses parent text color */
  }


  /* Add this wrapper class to break out of container constraints */
.section-background-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #065f46; /* Green color - adjust shade as needed */
    padding: 22px 0; /* Adjust height by changing padding */
    margin-bottom: 2%;
    /* text-shadow: 2px 2px 5px gray; */
    /* box-shadow: 2px 2px 5px gray, -2px -2px 5px lightgray; */
}

/* Alternative green color options (uncomment the one you prefer):
   background-color: #2E7D32; - Darker green
   background-color: #66BB6A; - Lighter green
   background-color: #1B5E20; - Very dark green
   background-color: #81C784; - Soft green
*/

/* Your existing section will be nested inside this wrapper */
.section-background-wrapper .movies-section {
    max-width: 80%; /* Maintains your container width */
    margin: 0 auto; /* Centers the content */
}

.ecosyslogowithlogin {
width:45%;
margin-right:auto;
}

.ecosyslogowithoutlogin {
    width:35%;
    margin-right:auto;
}


/* Hide the mobile button on large screens */
.show-mobile {
    display: none;
}

/* For screens less than or equal to 480px */
@media (max-width: 480px) {
    .hide-mobile {
        display: none !important;
    }
    .show-mobile {
        display: inline-block !important;
    }
    .btn-primary {
    padding: 10px 12px !important;
    }
}

