
        @font-face {
                font-family: 'Sansation';
                font-path: 'content/Sansation/';
                src: url('content/Sansation/Sansation-Regular.ttf') format('truetype');
            }


        body {
            font-family: 'Sansation', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #F8F5FF;
            color: #333;
            line-height: 1.6;
            padding-top: 120px;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        header {
            background-color: #ffffff;
            padding-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            text-align: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: padding 0.3s ease, box-shadow 0.3s ease;
        }

        header.header-scrolled {
            padding: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        header .logo {
            width: 100px;
            height: auto;
            vertical-align: middle;
            transition: width 0.3s ease;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
            color: #2C0161;
            display: inline-block;
            vertical-align: text-top;
        }

        header .tagline {
            font-size: 1.2em;
            color: #555;
            margin-top: 5px;
            transition: height 0.3s ease;
            margin-bottom: 0;
            overflow: hidden;
            margin: 0;
            height: 30px;
        }

        header.header-scrolled .tagline {
            height: 0;
            
        }

        .logo-title{
            width: 100%;
            margin: auto;
        }

        .hero {
            background: linear-gradient(to right, #6B21FC, #B593F5); /* Purple gradient */
            color: #ffffff;
            padding: 180px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3em;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn.primary {
            background-color: #6B21FC;
            color: #ffffff;
        }

        .btn.primary:hover {
            background-color: #5A1ADF;
            transform: translateY(-2px);
        }

        .btn.secondary {
            background-color: #22014B;
            color: #ffffff;
        }

        .btn.secondary:hover {
            background-color: #6b21fc;
            transform: translateY(-2px);
        }

        .button-box{
            display: flex;
            /* flex-direction: column; */
            gap: 20px;
            width: max-content;
            margin: auto;
        }


        .features-section {
            padding: 40px 0;
            background-color: #ffffff;
            text-align: center;
        }

        #intro{
            padding: 60px 0;
        }
        #features .logo{
            width: 287px;
            display: block;
            margin: 20px auto 0 auto;
        }

        .features-section h2 {
            font-size: 2.5em;
            margin-bottom: 50px;
            color: #925cf8;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-item {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .feature-item h3 {
            font-size: 1.6em;
            color: #6B21FC;
            margin-top: 0;
            display: flex;
            align-items: center;
            line-height: 1.15;
        }

        .feature-item .icon {
            margin-right: 18px;
            color: #6b21fc;
        }

        .feature-item p {
            font-size: 1.1em;
            color: #555;
        }

        .cta-section {
            background-color: #2C0161;
            color: #ffffff;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2em;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        footer {
            background-color: #22014B;
            color: #f4f7f6;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9em;
            position: relative;
        }

        #languageToggleContainer{
            position: absolute;
            top: 47px;
            left: 27px;
            transition: color .3s ease;
        }
        #languageToggleContainer:hover{
            color: #925cf8;
        }
        #languageToggleContainer>a:visited,
        #languageToggleContainer>a{
            cursor: pointer;
            color: inherit;
            text-decoration: none;
        }
        #languageToggleContainer>a>span{
            vertical-align: super;
        }





     .parallax-section {
            position: relative;
            height: auto;
            overflow: hidden;
        }

        #parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 200%; 
            background-size: cover;
            background-position: center;
            transition: transform 0.075s ease-out;
            z-index: 1; 
            will-change: transform;
            filter: saturate(0.7);
        }

        .parallax-section .parallax-content {
            position: relative;
            z-index: 2; 
            margin: 94px auto;
        }

        .scroll-section {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }







        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.2em;
            }
            .hero p {
                font-size: 1.1em;
            }
            .features-section h2, .cta-section h2 {
                font-size: 2em;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            #languageToggleContainer{
                margin: auto;
                position: relative;
                top: unset;
                left: unset;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 2em;
            }
            header .tagline {
                font-size: 0.84em;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h2 {
                font-size: 1.8em;
            }
            .hero p {
                font-size: 1em;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9em;
            }
            .features-section {
                padding: 50px 0;
            }
            .feature-item {
                padding: 20px;
            }
            .feature-item h3 {
                font-size: 1.4em;
            }
            .feature-item p {
                font-size: 1em;
            }
            .cta-section {
                padding: 50px 0;
            }
            .cta-section h2 {
                font-size: 1.8em;
            }
            .cta-section p {
                font-size: 1em;
            }
            .logo-title {
                width: auto;
            }
            #languageToggleContainer{
                margin: auto;
                position: relative;
                top: unset;
                left: unset;
            }
        }