        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #000;
            background: #fff;
        }

        /* Dotted Pattern Background */
        .pattern-section {
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(0,0,0,0.08) 19px, rgba(0,0,0,0.08) 20px),
                repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(0,0,0,0.08) 19px, rgba(0,0,0,0.08) 20px);
            position: relative;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 3rem;
            border-bottom: 1px solid #000;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        .svg-image{
            width: 75%;
        }
        .logo sup {
            font-size: 0.6em;
            font-weight: 400;
        }

        nav a {
            margin-left: 2rem;
            text-decoration: none;
            color: #000;
            font-size: 1rem;
        }
        .content-slider {
            width: 100%;
            height: 40px;
        }
        
        .slider {
            text-align: right;
            align-items: left;
            height: 50px;
            width: 100%;
            overflow: visible;
            position: relative;
        }
        
        .mask {
            overflow: hidden;
            height: 50px;
        }
        
        .slider ul {
            margin: 0;
            padding: 0;
            position: relative;
        }
        
        .slider li {
            width: 100%;
            height: 50px;
            position: absolute;
            list-style: none;
            text-align: left;

        }
        
        .slider .quote {
            text-align: left;
            font-size: 1.4em;
        }
        
        .slider li.anim1 {
            animation: cycle 14s linear infinite;
        }
        
        .slider li.anim2 {
            animation: cycle2 14s linear infinite;
        }
        
        .slider li.anim3 {
            animation: cycle3 14s linear infinite;
        }
        
        .slider:hover li {
            animation-play-state:paused;
        }
        
        @keyframes cycle {
            0% {
            top: 0px;
            }
            4% {
            top: 0px;
            }
            16% {
            top: 0px;
            opacity: 1;
            z-index: 0;
            }
            20% {
            top: 225px;
            opacity: 0;
            z-index: 0;
            }
            21% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
            50% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
            92% {
            top: -225px;
            opacity: 0;
            z-index: 0;
            }
            96% {
            top: -225px;
            opacity: 0;
            }
            100% {
            top: 0px;
            opacity: 1;
            }
        }
        
        @keyframes cycle2 {
            0% {
            top: -225px;
            opacity: 0;
            }
            16% {
            top: -225px;
            opacity: 0;
            }
            20% {
            top: 0px;
            opacity: 1;
            }
            24% {
            top: 0px;
            opacity: 1;
            }
            36% {
            top: 0px;
            opacity: 1;
            z-index: 0;
            }
            40% {
            top: 225px;
            opacity: 0;
            z-index: 0;
            }
            41% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
            100% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
        }
        
        @keyframes cycle3 {
            0% {
            top: -225px;
            opacity: 0;
            }
            36% {
            top: -225px;
            opacity: 0;
            }
            40% {
            top: 0px;
            opacity: 1;
            }
            44% {
            top: 0px;
            opacity: 1;
            }
            56% {
            top: 0px;
            opacity: 1;
            z-index: 0;
            }
            60% {
            top: 225px;
            opacity: 0;
            z-index: 0;
            }
            61% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
            100% {
            top: -225px;
            opacity: 0;
            z-index: -1;
            }
        }
        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 50vh;
            border-bottom: 1px solid #000;
        }

        .hero-left {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .hero-left h1 u {
            text-decoration-thickness: 3px;
            text-underline-offset: 4px;
        }

        .hero-right {
            border-left: 1px solid #000;
        }

        /* Featured Video */
        .featured-video {
            position: relative;
            height: 100%;
            background: #000;
            overflow: hidden;
        }

        .featured-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            color: #fff;
        }

        .video-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            opacity: 0.7;
        }

        .video-overlay h2 {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.3;
        }

        /* Products Section */
        .products-section {
            padding: 4rem 3rem;
            border-bottom: 1px solid #000;
        }

        .section-header {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .product-item {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-5px);
        }

        .product-number {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .product-item h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .product-item h3 u {
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .product-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 1rem;
        }

        .product-meta {
            font-size: 0.9rem;
            color: #666;
        }

        /* Blogs Section */
        .blogs-section {
            padding: 4rem 0 4rem 3rem; /* Remove right padding */
            background: #fff;
            border-bottom: 1px solid #000;
            overflow-x: hidden; /* Prevent outer scroll */
        }

        .blogs-grid {
            display: flex; /* Changed from grid */
            gap: 3rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
            padding-right: 3rem; /* Add padding at end */
        }
        .blogs-grid a {
            display: flex; /* Instead of block */
            flex: 0 0 350px; /* Move this from .blog-item */
            text-decoration: none;
            color: black;
            scroll-snap-align: start;
        }

        .blog-item {
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 100%; /* Fill the link */
        }
        /* .blog-item {
            cursor: pointer;
            transition: transform 0.3s ease;
            flex: 0 0 350px; 
            scroll-snap-align: start;
        } */

        .blog-item:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            width: 100%;
            aspect-ratio: 3/2;
            background: #f5f5f5;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .blog-item h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .blog-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 1rem;
        }

        .blog-meta {
            font-size: 0.85rem;
            color: #999;
        }

        /* Scrollbar styling */
        .blogs-grid::-webkit-scrollbar {
            height: 8px;
        }

        .blogs-grid::-webkit-scrollbar-track {
            background: #f0f0f0;
        }

        .blogs-grid::-webkit-scrollbar-thumb {
            background: #292929;
            border-radius: 4px;
        }

        .blogs-grid::-webkit-scrollbar-thumb:hover {
            background: #292929;
        }

        /* Projects Section */
        .projects-section {
            padding: 4rem 3rem;
            border-bottom: 1px solid #000;
        }

        .project-list {
            max-width: 900px;
        }

        .project-item {
            /* border-top: 1px solid #ddd; */
            padding: 2rem 0;
            cursor: pointer;
        }

        .project-item:last-child {
            /* border-bottom: 1px solid #ddd; */
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
        }

        .project-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            flex-shrink: 0;
        }

        .project-item h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .project-item h3 u {
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .project-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .project-item.active .project-content {
            max-height: 300px;
            margin-top: 1rem;
        }

        .project-item.active .project-toggle {
            transform: rotate(45deg);
        }

        .project-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Footer */
        footer {
            padding: 3rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: #000;
            font-size: 1.5rem;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.6;
        }

        .footer-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                border-left: none;
                border-top: 1px solid #000;
                min-height: 50vh;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
            }

            .hero-left h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
            }

            nav {
                margin-top: 1rem;
            }

            nav a {
                margin-left: 0;
                margin-right: 2rem;
            }

            .hero-left {
                padding: 3rem 2rem;
            }

            .hero-left h1 {
                font-size: 2rem;
            }

            .products-section,
            .blogs-section,
            .projects-section {
                padding: 3rem 2rem;
            }

            .section-header {
                font-size: 1.5rem;
            }
        }