.two-column-section5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    padding-top: 7rem;
}

.column15 {
    flex: 1;
    text-align: center;
}

.text-content5 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empower-text5 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hello-text5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.buttons5 {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.a5,
.a6 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    /* Blue color for buttons */
    transition: background-color 0.3s;
}

.a5:hover,
.a6:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

.column-video5 {
    flex: 1;
    position: relative;
}

.responsive-video5 {
    width: 100%;
    height: auto;
    box-shadow: inset -10px 0 15px rgba(0, 0, 0, 0.8);
    /* Darker inner shadow on the left side */
}


.fallback-image5 {
    display: none;
    width: 100%;
    height: auto;
}

/* Mobile View */
@media (max-width: 768px) {
    .two-column-section5 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        background-image: url('/assets/shutterstock_1153763470.jpg');
        /* Set image as background */
        background-size: cover;
        /* Cover the entire section */
        background-position: center;
        /* Center the background image */
        height: 100vh;
        /* Full viewport height */
    }

    .text-content5 {
        z-index: 1;
        text-align: center;
        color: white;
        /* Ensure text is visible on the background */
        padding-top: 10rem;
    }

    .buttons5 {
        flex-direction: column;
        align-items: center;
    }

    .column-video5 {
        display: none;
        /* Hide the video container on mobile */
    }

    .fallback-image5 {
        display: none;
        /* Ensure fallback image stays hidden */
    }
}


/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

.modal5 {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 92.5vw;
    /* Full width of viewport */
    height: 100vh;
    /* Full height of viewport */
    overflow: hidden;
    /* Prevent scrolling */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black with opacity */
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .modal5 {
        width: 95vw;
        /* 90% of viewport width for mobile */
    }
}

.modal-content5 {
    position: absolute;
    /* Positioned relative to the modal */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the modal content */
    width: 90vw;
    /* Full width of viewport with margin */
    height: 35rem;
    /* Height adjusts based on content */
    max-width: 400px;
    /* Max width for larger screens */
    max-height: 90vh;
    /* Max height to avoid going off-screen */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-image {
    width: 100%;
    height: 31.9rem;
    /* Maintain aspect ratio */
    display: block;
}

.close1 {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.register-button5.button5 {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: background-color 0.3s;
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
}

.register-button5.button5:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    .modal-content5 {
        width: 95vw;
        /* Adjust width for smaller screens */
        max-height: 80vh;
        /* Adjust height for smaller screens */
    }
}


body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(25 27 39);
}

header {
    position: fixed;
    top: 20px;
    left: 50px;
    right: 50px;
    width: calc(100% - 100px);
    /* Adjust width considering gaps */
    display: flex;
    justify-content: space-between;
    /* Ensures content spreads out within header */
    align-items: center;
    padding: 15px;
    background-color: rgba(255 255 255 / 92%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
    border: .5px solid white;
    border-radius: 1rem;

}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.logo img {
    max-height: 5rem;
    width: 10rem;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav {
    display: flex;
    justify-content: center;
    flex: 1;
    /* background-color: #333; Background color for nav */
}

.nav-links {
    list-style: none;
    /* Removes bullets */
    display: flex;
    gap: 20px;
    /* Space between links */
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    padding: 8px 12px;
    display: block;
    /* Ensure clickable area is full size of padding */
    white-space: nowrap;
    /* Prevent text from wrapping */
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

.nav-links a:hover {
    color: #F2921D;
    /* Color on hover */
}

/* Basic Dropdown Menu Styles */
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    /* width: 160px; Adjust width as needed */
}

.nav-links .dropdown-menu li {
    margin: 0;
}

.nav-links .dropdown-menu a {
    color: #fff;
    /* Ensure dropdown links have white text */
    padding: 8px 12px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

.nav-links .dropdown-menu a:hover {
    color: #F2921D;
    /* Color on hover */
}

/* Desktop: Show dropdown on hover */
.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links .dropdown-menu {
        position: static;
        /* Position relative to the dropdown parent */
        width: 100%;
        /* Full width on mobile */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Optional: Add shadow for better visibility */
    }

    .nav-links .dropdown-menu a {
        padding: 12px;
        /* Increase padding for easier tapping */
        font-size: 16px;
        /* Adjust as needed */
    }

    /* Show dropdown on click for mobile */
    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
}


/* Optionally, for right alignment */
.cta-buttons1 {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    /* Aligns buttons to the right */
}

/* Ensure the button itself is not centered independently */
.cta-buttons1 .btn {
    font-family: "Barlow", Sans-serif;
    font-size: 10px; /* Smaller font size */
    font-weight: 600;
    text-transform: none;
    line-height: 16px; /* Adjust line height to fit text */
    color: #FFFFFF;
    background-color: transparent;
    background-image: linear-gradient(187deg, #636FDD 4.63%, #2F23B7 94.23%);
    border: none; /* No border */
    border-radius: 20px; /* Smaller rounded corners */
    padding: 4px 10px; /* Reduced padding */
    text-decoration: none; /* Remove underline */
    display: inline-block;
    white-space: nowrap; /* Ensure text stays on one line */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
}

@media (max-width: 768px) {
    .cta-buttons1 .btn {
        font-size: 9px; /* Smaller font size for mobile view */
        padding: 7px 15px; /* Adjust padding to keep proportions */
    }
}
.cta-buttons1 .btn:hover {
    background-image: linear-gradient(187deg, #2F23B7 4.63%, #636FDD 94.23%); /* Reverse the gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Moves button slightly up on hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    position: relative;
    /* Changed to relative for proper positioning */
    z-index: 1001;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin-bottom: 4px;
    border-radius: 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: linear-gradient(to right, rgb(173, 83, 137), rgb(60, 16, 83));
    color: #fff;
    border: none;
    padding: 10px;
    /* border-radius: 5px; */
    cursor: pointer;
}

button:hover {
    background-image: linear-gradient(187deg, #2F23B7 4.63%, #636FDD 94.23%); /* Reverse the gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Moves button slightly up on hover */
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    padding: 100px 20px;
    /* background: rgba(0, 0, 0, 0.5); */
    /* Semi-transparent background for better text visibility */
    background: rgba(255, 255, 255, 0.1);
    /* Semi-transparent background */
    backdrop-filter: blur(10px);
    /* Glass effect */
    border-radius: 10px;
    /* Optional: Rounding the corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Optional: Adding a shadow */
}

.headline {
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.5rem;
    margin: 20px 0;
    line-height: 1.5;
}

.buttons {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    /* Space between buttons */
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        /* Align items to start for mobile */
        gap: 10px;
        top: 10px;
        /* Adjusted top gap for mobile */
        left: 10px;
        /* Adjusted left gap for mobile */
        right: 10px;
        /* Adjusted right gap for mobile */
        width: calc(100% - 20px);
        /* Adjusted width for mobile */
    }

    .container {
        position: static;
        /* Remove absolute positioning for mobile */
        max-width: none;
    }

    .logo {
        position: static;
        /* Remove absolute positioning */
        margin-bottom: 10px;
    }

    .cta-buttons1 {
        display: flex;
        justify-content: flex-end;
        /* Aligns button to the right */
        width: 100%;
        /* Ensure full width */
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        /* Include padding and border in width */

    }

    /* .cta-buttons1 .btn {
        text-decoration: none;
        color: #fff;
        background-color: #451952;
        padding: 8px 12px;
        border-radius: 5px;
        font-weight: 600;
        margin: 1rem;
       
        width: 4rem;
        font-size: .8rem;
    } */

    .nav-links {
        display: none;
        /* Hide nav links initially */
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        /* Adjust top position if necessary */
        right: 0;
        width: 100%;
        padding: 20px;
        gap: 10px;
        align-items: center;
        /* Center nav items horizontally */
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        padding: 10px 15px;
        font-size: 16px;
        /* Adjust as needed */
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 10px;
    }

    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
        /* Stack buttons vertically on smaller screens */
        gap: 10px;
        /* Space between stacked buttons */
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}



.hero1-section {
    position: relative;
    overflow: hidden;
    height: 99vh;
    /* Full viewport height */
    display: flex;
    align-items: left;
    /* Center content vertically */
    justify-content: left;
    /* Center content horizontally */
}

.hero1-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero1-section img {
    display: none;
    /* Hide the image by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the image covers the section */
    z-index: 1;
}

.hero1-content {
    position: relative;
    /* Ensure proper positioning */
    text-align: left;
    color: rgb(250, 192, 0);
    padding: 200px 20px;
    z-index: 2;

}

.headline1 {
    color: #FFFFFF;
    font-family: "Barlow", Sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: none;
    line-height: 43px;
    letter-spacing: 0px;
}

.subheadline1 {
    font-size: 2rem;
    margin: 1rem 0;
    line-height: 1.4;
}

.buttons {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    color: white;
    transition: background-color 0.3s;
}

.btn-primary {
    background: linear-gradient(to right, rgb(173, 83, 137), rgb(60, 16, 83));
}

.btn-secondary {
    background: linear-gradient(to right, rgb(173, 83, 137), rgb(60, 16, 83));
}

.btn-primary:hover {
    background-image: linear-gradient(187deg, #2F23B7 4.63%, #636FDD 94.23%); /* Reverse the gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Moves button slightly up on hover */
}

.btn-secondary:hover {
     background-image: linear-gradient(187deg, #2F23B7 4.63%, #636FDD 94.23%); /* Reverse the gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Moves button slightly up on hover */
}

@media (max-width: 768px) {
    .hero1-section {
        height: auto;
        /* Adjust height for mobile */
    }

    .hero1-section video {
        display: none;
        /* Hide the video on mobile */
    }

    .hero1-section img {
        display: block;
        /* Show the image on mobile */
    }

    .hero1-content {
        padding: 9rem 20px 0;
        /* Add top padding and keep horizontal padding */
        text-align: center;
        position: relative;
        /* Ensure proper positioning */
    }

    .headline1 {
        font-size: 29px;
        line-height: 36px;
        /* Adjust line-height */
    }

    .subheadline1 {
        font-size: 1.2rem;
    }

    .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}



/* footer */
/* Footer Styles */
footer {
    background-color: #13162A;
    color: #fff;
    padding: 20px 45px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 2rem;
    padding-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    /* Minimum width for each column */
}

.footer-column h3 {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}
.footer-column p{
    font-family: "Barlow", Sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}
.location p {
    font-family: "Barlow", Sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F2921D;
}

.contact-icons {
    display: flex;
    flex-direction: column;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s;
}

.social-icon img:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #fff;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .contact-icons {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }
}

/* 
//sections */
 .section {
            padding: 20px;
            margin: 10px auto;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px); /* Blurs the content behind the element */
            -webkit-backdrop-filter: blur(10px); /* For Safari */
        }
        .section h2 {
            margin-bottom: 10px;
            color: #f7efef;
            text-align: center;
        }
        .section p {
            margin-bottom: 15px;
            color: #d1caca;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section {
                padding: 15px;
            }
            .section h2 {
                font-size: 1.2em;
            }
            .section p {
                font-size: 1em;
            }
        }


/* VR/AR Solutions Section */
.vr-ar-solutions {
    background-image: url('your-background-image-path.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
}

.vr-ar-solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.vr-ar-content {
    position: relative;
    z-index: 2;
}

.vr-ar-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vr-ar-content p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vr-ar-content h1 {
        font-size: 2rem;
    }

    .vr-ar-content p {
        font-size: 1.2rem;
    }
}

/* General styles for image section */
/* General styles for image section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    background-color: rgb(25, 27, 39);
    padding: 20px; /* Adds padding for better spacing on mobile */
    border: 5px solid transparent; /* Initial transparent border */
    transition: border-color 0.3s ease-in-out; /* Smooth transition for border */
}

/* Image styles */
.image {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0; /* Start with the image invisible */
    transform: translateY(40px); /* Slightly move the image down */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth animation */
}

/* Mobile styles */
@media (max-width: 767px) {
    .image-section {
        height: 300px; /* Adjust height for smaller screens */
        padding: 10px; /* Adjust padding for mobile */
    }

    .image {
        width: 100%;
        height: auto; /* Ensure image maintains aspect ratio */
    }
}

/* Desktop styles */
@media (min-width: 768px) {
    .image-section {
        height: 400px; /* Adjust height for larger screens */
    }

    .image {
        width: auto; /* Adjust width for larger screens */
        height: auto; /* Maintain aspect ratio */
    }
}

/* Animation when in view */

.image-section.in-view .image {
    opacity: 1; /* Fade in the image */
    transform: translateY(0); /* Move the image to its original position */
}

