* {
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Section 1 Styles */
        .section-1 {
            height: 50vh;
            background: 
                linear-gradient(to bottom, 
                    rgba(0, 0, 0, 1) 0%, 
                    rgba(0, 0, 0, 0.8) 50%,     
                    rgba(0, 0, 0, 0.5) 100%  
                ),
                url('https://www.bondcollective.com/wp-content/uploads/2019/10/image1.png');
            background-size: contain;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            font-size: calc(var(--_size) * 0.022);
            --_factor: min(1000px, 100vh);
            --_size: min(var(--_factor), 100vw);
            overflow-x: hidden;
            padding: 20px;
        }
        
        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }


        .text-center {
            text-align: center;
            /* Center-align text in the container */
        }

        .description {
            margin-top: 2em;
            width: 50%;
            position: relative;
            text-align: justify;
            font-size: 1.2rem;
            gap: 3rem;
        }

        .header-text {
            color: #c8c2bd;
            font-size: 2.4em;
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: -0.009em;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 100%;
            padding: 0 15px;
        }


        .glow-filter {
            position: relative;
            display: inline-block;
            animation: onloadscale 1s ease-out forwards;
        }

        .glow-filter::before {
            content: attr(data-text);
            position: absolute;
            pointer-events: none;
            color: #fffaf6;
            background: linear-gradient(0deg, #dfe5ee 0%, #fffaf6 50%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: url(#glow-4);
            opacity: 0.9;
            animation: onloadopacity 1s ease-out forwards;
        }
        
         /* Responsive Styles */
        @media (max-width: 768px) {
            .section-1 {
                padding: 40px 20px;
            }

            .header-text {
                font-size: 2.4em;
                line-height: 1.3;
                margin-bottom: 1.4rem;
            }

            .description {
                width: 90%;
                font-size: 1rem;
                text-align: left;
            }
        }

@media screen and (max-width: 375px) and (max-height: 667px) {
    .content-wrapper {
        padding-top: 20px; /* Reduced padding for smaller devices */
        justify-content: flex-start;
        min-height: auto; /* Let content dictate the height */
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .header-text {
        font-size: 1.8em; /* Adjust font size for smaller screens */
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding-top: 1rem;
    }

    .description {
        width: 100%;
        font-size: 0.9rem; /* Slightly smaller font for better fit */
        margin-top: 0.8em;
    }
}



        /* Extra small devices */
        @media (max-width: 374px) {
            .header-text {
                font-size: 2.4em;
                line-height: 1.4;
            }

            .description {
                width: 100%;
                font-size: 1rem;
            }

            .section-1 {
                padding: 30px 15px;
            }
        }

        /* Animations */
        @keyframes onloadscale {
            from {
                transform: scale(0.9);
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes onloadopacity {
            from {
                opacity: 0;
            }

            to {
                opacity: 0.9;
            }
        }


        /* Animations */
        @keyframes onloadscale {
            from {
                transform: scale(0.9);
            }

            to {
                transform: scale(1);
            }
        }

        @keyframes onloadopacity {
            from {
                opacity: 0;
            }

            to {
                opacity: 0.9;
            }
        }



        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .clip-path-slide {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }


        .section-text {
            background: #fff;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .text-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .text-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6rem;
            position: relative;
        }

        .text-card {
            position: relative;
            padding: 2rem;
            background: #fff;
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        .text-card:hover {
            transform: translateY(-5px);
        }

        .text-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 2px;
            background: linear-gradient(45deg,
                    transparent 40%,
                    rgba(49, 62, 81)
                    rgba(39, 8, 92, 0.3),
                    transparent 60%);
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .text-card:hover::before {
            opacity: 1;
        }

        .floating-number {
            position: absolute;
            font-size: 12rem;
            font-weight: 800;
            color: rgb(31 41 55);
            opacity:0.05;
            top: -2rem;
            left: -2rem;
            z-index: 0;
            transition: all 0.3s ease;
        }

        .text-card:hover .floating-number {
            transform: scale(1.1);
            color: rgba(149, 9, 35, 0.05);
        }

        .text-content {
            position: relative;
            z-index: 1;
        }

        .text-title {
            font-size: 1.875rem;
            font-weight: 700;
            background: linear-gradient(45deg, #1a1a1a, #333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .text-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 2rem;
            height: 3px;
background: linear-gradient(90deg, #3a3a3a, #35266a);            transition: width 0.3s ease;
        }

        .text-card:hover .text-title::after {
            width: 100%;
        }

        .text-description {
            font-size: 1.125rem;
            line-height: 1.75;
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .text-detail {
            font-size: 1rem;
            line-height: 1.6;
            color: #6b7280;
        }

        .interactive-dot {
            width: 8px;
            height: 8px;
            background: #950923;
            border-radius: 50%;
            position: absolute;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .dot-1 {
            top: 20%;
            left: 10%;
        }

        .dot-2 {
            top: 50%;
            left: 40%;
        }

        .dot-3 {
            bottom: 40%;
            left: 30%;
        }

        .dot-4 {
            bottom: 30%;
            right: 35%;
        }

        @media (max-width: 768px) {
            .text-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
 .timeline-item {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }
        .timeline-item:nth-child(6) { animation-delay: 0.6s; }
        
        
        
        
        
