
        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6em;
            color: #555;          
            padding: 0px;
            margin:0px;
        }
        svg {
           background-color: black; 
            color:white;
            padding: 20px;
            border-radius: 15px;
        }

      

                /*background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #1e40af 50%, #1e3a8a 100%);
                */
          
            section {
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                padding: 100px 40px;
                font-size: 18px;
            }

            section.fade-in{
                animation: fade-in linear;
               animation-timeline: view(600px);                    
            }

            @keyframes fade-in {
                to { opacity: 1; background-color: rgb(133, 127, 255);}
                from {  opacity: 0.8; background-color: white;} 
            }

            

            section > div {
                max-width: 1280px;
            }

            
            section#home {
                padding: 0px;                
                background-color: transparent;
                height: 1000px;               
                width: 100%;
                overflow: hidden;
               
            }
            
            .video-mask{
              
                min-width: 100%;
                min-height: 100%;
                background-color: rgba(0, 0, 0, 0.7);               
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

            }

            .video-container {
                position: relative; 
                width: 100%;
                height: 100vh;
                z-index: -1; 
                overflow: hidden;
                max-width: 100%;
                padding: 0px;                
            }
            .video-container video {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    min-width: 100%;
                    min-height: 100%;
                    transform: translate(-50%, -50%);
                    object-fit: cover;
                    z-index: -1; 
                    background-color: rgba(0, 0, 0, 0.5)
            }

             .video-overlay {              
                z-index: 999;   
            }
            

       
            h1, h2, h3, h4 {             
                color: black;
                padding: 0px;
                margin:10px;
            }

            h1 {
                font-size: 72px;
                line-height: 90px;
            }

            h2 {
                 font-size: 48px;        
                line-height: 60px;    
            }
            h3 {
                 font-size: 36px;        
                line-height: 42px;    
            }

      section#home h1,
             section#home h3{
                color:white;
             }
           

            
            .grid-1.bg-white > div{
                background-color: white;
            }

            .colored {
                -webkit-text-fill-color:  transparent;
                display:inline-block;
                line-height: 80px;
                animation: colorCycle 3s infinite alternate;
                background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(79, 70, 229) 25%, rgb(6, 182, 212) 50%, rgb(16, 185, 129) 75%, rgb(124, 58, 237) 100%) 0px 0px / 400% 400% text;
                animation: 6s ease 0s infinite normal none running gradientShift;

            }

            @keyframes gradientShift {
                0% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
                100% { background-position: 0% 50%; }
            }
            

            .grid-1{              
                display:flex;
                flex-direction:row;
                flex-wrap: wrap;                
                gap: 1rem;
                padding: 1rem;       
            }


            .grid-1 > div {
                background-color: white;
                flex: 1 1 calc(33.333% - 3rem);                
                border: solid 2px #ccc;
                border-radius: 20px;             
                padding: 1rem;                  
                transition: transform 0.3s ease, box-shadow 0.3s ease;      
                will-change: transform, box-shadow;     
            }

            .grid-1 > div:hover {
                    transform: scale(1.05); 
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }

             .grid-2 > div {
                flex: 1 1 calc(25% - 3rem);                               
            }


            @media (max-width: 1000px) {
                .grid-1 > div {
                    flex: 1 1 80%; /* Full width on small screens */
                }
                }


            nav {
                background-color: rgba(0, 0, 0, 0.5);
                display: flex;
                flex-direction: row;
                justify-content: space-between;                
                margin: 0px;                
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;                
                padding: 20px 0px;
                z-index: 1000;
                 font-size: 16px;

            }

            nav img {
                margin-top: 10px;
                margin-left: 40px;
            }

            nav ul {
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                padding: 0px;
                margin: 0px;
                margin-right: 40px;
            }

               nav ul li {
                   padding: 10px;

               }
                 nav ul li a {
                  color:white;
                  text-decoration: none;
               }

               .footer {
                background-color: rgb(18, 18, 84);
                color:white;
                font-size: 12px;
               }