footer {
    background-color: #0E0E1500;
    padding: 20px;
    text-align: center;
    color: #F7F7F7;
    font-size: 12px;
    position: relative;
    z-index: 1; /* Ensure the footer stays above any background elements */
    margin-top: auto; /* Push the footer to the bottom */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #13151A, #0E0E15); /* Fallback background color */
    color: #F7F7F7;
    position: relative;
    overflow-x: hidden; /* Prevents scrollbar from appearing due to SVG */
}

#content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    z-index: 2; /* Content is above the line */
}

#lightning-bolt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Set a negative z-index to ensure it's at the bottom */
    pointer-events: none; /* Allows interaction with elements above the SVG */
}

.banner-panel {
    height: 80px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background: transparent; 
    margin-bottom: 50px;
}

.banner-logo {
    height: 75px; /* Scaled-down logo size */
    margin-right: 45px; /* Default margin for left-to-right order */
}

.banner-button {
    font-family: 'Montserrat', sans-serif;
    color: #6a6a6a;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 45px; /* Left-to-right order */
    user-select: none;
}

.banner-button:hover {
    color: #FFC617; /* Orange accent on hover */
}

.banner-button:active {
    color: #F8E43D; /* Yellow accent on click */
}

/* Container for right-to-left elements */
.rtl-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.rtl-container > * {
    margin-left: 24px;
}

.rtl-container > *:first-child {
    margin-left: 0; /* No left margin for the first right-to-left element */
}

.image-button-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
}

.image-button {
    cursor: pointer;
    transition: fill 0.3s ease;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    fill: #F7F7F7; /* Default white color */
}

.image-button:hover {
    fill: #FFC617; /* Orange accent on hover */
}

.image-button:active {
    fill: #F8E43D; /* Yellow accent on click */
}

.download-button {
    width: 200px;
    height: 40px;
    background-color: #FFC617; /* Default color */
    color: #13151A;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 2px;
    user-select: none;
}

.download-button:hover {
    background-color: #E1A823; /* Orange accent on hover */
}

.download-button:active {
    background-color: #F8E43D; /* Yellow accent on click */
}

.body-panel {
    padding: 30px 0; /* Top and bottom padding only */
    background-color: transparent; /* Make the panel background transparent */
    width: calc(60%); /* Make the panel width 60% of the page */
    margin: 0 auto; 
    /* Center the panel horizontally */
    /* text-align: center; */
}

.body-panel-title {
    font-size: 45px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background: linear-gradient(to right, #E6A404, #F8E43D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #E6A404; /* Fallback color */
    margin-bottom: 30px; /* Space between title and body */
}

.body-panel-body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #F7F7F7; /* White color */
    margin-bottom: 30px; /* Space between body and call to action */
    line-height: 1.5;
}

.body-panel-action {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background: linear-gradient(to right, #E6A404, #F8E43D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #E6A404; /* Fallback color */
    margin-bottom: 30px;
}

.custom-download-button {
    width: 300px;
    height: 40px;
    display: inline-flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #E6A404, #BEB033); /* Your gradient */
    color: #F7F7F7;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.button-text {
    color: #f7f7f7;
}

.custom-download-button:hover {
    background: linear-gradient(to right, #F8E43D, #BEB033); /* Invert gradient on hover */
}

.custom-download-button:active {
    background: linear-gradient(to right, #E6B800, #E8D300); /* Darker gradient on click */
}

.sub-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;  /* Width of the sub-buttons */
    height: 35px;  /* Height of the sub-buttons */
    margin-top: 10px; /* Space between the buttons */
    margin-right: 10px; /* Space between the sub-buttons */
    padding: 8px 12px;
    background: linear-gradient(to right, #996C03, #664802); /* Darker gradient */
    color: #C1A927;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;  /* Smaller font size */
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.svg-icon {
    width: 16px;
    height: 16px;
    fill: #C1A927;
    margin-right: 8px;
    transition: fill 0.3s ease;
}

.sub-button:hover {
    background: linear-gradient(to right, #9A6E03, #9A6E03); /* Invert gradient on hover */
}

.sub-button:active {
    background: linear-gradient(to right, #684B06, #9A6D03); /* Darker gradient on click */
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px; /* Space above the buttons */
}

.sub-button-container {
    display: flex;
    justify-content: flex-start; /* Align sub-buttons to the left */
    margin-top: 0px; /* Space between the main and sub-buttons */
}

/* Support Form Styles */
.support-form {
    width: 60%;
    margin: 0 auto; /* Center the form */
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.support-form button {
    /*margin-top: 50px;  20px space from the last input container */
    margin-top: 30px; /* 20px space from the last input container */
    align-self: center; /* Center the button horizontally */
    width: 50%; /* Optional: Adjust the width of the button as needed */
}

.input-container {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    border: 2px solid #6a6a6a;
    background: none;
    color: #E1A823;
    font-size: 1rem;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #E1A823;
}

input[type="text"]:focus + label,
input[type="email"]:focus + label,
textarea:focus + label,
input.not-empty + label {
    top: -8px;
    left: 10px;
    background-color: rgba(23, 26, 23, 0.9);
    padding: 0 5px;
    font-size: 0.9rem;
    color: #E1A823;
    transform: translateY(0);
}

input[type="text"]:not(:focus).placeholder-shown + label,
input[type="email"]:not(:focus).placeholder-shown + label,
textarea:not(:focus).placeholder-shown + label {
    top: 50%;
    left: 10px;
    font-size: 1rem;
    color: #6a6a6a;
    transform: translateY(-50%);
}

label {
    position: absolute;
    font-size: 1rem;
    color: #6a6a6a;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s ease;
    user-select: none;
}

textarea {
    resize: none;
    height: 100px; /* Adjust height for textarea */
}

input.not-empty,
textarea.not-empty {
    color: #E1A823;
}

.custom-button {
    width: 300px;
    height: 40px;
    display: inline-flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #E6A404, #BEB033); /* Your gradient */
    color: #F7F7F7;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.custom-button:hover {
    background: linear-gradient(to right, #F8E43D, #BEB033); /* Invert gradient on hover */
}

.custom-button:active {
    background: linear-gradient(to right, #E6B800, #E8D300); /* Darker gradient on click */
}

/* Container for title and body */
.custom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center text inside */
    padding: 20px; /* Optional: Add padding inside the container */
}

/* Custom title styles */
.custom-title {
    font-size: 45px; /* Adjust the font size as needed */
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #FFC617; /* Custom color */
    margin-bottom: 20px; /* Space between title and body */
    line-height: 1.2; /* Adjust line height for better readability */
}

/* Custom body styles */
.custom-body {
    font-size: 18px; /* Same font size as the title */
    font-family: 'Montserrat', sans-serif;
    color: #F7F7F7; /* Custom color */
    margin-bottom: 50px; /* Optional: Add space after the body */
    line-height: 1.5; /* Adjust line height for better readability */
}
.d-none{display: none;}
.d-show {display: inherit; }
header {
  position: relative;
  background-color: #1C1C20;
  color: #f7f7f7;
  padding: 10px;
  display: flex;
  align-items: center;
}

.menu-toggle {
  background: none;
  border: none;
  color: #f7f7f7;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left:0;
  width: 250px;
  height: 100%;
  background-color: #1C1C20;
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #555;
}

.mobile-menu a {
  color: #f7f7f7;
  text-decoration: none;
  display: block;
  padding: 15px;
}

/* Close button styles */
.close-btn {
  background: none;
  border: none;
  color: #f7f7f7;
  font-size: 45px;
  padding: 15px;
  cursor: pointer;
  display: block;
  text-align: right;
  /* width: 100%; */
}

/* When menu is open */
.mobile-menu.open {
  left: 0;
}

/* Content styles */
.content {
  padding: 20px;
}
.top-menu-section {
    display: flex;
}
.top-menu-section img {
    height: auto;
    width: 60%;
}
.text-center{text-align: center !important;}
@media (max-width: 992px) {
  .d-none {
      display: inherit;
    }
  .d-show {
    display: none;
  }
  .body-panel{width: 90%;}
}
@media (max-width: 767px) {
    .support-form {
        width: 100% !important;
       
    }    
}
@media (max-width: 480px) {
  .sub-button-right{margin-right:0px;}
  a.sub-button {
    width: 50%;
}
  .custom-download-button{width: 100%;padding: 10px 0px;}
  .banner-logo{height:65px;}
  .download-button{  
    width: 100%;
    height: 30px;
    font-size: 11px;
    padding: 0 6px;
    margin-left: 10px;
 }
  .banner-logo{margin-right: 0;}

}
@media (max-width: 350px) {
.rtl-container{    margin-left: 5px;}
.download-button{ font-size: 10px;}
}