@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import './responsive.css';
:root {
    --primary-color: #9ACD32;
    --bg-color: #000101;
    --heading-color: #FFFFFF;
    --text-color: #FFFFFFB2;
    --text-white-color: #FFFFFF;
    --theme-font-family: 'Space Grotesk', sans-serif;
    --menu-font-size: 16px;
    --menu-font-weight: 400;
    --menu-active-font-weight: 600;
    --footer-bg-color: #081212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--theme-font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
*,
*::before,
*::after {
    margin: 0;
    box-sizing: border-box;
}
/* Modern Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Vertical scrollbar width */
    height: 8px; /* Horizontal scrollbar height */
}

::-webkit-scrollbar-track {
    background: transparent; /* Invisible track */
}

::-webkit-scrollbar-thumb {
    background: #949494; /* Scrollbar color */
    border-radius: 4px; /* Rounded corners */
    transition: background 0.2s; /* Smooth hover effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa; /* Darker on hover */
}
.margin-top-active
{
    margin-top: 80px !important;
}
.sz-spacer{
    margin-top: 80px;
}
.sz-button
{
    display: flex;
    height: 42px;
    padding: 4px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 31px;
    border: 1px solid #ABFF00;
    background: linear-gradient(90deg, #93DA00 0%, #ABFF00 100%);
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    width: fit-content;
}
.sz-button:hover
{
    background: #000;
    border: 2px solid #FFFFFF33;
    color: #fff;
}
.sz-button:hover svg
{
    filter: invert(1);
}
.sz-redirect-link
{
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 0px 10px;
}
.sz-redirect-link img
{
    padding-left: 6px;
}
/*===========================
    Header 
===========================*/
.sz-header {
    background-color: var(--bg-color);
}
.sz-header-logo img
{
    margin-right: 20px;
    width: 155px;
}
.sz-header .nav {
    gap: 20px;
}
.sz-header .nav-link {
    font-family: var(--theme-font-family);
    font-size: var(--menu-font-size);
    font-style: normal;
    font-weight: var(--menu-font-weight);
    line-height: normal;
    color: var(--text-white-color);
}

.sz-header .nav-link:hover {
    color: var(--primary-color);
}

.sz-header .nav-link.active {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: var(--menu-active-font-weight);
    border-radius: 0px;
}
.sz-header .nav-link.active::after
{
    content: '';
    position: absolute;
    bottom: 16px;
    transform: translateX(-140%);
    background-color: var(--primary-color);
    height: 2px;
    width: 50px;
}
/*==========================
    Video Hero Section
============================*/
.sz-video-background-container {
  position: relative;
  width: 100%;
  height: 465px; /* or 450px if you want fixed height */
  overflow: hidden;
}
.sz-video-background-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
  z-index: 0;
}
/* Background video */
.sz-video-hero-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Content overlay */
.sz-video-bg-content-container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.sz-video-hero-title
{
    color: #FFF;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-video-hero-para
{
    color: #FFFFFFB2;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
 }
.sz-d-flex-hero
{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.sz-video-bg-hero-section-bottom
{
    position: relative;
    margin-top: -44px;
}
.sz-video-bg-hero-section-bottom-bg
{
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #454B4C;
    background: transparent;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
}
.sz-video-bg-hero-section-bottom .border-light
{
    border-color: #454B4C !important;
}
.sz-video-bg-hero-section-bottom-content-para
{
    color: #ffffffb3;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
/* =============================
    Experience Events
============================== */
.sz-experience-event-container
{
    padding: 90px 0px;
    background-color: #080F0D;
}
.sz-experience-event-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-experience-event-title span
{
    color: var(--primary-color);
}
.sz-experience-event-para
{
    color: #FFFFFFB2;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-experience-order-list
{
    padding: 0px;
    list-style: none;
    margin-top: 40px;
}
.sz-experience-order-list li
{
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    border: 1.5px solid #282D2C;
    margin-bottom: 16px;
}
.sz-experience-list-title
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.sz-experience-list-para
{
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-experience-bg-container
{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.sz-experience-video
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
    aspect-ratio: 450 / 450; /* 16:9 aspect ratio */
    mask-image: url('../img/experience-bg-circle.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-image: url('../img/experience-bg-circle.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.sz-experience-content
{
    position: relative;
    z-index: 1;
}
/* =======================
        Get the App
======================== */
.sz-get-app-video-bg
{
    position: relative;
    width: 100%;
    height: 350px;
}
.sz-get-app-video-bg::after
{
    content: ' ';
    position: absolute;
    width: 100%;
    height: 351px;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%);
}
.sz-get-app-video
{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}
.sz-get-app-content
{
    position: relative;
    z-index: 1;
    top: 30%;
    left: 0;
    width: 100%;
}
.sz-get-app-title
{
    color: #FFF;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-get-app-title span
{
    color: var(--primary-color);
}
.sz-get-app-para
{
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-get-app-link
{
    margin-top: 10px;
}
.sz-get-app-link:hover
{
    opacity: 0.8;
}

/* ====================================
    For Oganizer Manage Your Event
======================================== */
.sz-for-organizer-events-container
{
    padding: 90px 0px;
}
.sz-for-organizer-events-badge
{
    padding: 8px 20px;
    border-radius: 39px;
    border: 1.5px solid #2B3D14;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    width: 190px;
    color: var(--primary-color);
    font-family: var(--primary-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.sz-for-organizer-events-badge .sz-for-organizer-events-circle
{
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50px;
}
.sz-for-organizer-events-title
{
    color: #FFF;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 10px 0px;
}
.sz-for-organizer-events-title span
{
    color: var(--primary-color);
}
.sz-for-organizer-events-para
{
    color: #FFFFFFB2;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-for-organizer-events-bg-box
{
    display: flex;
    padding: 28px 0 0 22px;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    box-shadow: 0 0 36px 24px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    max-height: 100%;
    width: 100%;
    overflow: hidden;
}
.sz-for-organizer-events-bg-box.green-color
{
     background: #DEFF99;
}
.sz-for-organizer-events-bg-box.purble-color
{
     background: #B899FF;
}
.sz-for-organizer-events-bg-box.blue-color
{
     background: #99C2FF;
}
.sz-for-organizer-events-bg-box img {
  display: block;
  width: 100%;
  height: auto;
  border-top-left-radius: 18px;
  will-change: transform;
  animation: moveImage 3s ease-in-out infinite alternate;
  animation-fill-mode: both;
  transition: transform 0.6s ease-in-out; /* smooth animation */
  transform: translate(0, 0) scale(1);   /* base state */
}
.sz-for-organizer-events-content-box
{
    text-decoration: none;
}
.sz-for-organizer-events-content-box:hover .sz-for-organizer-events-bg-box img
{
     transform: translate(10px, 0px) scale(1.1);
}
/* Keyframes for smooth movement */
/* 
@keyframes moveImage {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10px, 0px) scale(1.1);
  }
}
 */

.sz-for-organizer-events-content-box-title
{
    color: #FFF;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 16px;
}
.sz-for-organizer-events-content-box-para
{
    color: #FFFFFFB2;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* ===========================
    Why Openseatz
=============================== */
.sz-why-openseatz-container-bg-image
{
    background-image: url('../img/bgImage-why-openseatz.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
}
.sz-why-openseatz-container-bg-image::before
{
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: #000;
}
.sz-why-openseatz-container
{
    padding: 90px 0px;
    position: relative;
    z-index: 1;
}
.sz-why-openseatz-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-why-openseatz-title span
{
    color: var(--primary-color);
}
.sz-why-openseatz-para
{
    color: #FFFFFFB2;
    font-family: "Space Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-why-openseatz-iconbox
{
    display: flex;
    width: 70px;
    height: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    background: rgba(154, 205, 50, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
}
.sz-why-openseatz-iconbox img
{
    width: 38px;
    height: 38px;
}
.sz-why-openseatz-icon-list-title
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 16px 0px;
}
.sz-why-openseatz-icon-list-para
{
    color: #FFFFFFB2;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-why-openseatz-icon-list:hover .sz-why-openseatz-icon-list-title,
.sz-why-openseatz-icon-list:hover .sz-why-openseatz-icon-list-para
{
    color: var(--primary-color);
}

/* ============================
    Book Your Tickets
============================== */

.sz-book-your-tickets {
    position: relative;
    padding-top: 40px;
}

.sz-book-your-tickets-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sz-book-your-tickets-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Optional: use standard aspect ratio */
    mask-image: url('../img/book-tickets-circle.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-image: url('../img/book-tickets-circle.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.sz-book-your-tickets-contents {
    position: relative; /* Changed from absolute to relative */
    z-index: 1;
}
.sz-book-your-tickets-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-book-your-tickets-para
{
    color: #FFFFFFB2;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* ==========================
        App Features
============================ */
.sz-app-feature-banner
{
    position: relative;
    padding: 30px 0px;
}
.sz-app-feature-banner-video-bg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.sz-app-feature-banner-video
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Optional: use standard aspect ratio */
    mask-image: url('../img/book-tickets-circle.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-image: url('../img/book-tickets-circle.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.sz-app-feature-banner-content
{
    position: relative;
    z-index: 1;
}
.sz-app-feature-banner-content-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.sz-app-feature-banner-content-para
{
    color: #ffffffb3;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
}
.sz-app-feature-banner-content-span
{
     color: #ffffffb3;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/*===========================
        Features Section
===========================*/
.sz-features{
   padding-top: 50px;
}
.sz-features .sz-features-title
{
    color: var(--text-white-color);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.sz-features .sz-features-title span
{
    color: var(--primary-color);
}
.sz-features .sz-features-para
{
    color: var(--text-color);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size:  18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 800px;
    margin:auto

}
.sz-features-content-list
{
    margin-bottom: 40px;
}
.sz-features-content-list .sz-features-list-title
{
    color: var(--text-color);
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
    opacity: 0.6;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sz-features-content-list.sz-active-list .sz-features-list-title
{
    color:var(--text-white-color);
    opacity: 1;
}
.sz-features-content-list .sz-features-list-para
{
    color: var(--text-color);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* max-width: 365.719px; */
    opacity: 0.6;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sz-features-content-list.sz-active-list .sz-features-list-para
{
    color:var(--text-white-color);
    opacity: 1;
}
.sz-features-icon-box
{
    display: flex;
    width: 70px;
    height: 70px;
    padding: 16px 26px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgb(154 205 50 / 11%);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    margin-bottom: 16px;
}
.sz-features-icon-box img
{
    width: 38px;
    height: 38px;
}
.sz-active-list .sz-features-icon-box
{
     background: rgb(154 205 50 / 18%);
}
/*==================================
    Booking Made Simple
===================================*/
.sz-main-functionality
{
    padding: 90px 0px;
    position: relative;
}
.sz-main-functionality-banner-video-bg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.sz-main-functionality-banner-video
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Optional: use standard aspect ratio */
    mask-image: url('../img/circle-video-mask.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-image: url('../img/circle-video-mask.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.sz-main-functionality-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 10px;
}
.sz-main-functionality-title span
{
    color: var(--primary-color);
}
.sz-main-functionality-para
{
    color: #ffffffb3;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-main-functionality-box-order-list
{
    list-style: none;
    padding: 0px;
}
.sz-main-functionality-box-order-list li
{
    border-radius: 15px;
    border: 1px solid #404245;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}
.sz-main-functionality-list-number-circle
{
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 31px;
    background: #FFF;
}
.sz-main-functionality-list-title
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-main-functionality-content
{
    padding: 20px;
}
.sz-main-functionality-box-order-list li.active
{
    border-radius: 15px;
    border: 1px solid #9ACD32;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    padding: 0px;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.sz-main-functionality-box-order-list li.active .sz-main-functionality-list-number-circle
{
    background-color: var(--primary-color);
    height: 45px;
    width: 45px;
    margin-bottom: 10px;
    font-size: 16px;
}
.sz-main-functionality-list-para
{
    color: #FFFFFFB2;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}
.sz-main-functionality-progress
{
    height: 5px !important;
    background-color: #363636;
}
.progress-bar
{
    background-color: var(--primary-color);
}
/* ===============================
   Events made simple. Always.
=============================== */
.sz-org-event-made-simple-container
{
    padding: 60px 0px;
}
.sz-org-event-made-simple-video-container
{
    position: relative;
}
.sz-org-event-made-simple-video
{
    width: 100%;
    height: 150%;
    object-fit: cover;
    mask-image: url('../img/circle-video-mask.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-image: url('../img/circle-video-mask.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    position: absolute;
    top: -50px;
}
.sz-org-event-made-simple-content
{
    position: relative;
}
.sz-org-event-made-simple-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-org-event-made-simple-sub-title
{
    color: var(--primary-color);
    font-family: var(--theme-font-family);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-style: italic;
    margin-top: 15px;
}
.sz-org-event-made-simple-para
{
    color: var(--text-color);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
}
/* =============================
    Feature Highlights
=============================== */
.sz-feature-hightlights-container
{
    padding: 40px 0px;
}
.sz-feature-hightlights-title
{
    color: var(--text-white-color);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-feature-hightlights-title span
{
    color: var(--primary-color);
}
.sz-feature-hightlights-para
{
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-feature-hightlights-icon-box
{
    display: flex;
    width: 80px;
    height: 80px;
    padding: 16px 26px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    background: #9acd321c;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    margin-bottom: 16px;
}
.sz-feature-hightlights-icon-box img
{
    width: 45px;
    height: 45px;
}
.sz-feature-hightlights-content-title
{
    color: var(--text-white-color);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-feature-hightlights-content-para
{
    color: var(--text-color);
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* =======================
    Request Form
========================== */
.sz-request-form-container
{
    padding: 40px 0px;
}
.sz-request-form-title
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.sz-request-form-title span
{
    color: var(--primary-color);
}
.sz-request-form-para, .sz-request-form-bottom-para
{
    color: #ffffffb3;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-request-form-box
{
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
}
.sz-form-control-label
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.sz-form-control
{
    border-radius: 15px;
    border: 1px solid #2C3722 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10) !important;
    backdrop-filter: blur(50px);
    padding: 20px 12px;
    height: 48px;
    color: var(--text-color) !important;
}
.sz-form-control-textarea
{
    border-radius: 15px;
    border: 1px solid #2C3722 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10) !important;
    backdrop-filter: blur(50px);
    padding: 20px 12px;
    color: var(--text-color) !important;
}
.sz-form-control-select
{
    width: 100%;
    height: 48px;
    padding: 10px 12px;
     border-radius: 15px;
    border: 1px solid #2C3722 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10) !important;
    backdrop-filter: blur(50px);
    color: var(--text-color) !important;
    transition: all 0.3s ease;
    appearance: none; /* hides default arrow in Chrome/Safari */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px;
    padding-right: 36px;
    color-scheme: dark;
}
/* On focus (when user clicks the select box) */
.sz-form-control-select:focus {
    border-color: #2C3722 !important; /* blue */
    box-shadow: 0 0 0 3px rgba(59, 131, 246, 0) !important;
    outline: none;
}

/* When an option is selected (not the placeholder) */
.sz-form-control-select:valid {
    border-color: #2C3722 !important;
}
/* Dropdown menu styling */
.sz-form-control-select option {
    background-color: #1a1a1a; /* dropdown background */
    color: #ffffff; /* text color inside dropdown */
}
/* Optional hover style for dropdown items (Chrome/Safari support only) */
.sz-form-control-select option:hover {
    background-color: #000000 !important;
    color: #fff;
}

input::placeholder {
  color: rgb(86, 86, 86) !important; /* Change this to your desired color */
}
.sz-hyper-link
{
    color: var(--primary-color);
    text-decoration: none;
}
.sz-hyper-link:hover
{
    text-decoration: underline;
}
/* ============================
        Explore industries
============================== */
.sz-explore-industry-container
{
    padding: 60px 0px;
}
.sz-explore-industry-badge
{
    display: flex;
    padding: 8px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 39px;
    border: 1px solid #679900;
    background: #151B19;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(50px);
    color: var(--primary-color);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}
.sz-explore-industry-title
{
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.sz-explore-industry-title span
{
    color: var(--primary-color);
}
.sz-explore-industry-image-box
{
    border-radius: 20px;
    border: 1px solid #9D9D9D;
    background: #0C0B0A;
    box-shadow: 0 0 36px 24px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    overflow: hidden;
    height: 250px;
}
.sz-explore-industry-image-box img
{
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.sz-explore-industry-image-title
{
    color: #FFF;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 19px;
}
.sz-explore-industry-image-para
{
    color: #FFFFFFB2;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
}
.sz-explore-industry-bottom-para
{
    color: #ffffffb3;
    text-align: center;
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-explore-industry-bottom-para span
{
    color: var(--primary-color);
}
/*===========================
        Footer
===========================*/
.sz-footer-logo
{
    width: 165px;
}
.sz-footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color);
    padding: 40px 0;
}
.sz-footer-divider-line1 {
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
    position: relative;
    z-index: 0;
}
.sz-footer-divider-line1::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    transform: rotate(40deg);
}
.sz-footer-divider-line2 {
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
    position: relative;
    z-index: 0;
}
.sz-footer-divider-line2::after {
    content: '';
    position: absolute;
    top: -4.5px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    transform: rotate(40deg);
}
.sz-footer-app-title
{
    color: var(--primary-color);
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
} 
.sz-footer-app-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sz-footer-app-branding-item
{
    display: flex;
    padding: 5.787px 20.254px;
    justify-content: center;
    align-items: center;
    gap: 10.369px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--bg-color);
    backdrop-filter: blur(4.7131147384643555px);
    text-decoration: none;
    border:1px solid #A6A6A6;
}
.sz-footer-app-branding-item:hover
{
    background-color: var(--primary-color);
}
.sz-footer-app-branding-item:hover .sz-footer-app-download-text,
.sz-footer-app-branding-item:hover .sz-footer-app-branding-text-bold
{
    color: #000;
}
.sz-footer-app-branding-item:hover img
{
    filter: invert(1) grayscale(1) brightness(0.5);
}
.sz-footer-app-download-text
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 9.645px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-footer-app-branding-text-bold
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 15.432px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.sz-footer-social-content
{
    margin-top: 40px;
}
.sz-footer-social-icons
{
    display: flex;
    gap: 20px;
}
.sz-footer-social-icon{
    text-decoration: none;
    display: flex;
    width: 49.43px;
    height: 49.43px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 49.43px;
    border: 0.989px solid #A6A6A6;
}
.sz-footer-social-icon:hover {
    background-color: var(--primary-color);
    border: 0.989px solid #A6A6A6;
}
.sz-footer-social-icon:hover svg {
   filter: invert(1);
}
.sz-quick-links
{
    list-style: none;
    padding: 0;
    margin: 0;
}
.sz-quick-links li {
    margin-bottom: 15px;
}
.sz-quick-links li a
{
    text-decoration: none;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sz-quick-links li a:hover {
    color: var(--primary-color);
}
.sz-footer-get-in-touch-title
{
    color: var(--primary-color);
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 157%; /* 40.82px */
    margin-bottom: 10px;
}
.sz-footer-get-in-touch-list
{
    display: flex;
    gap: 2px;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 157%; /* 25.12px */
}
.sz-footer-get-in-touch-small-title
{
    flex-shrink: 0;
}
.sz-footer-get-in-touch-list a
{
    text-decoration: none;
    color: var(--text-white-color);
    padding-left: 4px;
}
.sz-footer-get-in-touch-list a:hover
{
    color: var(--primary-color);
    text-decoration: underline;
}
.float-right
{
    float: right;
}
.sz-footor-bottom
{
    margin-top: 60px;
    margin-bottom: 15px;
}
.sz-footer-bottom-text, .sz-footer-bottom-text-para
{
    text-decoration: none;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.75;
}
.sz-footer-bottom-text:hover
{
    color: var(--primary-color);
}
.sz-footer-border
{
    background-color: #FFFFFF33;
    width: 100%;
    height: 1px;
    margin: 50px 0px;
}


/*===========================
   Privacy Policy
===========================*/
.sz-privacy-policy-content .sz-privacy-policy-title
{
    font-size: 30px;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    margin-bottom: 20px;
}
.sz-privacy-policy-date
{
    margin-bottom: 5px;
}
.sz-privacy-policy-date strong
{
    color: var(--text-white-color);
}
.sz-privacy-policy-contact a
{
    text-decoration: none;
    color: var(--text-white-color);
}
.sz-privacy-policy-contact a:hover
{
    color: var(--primary-color);
    text-decoration: underline;
}
.sz-privacy-policy-content h2
{
    font-size: 22px;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    margin-bottom: 15px;
}
.sz-privacy-policy-content p
{
    font-size: 16px;
}
.sz-privacy-policy-list-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
}
.sz-privacy-policy-ul-list li
{
    margin-bottom: 5px;
}
/*===========================
Delete Your Account
==============================*/
.sz-delete-account-content .sz-delete-account-title
{
    font-size: 30px;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    margin-bottom: 20px;
}
.sz-delete-account-date
{
    margin-bottom: 5px;
}
.sz-delete-account-date strong
{
    color: var(--text-white-color);
}
.sz-delete-account-contact a
{
    text-decoration: none;
    color: var(--text-white-color);
}
.sz-delete-account-contact a:hover
{
    color: var(--primary-color);
    text-decoration: underline;
}
.sz-delete-account-content h2
{
    font-size: 22px;
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    margin-bottom: 15px;
}
.sz-delete-account-content p
{
    font-size: 16px;
}
.sz-delete-account-list-title
{
    color: var(--text-white-color);
    font-family: var(--theme-font-family);
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
}
.sz-delete-account-ul-list li
{
    margin-bottom: 5px;
}
.sz-delete-account-list-small-title
{
    color: var(--text-white-color) !important;
}
.sz-para-link
{
    text-decoration: none;
    color: var(--text-white-color) !important;
}
.sz-para-link:hover
{
    color: var(--primary-color) !important;
    text-decoration: underline;
}
.sz-para-content strong
{
    color: var(--text-white-color);
}
/* =====Mouse Spot light=== */
.target
{
    position: relative;
}
.mousefocus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* cover full screen */
    pointer-events: none;
    z-index: 9999;
}