@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
  
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background: #000;
            color: white;
        }

        html {
            scroll-behavior: smooth;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: #000;
            color: white;
            position: relative;
        }
        .logo-header {
            height: 55px;
            padding: 5px;
        }
        .menu-icon {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            position: absolute;
            right: 1rem;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            padding: 0;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        .text-center {
            text-align: center;
            padding: 3rem;
            background: #000;
            color: white;
        }

        .hero {
            position: relative;
            height: 60vh; /* Almost full-screen on desktop */
            background: url("assets/single-hand-low.jpg") no-repeat center center;
            background-size: cover; /* Ensures the image covers the full area */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem;
            color: white;
        }
         .hero-content {
            max-width: 800px;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.5); /* Subtle dark overlay for better readability */
            border-radius: 12px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Ensures it is centered */
        }
        
        .hero .cta-button, .menu .cta-button, .cta-section .cta-button, .contact-form .cta-button, .press-form .cta-button {
            padding: 12px 24px;
            margin-top: 1rem;
            background: #9A4DDD;
            color: white;
            border: none;
            cursor: pointer;
            font-family: Montserrat;
            font-style: normal;
            font-weight: 700;
            border-radius: 100px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease-in-out;
        }
        
        .hero .cta-button:hover, .menu .cta-button:hover, .cta-section .cta-button:hover, .contact-form .cta-button, .press-form .cta-button {
            background: #8138B8;
        }
        
        .mist-section {
            position: relative;
            height: 60vh; /* Almost full-screen on desktop */
            background: url("assets/cyber-security.png") no-repeat center center;
            background-size: cover; /* Ensures the image covers the full area */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem;
            color: white;
        }
        .mist-container {
            max-width: 800px;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.5); /* Subtle dark overlay for better readability */
            border-radius: 12px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Ensures it is centered */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px; /* Adds space between the buttons */
            margin-top: 1rem;
        }
        .mist-container h2{
            margin-bottom: 0px;
        }

        .cta-section {
            position: relative;
            height: 60vh; /* Almost full-screen on desktop */
            background: url("assets/two-hands-low.jpg") no-repeat center center;
            background-size: cover; /* Ensures the image covers the full area */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem;
            color: white;
        }
        .cta-container {
            max-width: 800px;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.5); /* Subtle dark overlay for better readability */
            border-radius: 12px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Ensures it is centered */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px; /* Adds space between the buttons */
            margin-top: 1rem;
        }



        .pic-right-text-left, .pic-left-text-right {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3rem;
            background: #000;
        }
        .pic-right-text-left .text, .pic-left-text-right .text {
            width: 50%;
            color: white;
            flex-shrink: 0;
        }

        .image-container {
            width: 45%; /* Matches previous placeholder behavior */
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container img {
            width: 100%; /* Ensures full width inside container */
            max-width: 100%;
            height: auto;
            object-fit: contain; /* Ensures the whole image fits */
        }


        .pic-left-text-right .image-container img {
            width: 70%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pic-right-text-left .image-container {
            width: 45%; /* Matches previous placeholder behavior */
            max-width: 100%; /* Keeps the GIF responsive */
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .comparison {
            padding: 4rem;
            text-align: center;
            background: #000;
            color: white
        }
        .comparison-flex {
            display: flex;
            justify-content: space-between; /* Ensures even spacing */
            align-items: center;
            gap: 40px; /* More space for better balance */
            max-width: 1200px; /* Prevents content from stretching too wide */
            margin: auto; /* Centers everything */
    }
        .comparison-item {
            width: 30%; /* Ensures both text blocks are the same width */
            text-align: center; /* Keeps text aligned properly */
    }
        .comparison-flex .image-container {
            width: 35%; /* Keeps image proportional */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .comparison-flex .image-container img {
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
    }



        footer {
            text-align: left;
            padding: 1.5rem;
            background: #9A4DDD;
            color: white;
        }
        .social-links a {
            margin-right: 15px;
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        
        .partners {
            text-align: center;
            padding: 3rem 0;
            background: #fff;
        }
        .partners h2 {
            margin-bottom: 20px;
            color: #333;
        }
        .partner-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap; /* Allows wrapping for responsiveness */
        }
        .partner-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 180px; /* Ensures uniform width */
            text-align: center;
        }
        .partner-logo img {
            width: 100%; /* Makes sure images scale correctly */
            max-width: 120px; /* Keeps all logos at a consistent size */
            height: auto; /* Maintains aspect ratio */
            object-fit: contain; /* Ensures the entire logo fits without distortion */
}
        .partner-logo p {
            margin-top: 10px;
            font-size: 14px;
            color: #555;
            min-height: 40px; /* Ensures all captions have the same height */
        }

/* Contact Form Styling */
        .contact-form {
            background: #000;
            color: white;
            text-align: center;
            padding: 3rem;
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .contact-form p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #bbb;
        }

    /* Form Styling */
        form {
            max-width: 500px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

    /* Form Group */
        .form-group {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

    /* Input Fields */
        input, textarea {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            border: 2px solid #555;
            background: #111;
            color: white;
            border-radius: 10px;
            outline: none;
            transition: border-color 0.3s ease-in-out;
        }

    /* Placeholder Styling */
        input::placeholder,
        textarea::placeholder {
            color: #777;
        }

    /* Focus Animation */
        input:focus, textarea:focus {
            border-color: #9A4DDD;
        }

    /* Labels */
        label {
            font-size: 0.9rem;
            color: #bbb;
            margin-top: 5px;
        }

    /* Textarea Resizing */
        textarea {
            resize: vertical;
            min-height: 100px;
        }


    /* Press Form Styling */
.press-form {
    background: #000;
    color: white;
    text-align: center;
    padding: 3rem;
}

.press-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.press-form p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #bbb;
}

/* Form Styling */
#press-contact {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Group */
.press-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Input Fields */
#press-contact input, #press-contact textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #555;
    background: #111;
    color: white;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

/* Placeholder Styling */
#press-contact input::placeholder,
#press-contact textarea::placeholder {
    color: #777;
}

/* Focus Animation */
#press-contact input:focus, #press-contact textarea:focus {
    border-color: #9A4DDD;
}

/* Labels */
#press-contact label {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 5px;
}

/* Textarea Resizing */
#press-contact textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Disclaimer */
.press-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.9rem;
    color: #bbb;
}

.press-checkbox input {
    margin-top: 5px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}


     .privacy-link {
         color: #ddd; /* Subtle color that blends in but remains readable */
         font-size: 14px; /* Slightly smaller than the main text */
         margin-left: 15px; /* Adds spacing from the main text */
         text-decoration: none; /* Removes underline for a clean look */
         transition: color 0.3s ease-in-out;
}

    .privacy-link:hover {
        color: #fff; /* Slightly brighter on hover for visibility */
}


.privacy-policy {
    background: #000;
    color: white;
    padding: 4rem 2rem;
    text-align: left;
}

.privacy-policy .container {
    max-width: 800px;
    margin: auto;
}

.privacy-policy h1, .privacy-policy h2 {
    color: #9A4DDD;
    margin-bottom: 15px;
}

.privacy-policy h3 {
    color: #bbb;
    margin-top: 20px;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.privacy-policy ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #ccc;
}

.privacy-policy a {
    color: #9A4DDD;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.privacy-policy a:hover {
    color: #8138B8;
}


/*********************** NOBILE STYLING ***********************/

        
        @media (max-width: 768px) {
            .hero {
                 height: 60vh; /* Smaller screens get a shorter hero section */
                 padding: 1rem;
                 background-attachment: scroll; /* Prevents background from staying fixed */
            }
            .hero-content {
                width: 80%;
                padding: 0.9rem;
            }
            .hero h2 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            
            .mist-section {
                 height: 80vh; /* Smaller screens get a shorter hero section */
                 padding: 1rem;
                 background-attachment: scroll; /* Prevents background from staying fixed */
            }
            .mist-container {
                width: 80%;
                padding: 0.9rem;
            }
            .mist-container h2 {
                font-size: 1.5rem;
            }
            .mist-container p {
                font-size: 0.9rem;
            }
            
            .cta-section {
                 height: 60vh; /* Smaller screens get a shorter hero section */
                 padding: 1rem;
                 background-attachment: scroll; /* Prevents background from staying fixed */
            }
            .cta-container {
                width: 80%;
                padding: 0.9rem;
            }
            .cta-container h2 {
                font-size: 1.5rem;
            }
            
            .comparison-flex {
                flex-direction: column;
                text-align: center;
            }
            .comparison-item, .comparison-flex .image-container {
                width: 80%;
                text-align: center;
            }
            .pic-right-text-left {
                flex-direction: column;
                text-align: center;
            }
            .pic-left-text-right {
                flex-direction: column-reverse;
                text-align: center;
            }
            .pic-right-text-left .image-container, .pic-left-text-right .image-container {
                width: 100%;
            }
            .pic-right-text-left .text, .pic-left-text-right .text {
                width: 100%;
                color: white;
            }
            .menu-icon {
                display: block; /* Shows the hamburger icon */
            }
            nav ul {
                display: none; /* Hides the menu */
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #111;
                text-align: center;
                padding: 1rem 0;
                z-index: 1000; /* Ensures the menu stays above other elements */
            }
            nav ul.active {
                display: flex; /* Makes menu visible when active */
            }
            
            nav ul li {
                padding: 15px 0; /* Adds more spacing between menu items */
            }
            
            .partner-logos {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .partner-logo img {
                width: 100px;
            }
            
            form {
                max-width: 100%;
                padding: 0 1rem;
            }
            
            #press-contact {
                max-width: 100%;
                padding: 0 1rem;
            }
            .press-checkbox {
                align-items: flex-start;
            }
            .privacy-policy {
                padding: 3rem 1.5rem;
            }
            .privacy-policy .container {
                width: 100%;
            }
}
        }