@font-face {
  font-family: 'Bronzeage';
  src: url('Fonts/Bronzeage.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Bebas';
  src: url('Fonts/Bebas.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Reggae';
  src: url('Fonts/Reggae-one.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('Fonts/Roboto.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nova';
  src: url('Fonts/Nova-round.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Elite';
  src: url('Fonts/Special-elite.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --white-color: #FFFFFF;
  --color-1: #ffffff; /* white */
  --color-2: #d8ebfd;
  --color-3: #c5e0fc;
  --color-4: #b1d6fb;
  --color-5: #9eccfa;
  --color-6: #8bc2f9;
  --color-7: #77b8f8;
  --color-8: #64adf7;
  --color-9: #51a3f6;
  --color-10: #3d99f5;
  --color-11: #2a8ff4;
  --color-12: #1685f3;
  --color-13: #0c7ae9;
  --color-14: #0b70d5;
  --color-15: #095cae;
  --color-16: #2240c4; /* main */
  --color-17: #074788;
  --color-18: #063d74;
  --color-19: #053361;
  --color-20: #04294e;
  --color-21: #031f3a;
  --color-22: #021427;
  --color-23: #010a13;
  --black-color:  #000000; /* black */
  --text-hex: #303841;
  --the-yellow: #feb907;
  --gray-color: #313c4e;
  --gray-light-color: #e4e8ed;
  --blue-color: #264779;
  --main-rgba: rgba(34, 64, 196, 1);
  --text-rgba: rgba(48, 56, 65, 1);
  --border-radius: 4px;
}

::-webkit-scrollbar {
  width: 5px;
  height: auto;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-17);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-5);
}

::-webkit-scrollbar-track {
  background-color: var(--white-color);
  border-radius: 0px;
}

*{
  max-width: 100vw;
  height: auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
  height: -webkit-fill-available;   /* legacy iOS fallback if needed */
}

body {
  display: block;
  width: 100%;
  min-height: 100vh;                /* very old browsers */
  min-height: 100dvh;               /* modern & recommended */
  margin: 0;
  padding: 0;
  line-height: 2.2;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--text-hex);
  background: #f0f4fa;
}

h1 {
  font-family: 'Bebas', sans-serif;
  font-weight: 400;
  color: var(--color-1);
}

h2,
h3 {
  font-family: 'Elite', sans-serif;
  font-weight: 500;
  color: var(--color-1);
}

h4,
h5,
h6 {
  font-family: 'Nova', sans-serif;
  font-weight: 600;
  font-size: 100%;
  text-transform: capitalize;
  color: var(--color-1);
}

input, textarea, select {
  font-size: 100%;
  width: 100%;
  max-height: 180px;
  resize: vertical;
  margin: 10px 0px;
  padding: 14px 12px;
  background: transparent;
  color: var(--color-21);
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  outline: none;
}

textarea {
  min-height: 120px;
}

/* Read-only fields */
input:read-only,
textarea:read-only {
  border-color: rgba(0, 128, 0, 0.2);
  background: rgba(0, 128, 0, 0.1);
  color: rgba(0, 128, 0, 1.0);
  cursor: not-allowed;
  pointer-events: none;
}

/* Disabled fields */
input:disabled,
textarea:disabled,
.custom-select-wrapper.disabled {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.15);
  color: gray;
  cursor: not-allowed;
}

/* Focus */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-16);
  background: rgba(34, 64, 196, 0.055);
  outline: none;
  transition: box-shadow 0.3s ease;
}

/* Autofill fix for all major browsers */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px transparent inset;
  background-color: transparent !important;
  color: var(--color-21) !important;
  transition: background-color 5000s ease-in-out 0s;
}

::placeholder{
  color: #777;
  font-size: 90%;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
  margin: 10px auto;
  padding: 8px 12px;
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  background: var(--color-1);
  cursor: pointer;
  font-size: 95%;
  color: var(--color-22);
  display: flex;
  flex-direction: column;
}

.custom-select-trigger::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70%;
  pointer-events: none;
  color: var(--color-13);
}

.custom-options {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  height: auto;
  max-height: 50dvh;
  font-size: 97%;
  background: var(--white-color);
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow-y: auto;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #264779 rgba(0,0,0,0.1);
}

.custom-options::-webkit-scrollbar {
  width: 10px;
}

.custom-options::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: #264779;
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: #007bff;
}

.custom-option {
  padding: 12px 16px;
  cursor: pointer;
  color: var(--color-22);
  user-select: none;
}

.custom-option:hover,
.custom-option.selected {
  background: rgba(34, 64, 196, 0.20);
}

button {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 100%;
  font-weight: 500;
  margin: 0;
  padding: 14px 25px;
  color: var(--color-1);
  background: var(--color-16);
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius, 4px);
  overflow: hidden;
  opacity: 1;
  transition: background 0.3s ease-in-out;
}

button i {
  font-size: 110%;
  margin-left: 5px;
  color: var(--color-1);
  transition: color 0.4s ease-in-out;
}

button:hover {
  background: var(--color-13);
}

button:disabled {
  background: var(--color-23);
  color: gray;
  cursor: not-allowed;
  transition: background 0.4s ease-in-out, color 0.4s ease-in-out;
  opacity: 0.5;
}

/* Button spining animation */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

p a {
  font-size: inherit;
  text-decoration: underline;
  color: blue;
  word-spacing: 1px;
  cursor: pointer;
}

p a:hover {
  text-decoration: none;
}

span, a {
  font-size: inherit;
  font-weight: inherit;
}

#body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  scroll-behavior: smooth;
}

/*START OF HEADER*/

#header {
  position: sticky;
  width: 100%;
  height: auto;
  top: 0;
  margin: 0;
  padding: 0;
  background: #f0f4fa;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
  z-index: 2147483595;
}

header {
  width: 100%;
  display: block;
  border: none;
  transition: box-shadow 0.3s ease-in-out;
}

#header-ad {
  width: 100%;
  background-color: #fffaf4;
  text-align: center;
  justify-content: center;
  padding: 0;
  display: flex;
}

#header-ad marquee {
  font-size: 75%;
  line-height: 2.4;
  font-weight: 500;
  font-style: normal;
  font-family: Arial;
  color: var(--color-16);
  word-spacing: 1px;
}

#header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0px 10%;
}

#header-main #logo {
  text-decoration: none;
  width: 60px;
  margin: auto 0px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

#header-main #logo img {
  display: block;
  width: 100%;
}

#header-main #logo:hover {
  transform: scale(0.95);
}

#header-main #desktop-nav {
  display: flex;
  margin-left: auto;
}

#header-main #desktop-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  list-style: none;
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
  gap: 50px;
  border: none;
}

#header-main #desktop-nav ul li {
  display: flex;
  align-items: center;
  height: 100%;
}

#header-main #desktop-nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 100%;
  font-weight: 500;
  color: var(--color-16);
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
  background: transparent;
  cursor: pointer;
}

#header-main #desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: var(--color-15);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  transform-origin: center center;
  transform-box: fill-box;
  /* Center the underline using translateX */
  transform: translateX(-50%) scaleX(0);
}

#header-main #desktop-nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

#header-main #hambuger-icon {
  display: none;
  width: auto;
  height: 25px;
  margin: 0;
  padding: 0;
}

#header-main #mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: flex-end;
  transition: background 0.4s ease-in-out;
}

#header-main #mobile-nav .the-mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: white;
  overflow: hidden;
}

/* Slide-in Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Slide-out Animation */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

#header-main #mobile-nav.active .the-mobile-nav {
  animation: slideInRight 0.4s ease-out forwards;
}

#header-main #mobile-nav.closing .the-mobile-nav {
  animation: slideOutRight 0.4s ease-out forwards;
}

.the-mobile-nav .menu-top {
  position: sticky;
  width: 100%;
  top: 0;
  background: var(--color-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
  z-index: 999;
  margin: 0;
  padding: 0px 20px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-bottom: 1px solid antiquewhite;
}

.the-mobile-nav .menu-center {
  flex: 1;
  overflow-y: scroll;
  padding: 10px 4%;
  padding-left: 4%;
  background: transparent;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}
.menu-center::-webkit-scrollbar { width: 3px; height: 3px; background: transparent; }
.menu-center::-webkit-scrollbar-track { background-color: transparent; border-radius: 25px; }
.menu-center::-webkit-scrollbar-thumb { background-color: var(--color-8); border-radius: 25px; border: none; }

.the-mobile-nav .menu-bottom {
  width: 100%;
  background: var(--color-2);
  z-index: 999;
  margin: 0;
  padding: 5px 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px 0px, rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.the-mobile-nav .menu-top a {
  text-decoration: none;
  width: 45px;
  margin: auto 0px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.the-mobile-nav .menu-top a img  {
  display: block;
  width: 100%;
  height: auto;
}

.the-mobile-nav .menu-top span {
  font-size: 160%;
  color: #ccc;
  cursor: pointer;
}

.menu-center div {
  display: flex;
  margin: 18px 0px;
  align-items: center;
  gap: 2%;
}

.menu-center div .icon {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 105%;
  color: var(--white-color);
  background: var(--color-8);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 4px;
}

.menu-center div a {
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #e9e9e9;
}

.menu-center div a small {
  font-size: 90%;
  font-weight: 500;
  text-transform: capitalize;
  color: #333;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-center div a i {
  font-size: 95%;
  color: #ccc;
  opacity: 0.85;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.menu-bottom legend {
  display: block;
  font-size: 80%;
  color: #444;
  text-align: center;
}

.menu-bottom div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  margin: 1px auto;
}

.menu-bottom div a {
  flex: 1 1 0;
  text-align: center;
  padding: 5px 0;
  background: var(--color-16);
  color: var(--color-1);
  text-decoration: none;
  font-size: 75%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.menu-bottom div a:active {
  background: var(--color-1);
  color: var(--color-17);
  border-color: var(--color-17);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(0.97);
}

.menu-bottom small {
  display: block;
  margin-top: 10px;
  font-size: 70%;
  text-align: center;
  color: #666;
}

@media only screen and (max-width: 1200px) {
  #header-main{
    padding: 0 20px;
  }
}

@media (min-width: 900px) {
  #header-main #mobile-nav {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  #header {
    background: var(--color-1);
  }
  #header-main #logo {
    width: 45px;
  }
  #header-main #desktop-nav {
    display: none;
  }
  #header-main #hambuger-icon {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  #header-main{
    padding: 0 10px;
  }
}



/*END OF HEADER*/

/*START OF TOP BUTTON*/

#gotoTop {
  position: fixed;
  display: none;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  color: var(--color-16);
  background-color: rgba(34, 64, 196, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* For Safari */
  border-radius: var(--border-radius);
  font-size: 150%;
  cursor: pointer;
  z-index: 9999998;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-color: var(--color-16);
}

#gotoTop:hover {
  color: var(--color-1);
  background-color: rgba(34, 64, 196, 1);
}

#gotoTop i {
  pointer-events: none;
}


@media only screen and (max-width: 1200px) {
  #gotoTop {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 10px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 700px) {
  #gotoTop {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 10px;
    border-radius: var(--border-radius);
  }
}

@media only screen and (max-width: 576px) {
  #gotoTop {
    width: 48px;
    height: 48px;
    bottom: 15px;
    right: 10px;
    border-radius: 50%;
  }
}

/*END OF TOP BUTTON*/

/* START OF CONTACT FLOAT BUTTON */
#contact-float {
  position: fixed;
  display: flex;
  width: 60px;
  height: 60px;
  font-size: 55px;
  bottom: 40px;
  left: 40px;
  background-color: white;
  color: #279eda;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #279eda;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#contact-float i {
  pointer-events: none;
}

#contact-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

@media only screen and (max-width: 1200px) {
  #contact-float {
    width: 55px;
    height: 55px;
    bottom: 35px;
    left: 10px;
  }
}

@media only screen and (max-width: 576px) {
  #contact-float {
    width: 48px;
    height: 48px;
    bottom: 30px;
    left: 10px;
  }
}

/* END OF CONTACT FLOAT BUTTON */


/*START OF FOOTER*/
footer {
  position: relative;
  z-index: 999;
  bottom: 0;
  width: 100%;
  padding-top: 30px;
  background: var(--gray-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-top: 1px solid #ddd;
}

.footer {
  max-width: 1310px;
  margin: 0 auto;
  overflow: hidden;
}

.footer .footer-hr {
  max-width: 100%;
  margin: 0px auto;
  border: 0;
  border-top: 1px solid #666;
}

.footer-copyright {
  font-size: 70%;
  padding: 10px;
  text-align: center;
  color: #ccc;
}

.footer-top {
  max-width: 100%;
  margin: 0 auto;
  font-size: 77%;
  line-height: 1.8;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
}
.footer-top b {
  letter-spacing: 1px;
  text-decoration: underline;
  text-transform: capitalize;
}

.footer-bottom {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px 0px;
  font-size: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  box-sizing: border-box;
  border-top: 1px solid #666;
}

.footer-bottom .left,
.footer-bottom .right {
  flex: 0 0 50%;
  max-width: 50%;
  margin: auto;
  box-sizing: border-box;
  padding: 20px;
}

.footer-bottom .left {
  background: transparent;
}

.footer-bottom .left h3 {
  font-size: 100%;
  font-weight: 600;
  font-family: Arial;
  text-transform: uppercase;
  color: var(--white-color);
}

.footer-bottom .left h3 i {
  margin-right: 3px;
}

.footer-bottom .left ul {
  list-style-type: square;
  padding-left: 20px;
  margin: 0;
  color: var(--gray-light-color);
}

.footer-bottom .left ul li {
  margin-bottom: 6px;
}

.footer-bottom .left ul li a {
  text-transform: capitalize;
  color: var(--gray-light-color);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-bottom .left ul li a:hover {
  text-decoration: underline;
  color: var(--white-color);
}

.footer-bottom .right {
  text-align: center;
}

.footer-bottom .right .footer-logo {
  display: inline-block;
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-bottom .right .footer-logo:hover {
  transform: scale(0.9);
}

.footer-bottom .right .footer-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.footer-bottom .right p {
  margin: 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 90%;
  color: var(--gray-light-color);
  text-align: center;
}

.footer-bottom .right p i {
  font-size: 105%;
  color: inherit;
}

.footer-bottom .right p a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.footer-bottom .right p a:hover {
  text-decoration: underline;
}

.footer-bottom .right ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom .right ul li a {
  font-size: 200%;
  color: var(--gray-light-color);
  transition: color 0.3s, transform 0.6s;
  display: inline-block;
  transform-style: preserve-3d;
}

.footer-bottom .right ul li a:hover {
  color: var(--white-color);
  transform: rotateY(180deg);
}

.newsletter-body {
  width: 100%;
  max-width: 350px;
  margin: 0px auto;
}

.newsletter-body h3 {
  font-size: 95%;
  font-family: Arial;
  text-transform: capitalize;
  line-height: 1.8;
  color: var(--gray-light-color);
}

.newsletter-box {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gray-light-color);
  border-radius: var(--border-radius);
  background: rgba(34, 64, 196, 0.05);
  cursor: pointer;
  transition: border-color 0.3s ease;
  z-index: 1;
  padding: 0;
}

.newsletter-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 95%;
  color: black;
  pointer-events: none;
  margin: 0;
  padding: 14px;
  flex-grow: 1;
}

.newsletter-box input::placeholder {
  color: var(--gray-light-color);
  font-size: 95%;
  font-style: italic;
  padding-left: 8px;
}

.newsletter-box span {
  padding: 0 28px;
  font-size: 90%;
  font-weight: bold;
  background: var(--gray-light-color);
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 1310px){
  footer {
    padding: 15px;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 820px){
  
}

@media only screen and (max-width: 576px) {
  footer {
    padding: 10px;
    padding-top: 20px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom .left,
  .footer-bottom .right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px;
  }
  .footer-bottom .right {
    margin-top: 45px;
  }
  .footer-bottom .left ul {
    list-style-type: square;
    padding-left: 20px;
    margin: 0;
    color: var(--gray-light-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px 20px;
  }
}

@media only screen and (max-width: 400px){
  .footer-hr {
    margin: 0px 7px;
  }
  .footer-bottom .left ul {
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
  }
}

/*END OF FOOTER*/

/*START OF PRELOADER AND UNIVERSAL POPUP*/
#main-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
  z-index: 2147483599;
}

#main-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader { 
  width: 50px; 
  height: 50px; 
  border: 2px solid transparent; 
  border-top: 2px solid var(--color-16); 
  border-radius: 50%; 
  animation: spin 0.7s linear infinite; 
} 

@keyframes spin { 
  0% { 
    transform: rotate(0deg); 
  } 
  100% {
   transform: rotate(360deg); 
 } 
}

#universal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  background: rgba(0, 0, 0, 0.80);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: none;
  transform: scale(0.8);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Default Animation (Desktop & Tablets) */
#universal-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  animation: fadeInUniversalpopup 0.5s ease forwards;
  overflow: hidden;
  overflow-y: auto;
}

#universal-popup:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Desktop Fade + Scale Animation */
@keyframes fadeInUniversalpopup {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.95);
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    transform: translateY(10px) scale(1.02);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ===== MOBILE ANIMATION ===== */
@media screen and (max-width: 576px) {
  #universal-popup {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  }

  /* OPENING ANIMATION */
  #universal-popup.active {
    animation: slideUpUniversalpopup 0.5s ease forwards;
    pointer-events: all;
  }

  @keyframes slideUpUniversalpopup {
    0% {
      transform: translateY(100%);
      opacity: 0;
      visibility: visible;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  }

  /* CLOSING ANIMATION */
  #universal-popup:not(.active) {
    animation: slideDownUniversalpopup 0.5s ease forwards;
  }

  @keyframes slideDownUniversalpopup {
    0% {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    100% {
      transform: translateY(100%);
      opacity: 0;
      visibility: hidden;
    }
  }
}

#uni-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  min-height: 50dvh;
  max-height: 85dvh;
  background: var(--color-1);
  padding: 0;
  border: none;
  border-radius: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: transform 0.3s, max-width 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.28) 6px 2px 16px 0px, rgba(0, 0, 0, 0.28) -6px -2px 16px 0px;
  scrollbar-width: none;
}

#uni-popup::-webkit-scrollbar {
  display: none;
}

#uni-popup .topper {
  position: sticky;
  width: 100%;
  top: 0;
  padding: 5px 4%;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-16);
  border: none;
  border-bottom: 1px solid var(--color-5);
  box-shadow: rgba(255, 255, 255, 0.45) 0px 25px 30px -20px;
  z-index: 10000;
}

#uni-popup .topper h6 {
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--color-1);
  margin: auto 0px;
}

#uni-popup .topper span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

#uni-popup .topper span:hover {
  background: var(--color-8);
}

#uni-popup .topper span:hover i {
  color: orangered;
} 

#uni-popup .topper span i {
  font-size: 130%;
  color: var(--color-5);
  line-height: 1;
}

#the-contents {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0px;
  padding-bottom: 50px;
  background: var(--white-color);
  color: #222;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#the-contents .loading-text {
  text-align: center;
  padding: 20px;
  font-size: 80%;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 100px;
}

#the-contents .loading-text i {
  font-size: 150%;
}

#the-contents .resource-error {
  text-align: center;
  padding: 20px;
  font-size: 80%;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 100px;
}

#the-contents .resource-error i {
  font-size: 250%;
  color: #e74c3c;
}

#the-contents::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 600px) {
  #uni-popup {
    width: 98%;
    min-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  #universal-popup {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2147483647;
    box-sizing: border-box;
  }
  #uni-popup {
    position: fixed;
    max-height: 100dvh;
    left: 50%;
    bottom: 0;
    top: 2.6dvh;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    background: var(--white-color);
    padding: 0;
    box-shadow: 
      0px -2px 16px rgba(0, 0, 0, 0.08),
      0px -4px 32px rgba(0, 0, 0, 0.12),
      0px -8px 64px rgba(0, 0, 0, 0.15);
    border: none;
    border-top: 1px solid #ddd;
    border-radius: 22px 22px 0 0;
    overflow: auto;
  }
  #uni-popup .topper {
    padding: 10px 5%;
    padding-right: 8px;
    background-color: var(--white-color);
    border: none;
    box-shadow: rgba(34, 64, 196, 0.11) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  }
  #uni-popup .topper h6 {
    font-size: 108%;
    color: var(--color-18);
  }
  #uni-popup .topper span {
    background: transparent;
  }
  #uni-popup .topper span i {
    color: #aaa;
  }
  #the-contents {
    padding: 0;
    padding-bottom: 80px;
  }
}
/*END OF PRELOADER AND UNIVERSAL POPUP*/

/* START OF TOOLTIP STYLES */
[tooltip] { position: relative; cursor: pointer; }
[tooltip]::before, [tooltip]::after { position: absolute; display: none; opacity: 0; pointer-events: none; user-select: none; font-size: 0.88rem; line-height: 2.0; text-transform: none; z-index: 1000; }
[tooltip]::before { content: ''; border: 4px solid transparent; z-index: 1001; }
[tooltip]::after { content: attr(tooltip); min-width: 50px; max-width: 320px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 5px 10px; border-radius: 2px; background: #333 !important; color: #fff; text-align: center; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); }
[tooltip]:hover::before, [tooltip]:hover::after { display: block; }
[tooltip='']::before, [tooltip='']::after { display: none !important; }
[tooltip]:not([flow])::before, [tooltip][flow^="up"]::before { bottom: calc(100% + 0px); border-bottom: 0; border-top-color: #333; left: 50%; transform: translateX(-50%); }
[tooltip]:not([flow])::after, [tooltip][flow^="up"]::after { bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); }
[tooltip][flow^="down"]::before { top: calc(100% + 0px); border-top: 0; border-bottom-color: #333; left: 50%; transform: translateX(-50%); }
[tooltip][flow^="down"]::after { top: calc(100% + 4px); left: 50%; transform: translateX(-50%); }
[tooltip][flow^="left"]::before { top: 50%; left: -5px; border-right: 0; border-left-color: #333; transform: translateY(-50%); }
[tooltip][flow^="left"]::after { top: 50%; right: calc(100% + 5px); transform: translateY(-50%); }
[tooltip][flow^="right"]::before { top: 50%; right: -5px; border-left: 0; border-right-color: #333; transform: translateY(-50%); }
[tooltip][flow^="right"]::after { top: 50%; left: calc(100% + 5px); transform: translateY(-50%); }
@keyframes tooltip-fade-vert { 0% { opacity: 0; transform: translateX(-50%) translateY(-5px); } 100% { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes tooltip-fade-horz { 0% { opacity: 0; transform: translateY(-50%) translateX(-5px); } 100% { opacity: 1; transform: translateY(-50%) translateX(0); } }
[tooltip]:not([flow]):hover::before, [tooltip]:not([flow]):hover::after, [tooltip][flow^="up"]:hover::before, [tooltip][flow^="up"]:hover::after, [tooltip][flow^="down"]:hover::before, [tooltip][flow^="down"]:hover::after { animation: tooltip-fade-vert 300ms ease-out forwards; }
[tooltip][flow^="left"]:hover::before, [tooltip][flow^="left"]:hover::after, [tooltip][flow^="right"]:hover::before, [tooltip][flow^="right"]:hover::after { animation: tooltip-fade-horz 300ms ease-out forwards; }
/* END OF TOOLTIP STYLES */

@keyframes revealCenter {
  from {
    opacity: 0;
    transform: scale(0.8);
    clip-path: inset(50% 50% 50% 50%);
  }
  to {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}

.animate-me {
  opacity: 0;
}

.animate-me.show {
  animation: revealCenter 0.8s ease-out forwards;
}


/*START OF TOGGLE CHECKBOX*/
.remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 80%;
}

.remember-row .remember-label {
  color: #222;
}

.toggle-container {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 20px;
}

.toggle-container input {
  display: none;
}

.toggle-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #aaa;
  border-radius: 30px;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  background-color: var(--white-color);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-container input:checked + .toggle-slider {
  background-color: royalblue;
}

.toggle-container input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/*END OF TOGGLE CHECKBOX*/

.review-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.review-carousel h6 {
  width: fit-content;
  font-size: 82%;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 2px 25px;
  margin: 5px auto;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-1);
  background: var(--color-16);
  border-radius: var(--border-radius);
}

.review-carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll linear infinite;
  will-change: transform; 
  transform: translate3d(0, 0, 0);
}

.each-review {
  display: block;
  flex: 0 0 350px;
  height: auto;
  max-height: 350px;
  margin: 0 5px;
  padding: 0;
  color: #555;
  background: transparent;
  backface-visibility: hidden; 
  transform: translateZ(0); 
}

.each-review figure:hover {
  background: var(--white-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.each-review figure:hover .arrow {
  border-top-color: var(--white-color);
}

.each-review figure {
  position: relative;
  display: block;
  width: 100%;
  max-width: 350px;
  font-size: 80%;
  font-style: italic;
  padding: 20px;
  background: #ebebeb;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: visible;
}

.each-review figure:before,
.each-review figure:after {
  font-family: 'FontAwesome';
  font-style: normal;
  position: absolute;
  font-size: 80%;
  opacity: 0.5;
}

.each-review figure:before {
  content: "\201C";
  top: 5px;
  left: 5px;
}

.each-review figure:after {
  content: "\201D";
  right: 5px;
  bottom: 5px;
}

.each-review figure .arrow {
  width: 0;
  height: 0;
  border-right: 1px solid #ddd;
  border-left: 25px solid transparent;
  border-top: 25px solid #ebebeb;
  position: absolute;
  bottom: -25px;
  left: 20px;
  transition: all 0.3s ease;
}

.each-review legend {
  width: 100%;
  margin: 0;
  margin-top: 18px;
  margin-left: 30px;
  font-size: 90%;
  color: var(--color-16);
}

.feedback-message {
  display: block;
  margin: 0px;
  margin-bottom: 10px;
  line-height: 2.2;
  padding: 2px 5px;
  padding-left: 8px;
  font-size: 95%;
  text-align: left;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.feedback-message .fa-spinner {
  font-size: 110%;
  color: #222;
  margin-left: 3px;
}

.password-div {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-div input {
  flex: 1;
  padding: 12px;
  padding-right: 58px;
}

.password-div span#showhide {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 85%;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s ease;
}

.password-div span#showhide:hover {
  opacity: 0.7;
}

.password-instruction {
  display: block;
  width: 98%;
  margin: 0px auto;
  margin-top: 4px;
  font-size: 78%;
  color: #222;
}

#auth-div {
  text-align: center;
  max-width: 400px;
  height: auto;
  min-height: 200px;
  margin: 0 auto;
  margin-bottom: 8%;
  padding: 0;
}

#auth-div #toggleAuthDivs {
  font-size: 95%;
  margin: 0;
  padding: 8px 25px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white-color);
  cursor: pointer;
}

#auth-div #toggleAuthDivs:hover {
  color: var(--white-color);
  background: var(--black-color);
  text-decoration: underline;
}

.dual-aas {
  width: 99%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
  padding: 8px;
  font-size: 90%;
}

#authDivBack {
  color: var(--white-color);
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  border-radius: var(--border-radius);
}

.resend-code-link {
  user-select: none;
  text-decoration: underline;
  padding: 2px 4px;
  border-radius: var(--border-radius);
}

.resend-code-link i {
  font-size: 120%;
  margin-left: 2px;
  color: blue;
}

.resend-code-link[data-disabled="true"] {
  color: #999999;
  cursor: not-allowed;
  text-decoration: none;
}

.resend-code-link[data-disabled="false"] {
  color: var(--white-color);
  cursor: pointer;
}

#authDivBack:hover, .resend-code-link[data-disabled="false"]:hover {
  background: rgba(9, 105, 218, 0.50);
  color: #FFFFFF;
  text-decoration: none;
}

.auth-preloader {
  display: block;
  margin: 80px auto;
  margin-top: 100px;
  width: 40px;
}

.inside-auth-div {
  width: 100%;
  text-align: left;
  margin: 10px auto;
  margin-top: 25%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

.inside-auth-div img {
  display: block;
  width: 50px;
  margin: 0px auto;
}

.inside-auth-div .auth-logo {
  text-decoration: none;
  display: block;
  width: 85px;
  margin: 0 auto;
  text-align: center;
}

.inside-auth-div .auth-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.inside-auth-div h3 {
  font-size: 130%;
  font-weight: normal;
  color: #333;
  text-align: center;
}

.inside-auth-div h6 {
  margin: 5px auto;
  color: #000;
  text-align: center;
}

.inside-auth-div input {
  font-size: 100%;
  width: 100%;
  max-height: 170px;
  resize: vertical;
  margin: 10px 0px;
  padding: 12px;
  background: transparent;
  color: var(--black-color);
  border: 1px solid #999;
  border-radius: var(--border-radius);
  -webkit-transition: 0.1s;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.inside-auth-div input:focus {
  border-color: var(--main-color);
}

.inside-auth-div input:disabled {
  background: rgba(0, 0, 0, 0.03);
  color: #999;
  cursor: not-allowed;
}

.inside-auth-div input::placeholder,
.inside-auth-div textarea::placeholder {
  color: #666;
  font-size: 90%;
}

.inside-auth-div .countdown-message {
  text-align: center;
  margin-top: 10px;
  font-size: 75%;
  color: #222;
}

.inside-auth-div .countdown-message span {
  color: royalblue;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 105%;
}

.inside-auth-div .fp-rp {
  margin-left: 2px;
  font-size: 85%;
  color: #222;
  cursor: pointer;
  text-decoration: underline;
}

.inside-auth-div .fp-rp:hover {
  color: blue;
  text-decoration: none;
}

.inside-auth-div button {
  width: 100%;
  margin: 0px auto;
  margin-top: 25px;
}

.legend-icon {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  padding: 8px 12px;
  font-size: 105%;
  color: #222;
  background-color: #f0f0f0;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.legend-icon i {
  color: inherit;
}

.legend-icon:hover {
  background-color: red;
  color: #fff;
}

.intro-layer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 60vh;
  overflow: hidden;
}

.bg-img {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.bg-video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.intro-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
  z-index: 0;
}

.intro-text {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 50px auto;
  margin-bottom: 0;
  padding: 20px;
  background: rgba(34, 64, 196, 0.03);
  border: 1px solid rgba(253, 253, 253, 0.2);
  border-radius: 4px 4px 0px 0px;
  backdrop-filter: blur(10px); /* The actual blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.intro-text h1 {
  position: relative;
  text-align: left;
  font-size: 250%;
  font-family: 'Bronzeage';
  line-height: 1.8;
  word-spacing: 1px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white-color);
  user-select: none;
}

.intro-text p {
  position: relative;
  text-align: left;
  margin: 20px 0;
  font-size: 100%;
  color: var(--white-color);
}

.osidiv {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 150px;
  padding: 10px;
  line-height: 1.4;
  color: var(--color-15);
  background: rgba(253, 253, 253, 1.0);
  border-radius: 0px 0px 4px 4px;
}

.osidiv h1 {
  font-size: 120%;
  word-spacing: 8px;
  color: var(--color-17);
}

.osidiv ul {
  display: flex;
  list-style: none;
  margin: 10px auto 0;
  padding: 0;
  justify-content: center;
  gap: 5px 40px;
  flex-wrap: wrap;
}

.osidiv ul li {
  font-size: 90%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.osidiv ul li span {
  font-size: 150%;
  color: var(--color-17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.w2talk {
  display: none;
  width: 100%;
  margin: 0px auto;
  margin-top: 15px;
  text-align: center;
  color: var(--color-17);
  font-size: 95%;
}

.w2talk a {
  text-decoration: underline;
  color: blue;
  transition: transform 0.2s, background 0.2s;
}

.action-btns {
  display: flex;
  gap: 20px;
}

.action-btns a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: fit-content;
  font-size: 110%;
  font-weight: 500;
  line-height: 1.8;
  text-transform: capitalize;
  padding: 10px 30px;
  border-radius: 4px;
  color: var(--color-1);
  background: var(--color-16);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: 1px solid;
  border-color: transparent;
}

.action-btns a:last-child {
  background: transparent;
  color: var(--color-1);
  border-color: var(--color-1);
}

.action-btns a:hover {
  background: var(--white-color);
  color: var(--color-16);
  box-shadow:none;
  border-color: transparent;
}

.intro-lapping-layer {
  width: 99%;
  max-width: 1200px;
  height: auto;
  margin: 0px auto;
  margin-top: -60px; 
  background: transparent;
  border: none;
  z-index: 1;
}

.twin-div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
}

.in-touch {
  width: 100%;
  min-width: 280px;
  max-width: 300px;
  padding: 0;
  background: var(--color-16);
  position: sticky;
  top: 110px;
  align-self: flex-start;
  z-index: 10;
  border: 1px solid var(--color-16);
  border-radius: 4px 4px 0px 0px;
  overflow: visible;
}

.in-touch-twin {
  flex: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  font-size: 95%;
  line-height: 2.0;
  background: transparent;
  border: none;
}

.eli-cri, 
.some-features {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1%;
  padding-top: 0px;
  background: var(--color-1);
  border-radius: 0;
  overflow: hidden;
}

.eli-cri {
  padding: 1% 2.5%;
  padding-top: 20px;
  border-radius: 4px 4px 0px 0px;
}

.eli-cri h6 {
  font-size: 100%;
  color: #2240c4;
}

.eli-cri ul {
  list-style: square;
  margin: 20px auto;
  padding-left: 4%;
}

.eli-cri ul li {
  font-size: 90%;
  margin-bottom: 18px;
  line-height: 1.6;
}

.eli-cri p {
  font-size: 80%;
  font-style: italic;
  padding: 5px;
  color: var(--black-color);
  background: var(--the-yellow);
}

.photo-div {
  display: flex;
  margin: 2%;
  align-items: center;
  text-align: center;
  border: none;
}

.photo-div img {
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  background: var(--white-color);
}

.photo-div h3 {
  font-size: 100%;
  line-height: 1.6;
  text-align: center;
  margin: auto;
}

.imp-notice {
  width: 100%;
  height: auto;
  min-height: 100px;
  margin: 0;
  padding: 10px 15px;
  color: var(--text-hex);
  background: var(--the-yellow);
  border: none;
  border-radius: 16px 16px 0 0;
  opacity: 1;
  overflow: hidden;
  list-style: none;
}

.imp-notice li {
  margin-bottom: 15px;
  font-size: 80%;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
}

.imp-notice li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 120%;
}

.imp-notice li a {
  text-decoration: underline;
  cursor: pointer;
  color: blue;
}

.imp-notice li a:hover {
  text-decoration: none;
}


@media only screen and (max-width: 576px) {
  .twin-div {
    display: flex;
    flex-direction: column;
  }

  .twin-div > :first-child {
    order: 2;
  }

  .twin-div > :last-child {
    order: 1;
  }

  .in-touch {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    background: var(--color-16);
    position: sticky;
    top: 110px;
    align-self: flex-start;
    z-index: 10;
    border: 1px solid var(--color-16);
    border-radius: 0px;
    overflow: visible;
  }
  .photo-div img {
    height: 50px;
  }
  .imp-notice li {
    font-size: 85%;
  }

  .in-touch-twin {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .some-features {
    width: 100%;
    min-height: 200px;
    height: auto;
    margin: 5px auto;
    padding: 10px;
  }
}

.some-features h6 {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-16);
  font-size: 92%;
  text-transform: capitalize;
  margin: 20px auto;
  position: relative;
}

.some-features h6::before,
.some-features h6::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-16);
  margin: 0 15px;
}

.features-div {
  column-count: 2;
  column-gap: 20px;
}

.each-features {
  position: relative;
  width: 100%;
  margin: 0px auto;
  margin-top: 10px;
  padding: 0px;
  padding-top: 12px;
  background: transparent;
  overflow: hidden;
  display: block;
}

.each-features i {
  position: absolute;
  top: 0px;
  left: 15px;
  width: 30px;
  height: 30px;
  font-size: 100%;
  color: var(--color-1);
  background: var(--color-12);
  border-radius: var(--border-radius);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.each-features > div {
  padding: 15px;
  padding-top: 30px;
  position: relative;
  z-index: 1;
  background: #f1f1f1;
  border: 1px solid;
  border-color: #ddd;
  border-radius: var(--border-radius);
  transition: background 0.3s;
}

.each-features > div:hover {
  background: rgba(34, 64, 196, 0.18);
}

.each-features > div:hover legend {
  border-bottom: 1px solid var(--color-18);
}

.each-features legend {
  position: absolute;
  top: 2px;
  left: 50px;
  font-weight: 500;
  font-size: 98%;
  line-height: 1.4;
  color: var(--color-16);
  margin: 0;
  z-index: 2;
}

.each-features p {
  margin: 0;
  font-size: 95%;
  color: var(--color-22);
  position: relative;
  z-index: 1;
}

.responsive-screen-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  margin-bottom: 0;
  padding: 20px 0px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-10);
  flex-wrap: wrap;
}

.responsive-screen-div > div {
  flex: 1;
  z-index: 2;
  padding: 10px;
  border-radius: var(--border-radius);
  background: transparent;
}

.responsive-screen-div > div p {
  font-size: 85%;
  font-style: italic;
  line-height: 2.2;
  color: var(--color-1);
}

.responsive-screen-div > div p i {
  background: var(--color-18);
  font-size: 150%;
  padding: 5px;
  border-radius: 4px;
}

.responsive-screen-div > img {
  width: 58%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  z-index: 1;
}

@media (max-width: 576px) {
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }

  .responsive-screen-div {
    display: block;
  }

  .responsive-screen-div > img {
    width: 100%;
    height: auto;
  }

  .responsive-screen-div > div {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(78, 86, 80, 0.90);
    border: 1px solid var(--color-12);
  }

  .responsive-screen-div > div p {
    color: #fff;
  }

  .responsive-screen-div > div p i {
    background: var(--color-1);
    color: var(--color-22);
  }
}

.in-touch-twin .top-part {
  display: block;
  width: 100%;
  padding: 2%;
  padding-bottom: 5px;
  background: var(--color-13);
  border: 1px solid var(--color-11);
  border-radius: var(--border-radius);
}

.below-twin-div {
  width: 99%;
  max-width: 1200px;
  min-height: 200px;
  margin: 80px auto;
  background: transparent;
}

#wcio {
  font-family: 'Reggae', sans-serif;
  font-size: 150%;
  word-spacing: 2px;
  white-space: nowrap;
  user-select: none;
  color: var(--color-16);
  margin-left: 10px;
}

.wcio-us {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin: 10px auto;
  padding: 5px;
}

.each-wcio-us {
  flex: 1 1 300px; /* each box takes at least 300px, but grows */
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.each-wcio-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.each-wcio-us h6 {
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--color-16);
}

.each-wcio-us p {
  font-size: 90%;
  line-height: 1.8;
  color: #555;
}


.photos-carousel img:hover {
  transform: scale(0.95);
  filter: brightness(1.1) contrast(1.05);
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, 
              rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, 
              rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, 
              rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, 
              rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, 
              rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border-radius: 12px;
}

#newsletter-form {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  padding: 10px;
}

#newsletter-form button {
  width: 100%;
  margin: 20px 0px;
}

#newsletter-form article {
  width: 100%;
  font-size: 80%;
  margin: 0;
  padding: 5px;
  color: #222;
}

#newsletter-form article i {
  color: green;
  margin-right: 10px;
}

#newsletter-form article a {
  text-decoration: none;
  color: blue;
  cursor: pointer;
}

#newsletter-form article a:hover {
  text-decoration: underline;
}

#contact-form,
#apply-form,
#status-form {
  width: 90%;
  height: auto;
  min-height: 300px;
  margin: 0px auto;
  padding: 20px 0px;
  text-align: left;
  background: transparent;
}

.form-article {
  font-size: 85%;
  color: #555;
  margin: 20px auto;
  padding: 2px 5px;
  border-top: 1px dashed #999;
}

.form-talk-box li a,
.form-article a,
.form-talk-box p a {
  text-decoration: underline;
  cursor: pointer;
  color: blue;
}

.form-talk-box li a:hover,
.form-article a:hover,
.form-talk-box p a:hover {
  text-decoration: none;
}

.contact-alternative {
  margin-top: 24px;
}

.contact-alternative legend {
  font-weight: 500;
  font-size: 90%;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.social-alt {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.social-alt a {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  color: white;
  font-size: 150%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
}

.social-alt a:hover::after {
  opacity: 1;
}

.social-alt a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#apply-form button,
#status-form button,
.application-form button {
  margin-top: 10px;
}

.form-talk-box {
  width: 100%;
  background-color: rgba(34, 64, 196, 0.1);
  border: 1px solid var(--color-5);
  border-radius: 10px;
  padding: 15px;
  margin: 20px auto;
}

.form-talk-box legend {
  font-weight: bold;
  font-size: 90%;
  margin-bottom: 10px;
}

.form-talk-box p {
  font-size: 90%;
  padding: 10px 0px;
}

.form-talk-box ul {
  list-style-type: square;
  padding-left: 20px;
  margin: 0;
}

.form-talk-box li {
  margin-bottom: 12px;
  font-size: 85%;
  line-height: 1.6;
}


#aboutus_content {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
  padding: 7px 20px;
  background: transparent;
  color: var(--black-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari */
}

.aboutus_content_links{
  width: 100%;
  background: transparent;
  margin: 10px auto;
  margin-left: 0px;
  margin-bottom: 20px;
}

.aboutus_content_links ul{
  list-style: none;
  margin-left: 20px;
}

.aboutus_content_links ul p{
  font-size: 90%;
  font-weight: bold;
  text-transform: capitalize;
}

.aboutus_content_links ul li{
  margin: 5px auto;
  font-size: 80%;
}

.aboutus_content_links ul li a{
  text-decoration: underline;
  padding: 5px;
  font-style: italic;
  color: var(--black-color);
  transition: all 0.1s ease;
  cursor: pointer;
}

.aboutus_content_links ul li a:hover{
  text-decoration: none;
  font-style: normal;
  background: var(--color-17);
  color: var(--white-color);
  border-radius: var(--border-radius);
}

.about_section{
  scroll-margin-top: 100px;
  width: 100%;
  height: auto;
  margin: 20px auto;
  background: var(--transparent-background);
}

.about_section h2{
  font-size: 100%;
  font-weight: 500;
  color: var(--color-16);
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--color-16) 0%, white 100%);
  border-image-slice: 1;
  padding-bottom: 3px;
}

.about_section p{
  font-size: 90%;
  padding: 5px;
}

.about_section p a {
  color: blue;
  text-decoration: underline;
}

.about_section p a:hover {
  text-decoration: none;
}

#faq-parent {
  width: 100%;
  margin-top: 20px;
}

.faq-parent {
  max-width: 900px;
  margin: 0px auto;
  padding: 10px 0px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.faq-parent:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.15); 
}

.faq-parent:hover {
  background: rgba(34, 64, 196, 0.03);
}

.faq-parent legend {
  width: 100%;
  padding: 5px;
  margin: 0;
  font-size: 100%;
  color: var(--main-color);
  cursor: pointer;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
}

.faq-parent legend i {
  font-size: 100%;
  transition: transform 0.4s ease, color 0.4s ease;
  opacity: 0.5;
}

.faq-parent legend.open i {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-parent p {
  width: 100%;
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  color: var(--color-16);
  font-size: 95%;
  line-height: 1.8;
  overflow: hidden;
  transform: scaleY(0.95);
  transform-origin: top;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
  will-change: max-height, opacity, transform;
}

.faq-parent p.open {
  max-height: 600px;
  opacity: 1;
  padding: 7px 10px;
  transform: scaleY(1);
}

#gallery-view {
  width: 100%;
  height: auto;
  min-height: 300px;
  margin: 0px auto;
  padding: 20px 0px;
  padding-top: 0;
  text-align: left;
  background: transparent;
}

#gallery-view article {
  max-width: 95%;
  font-size: 85%;
  color: #555;
  margin: 30px auto;
  margin-bottom: 8px;
  padding: 2px 5px;
  border-top: 1px dashed #999;
}

#gallery-view article a {
  color: blue;
  cursor: pointer;
}

#gallery-view article a:hover {
  text-decoration: underline;
}

#prime-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  margin: 0px auto;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
              rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
              rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
              rgba(0, 0, 0, 0.06) 0px 2px 1px, 
              rgba(0, 0, 0, 0.09) 0px 4px 2px, 
              rgba(0, 0, 0, 0.09) 0px 8px 4px, 
              rgba(0, 0, 0, 0.09) 0px 16px 8px, 
              rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border: none;
}

#prime-img.drop-animation {
  animation: dropDown 1.2s ease-out forwards;
}

/* Keyframes */
@keyframes dropDown {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  70% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

#sec-imgs::-webkit-scrollbar { width: 3px; height: 3px; background: transparent; }
#sec-imgs::-webkit-scrollbar-track { background-color: var(--color-2); border-radius: 25px; }
#sec-imgs::-webkit-scrollbar-thumb { background-color: var(--color-13); border-radius: 25px; border: none; }

#sec-imgs {
  width: 95%;
  display: flex;
  overflow-x: auto;
  gap: 15px;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#sec-imgs img {
  flex: 0 0 auto;
  height: 90px;
  width: auto;
  min-width: 30px;
  max-width: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#sec-imgs img:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#page404 {
  width: 100%;
  height: auto;
  font-size: 100%;
  color: #555;
  align-items: center;
  text-align: center;
}

#page404 legend {
  margin-top: 70px;
  font-size: 77%;
  color: #555;
}

.img404 {
  width: 100%;
  max-width: 150px;
  display: block;
  margin: 0px auto;
  margin-top: 10px;
}

.div404 {
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
}

.div404 h3 {
  color: var(--black-color);
  font-family: arial;
  font-size: 120%;
  margin-bottom: 15px;
}

.div404 h3 span {
  font-size: inherit;
  border-bottom: 4px solid red;
}

.div404 p {
  font-size: 90%;
  text-align: left;
  color: #333;
}

.div404 a {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

.div404 a:hover {
  text-decoration: none;
}

.div404 ul {
  width: 100%;
  margin: 10px auto;
  margin-bottom: 40px;
  padding: 0;
  padding-left: 6%;
  border: none;
  list-style: square;
  text-align: left;
}

.div404 ul li {
  margin-bottom: 15px;
  font-size: 85%;
  line-height: 1.6;
}

#donation-carousel-container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 45px;
  padding: 0px 10px;
  color: #222;
}

#donation-carousel-container h6 {
  display: block;
  width: fit-content;
  font-size: 80%;
  word-spacing: 5px;
  letter-spacing: 2px;
  margin: 0 auto;
  margin-bottom: 15px;
  padding: 2px 30px;
  color: var(--color-16);
  background: var(--white-color);
  border: 1px solid var(--color-16);
  border-radius: 50px;
  border-top-right-radius: 0;
  text-align: center;
}

/* Carousel container: horizontal slider */
.donation-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding: 5px 0px;
  padding-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.donation-carousel::-webkit-scrollbar {
  display: none;
}
.donation-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Individual card */
.donation-card {
  flex: 0 0 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.donation-card:hover {
  box-shadow: rgba(34, 64, 196, 0.5) 0px 2px 8px 0px;
}

/* Image style */
.donation-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  user-select: none;
  pointer-events: none;
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* h5 style */
.donation-card h5 {
  margin: 0;
  font-size: 90%;
  font-weight: 400;
  color: var(--main-color);
  user-select: none;
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Paragraph centered, appearing smoothly */
.donation-card p {
  color: #555;
  font-size: 90%;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-height: 0;
  overflow: hidden;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  width: 80%;
  margin: 0 auto;
}

/* Hover: Animate img and h5 upwards and fade them */
.donation-card:hover img,
.donation-card:hover h5 {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

/* Hover: Show and slide p into place */
.donation-card:hover p {
  opacity: 1;
  max-height: 200px;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}

/* Responsive tweaks */
@media (min-width: 700px) {
  .donation-carousel {
    gap: 24px;
  }
}

.application-body {
  position: relative;
  width: 98%;
  max-width: 1100px;
  height: auto;
  margin: 10px auto;
  padding: 0;
  color: var(--text-hex);
  background: var(--color-1);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
              rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: var(--border-radius);
}

.ip-log {
  line-height: 1.8;
  font-size: 75%;
  font-family: monospace;
  padding: 2px 5px;
  color: #555;
  background: rgba(254, 185, 7, 0.1);
  border: none;
  text-align: center;
}

.ip-log i {
  color: green;
}

.application-body feature {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--color-16);
  color: #ffffff;
  font-size: 75%;
  padding: 6px 14px;
  border-radius: 0;
  border-top-right-radius: 4px;
  white-space: nowrap;
}

.application-body .info-div {
  width: 95%;
  margin: 20px auto;
  margin-top: 60px;
}

.info-div legend {
  font-size: 110%;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-16);
}

.info-div p {
  margin-bottom: 14px;
  font-size: 90%;
  line-height: 1.8;
}

.telegram-instruction {
  text-align: center;
  margin: 0;
  padding: 10px 5%;
  background-color: #f1f1f1;
  border-top: 1px dashed #ccc;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.telegram-instruction p {
  text-align: left;
  font-size: 90%;
  margin-bottom: 12px;
  color: var(--text-hex);
}

.telegram-instruction p a.telegram-link {
  font-size: 150%;
  text-decoration: none;
  transition: color 0.3s ease;
}

.telegram-instruction p i {
  font-size: 140%;
  margin-left: 4px;
  color: #0088cc;
  vertical-align: middle;
}

.telegram-instruction small {
  font-size: 80%;
  margin-bottom: 12px;
}

.dual-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dual-apps img {
  height: 40px;
  display: block;
  transition: transform 0.2s ease-in-out;
}

.dual-apps a:hover img {
  transform: scale(1.05);
}

.application-form {
  max-width: 480px;
  height: auto;
  min-height: 480px;
  margin: 20px auto;
  padding: 0px 4%;
  background: transparent;
}

.application-form .confirm {
  font-size: 72%;
  margin-top: 10px;
  padding: 5px;
  color: var(--black-color);
  background: var(--the-yellow);
}

.application-form p {
  font-size: 90%;
  padding-left: 8px;
}

.phone-div {
  width: 100%;
  position: relative;
  display: inline-block;
}

.phone-div input.phone {
  padding-left: 40px;
}

.phone-div span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  transition: color 0.3s;
}

.phone-div input.phone:focus + span {
  color: var(--color-16);
}

.email-advise {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.email-advise input {
  order: 2;
}

.email-advise p {
  width: 97%;
  margin: 0px auto;
  order: 1;
  font-size: 80%;
  color: var(--color-16);
  line-height: 1.8;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.3s ease;
}

.email-advise input:focus {
  margin-top: 4px;
}

.email-advise input:focus ~ p {
  max-height: 200px;
  opacity: 1;
  transform: scaleY(1);
}


.files-div {
  width: 100%;
  height: auto;
  min-height: 100px;
  margin: 0 auto;
  padding: 1%;
  background: rgba(34, 64, 196, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px dashed rgba(100, 150, 255, 1);
  border-radius: 8px;
}

.files-div p {
  font-size: 80%;
  color: #333;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}

.custom-file-upload {
  width: 100%;
  max-width: 280px;
  display: inline-block;
  cursor: pointer;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  font-size: 90%;
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--color-1);
  transition: all 0.3s ease-in-out;
}

.custom-file-upload:hover .upload-label {
  background: #f1f1f1;
  border-color: #aaa;
}

.file-name {
  font-size: 90%;
  color: #555;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-file-upload.file-selected {
  background-color: transparent;
}

.custom-file-upload.file-selected .upload-label {
  color: var(--color-17);
  border-color: var(--color-17);
  background: rgba(100, 150, 255, 0.05);
}

.php-container {
  width: 99%;
  max-width: 600px;
  height: auto;
  margin: 20px auto;
  padding: 2.5% 4%;
}

.php-container.instruction {
  background: rgba(34, 64, 196, 0.15);
}

.php-container.error {
  background: rgba(255, 0, 0, 0.1);
}

.php-container h2 {
  color: var(--color-16);
  text-align: center;
  font-size: 150%;
}

.php-container p {
  font-size: 95%;
}

.php-container legend {
  font-size: 95%;
  margin-top: 30px;
  font-style: italic;
}

.php-container .a-btn {
  display: block;
  width: fit-content;
  margin: 15px auto 0; 
  padding: 3px 15px;
  font-size: 100%;
  text-decoration: none;
  color: var(--white-color);
  border-radius: var(--border-radius);
  background: var(--color-16);
  text-align: center; 
}

.php-container .a-btn:hover {
  background: var(--color-17);
  text-decoration: underline;
}













/*SCREEN RESOLUTIONS*/

@media screen and (max-width: 1300px) {
  
  .intro-layer {
    padding: 0px 20px;
    padding-bottom: 50px;
  }
  /*.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.2); /* 👈 zoom in */
    transform-origin: center;
    z-index: -1;
  }*/
  .intro-lapping-layer {
    margin-top: -50px;
  }
}

@media screen and (max-width: 1000px) {
  .features-div {
    column-count: 2;
    column-gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  [tooltip]:hover::before, [tooltip]:hover::after { display: none !important; }
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 0.88rem;
    background: var(--color-1);
  }
  .donation-card {
    background: transparent;
    box-shadow: none;
    border: 1px solid #e1e1e1;
  }
  .review-carousel-track {
    gap: 2px;
  }
  .each-review {
    flex: 0 0 270px;
  }
  .each-review figure {
    max-width: 270px;
  }
  .features-div {
    column-count: 2;
    column-gap: 20px;
  }
  .intro-layer {
    width: calc(100% - 3%);
    min-height: auto;
    margin: 18px auto;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
                rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
                rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
                rgba(0, 0, 0, 0.06) 0px 2px 1px, 
                rgba(0, 0, 0, 0.09) 0px 4px 2px, 
                rgba(0, 0, 0, 0.09) 0px 8px 4px, 
                rgba(0, 0, 0, 0.09) 0px 16px 8px, 
                rgba(0, 0, 0, 0.09) 0px 32px 16px;
    border: none;
    border-radius: 30px;
  }
  .bg-video {
    display: none;
  }
  .bg-img {
    display: block;
  }
  .intro-text {
    width: 100%;
    min-height: 50dvh;
    text-align: center;
    margin: 10px auto;
    padding: 10px 3%;
    background: transparent;
    border: none;
    backdrop-filter: blur(0); /* The actual blur */
    -webkit-backdrop-filter: blur(0); /* Safari support */
  }
  .intro-text h1 {
    font-size: 230%;
    line-height: 1.6;
    color: var(--color-16);
  }
  .intro-text p {
    font-size: 95%;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px); /* The actual blur */
    -webkit-backdrop-filter: blur(30px); /* Safari support */
  }
  .intro-lapping-layer {
    width: 100%;
    margin: 0px auto;
    border-top: 1px dashed var(--color-12);
  }
  .eli-cri {
    border-radius: 0px;
  }
  .ip-log {
    font-size: 65%;
  }
  .osidiv {
    margin-bottom: 0px;
    padding: 10px;
  }
  .action-btns a:last-child {
    color: var(--color-17);
    background: var(--color-1);
  }
  #aboutus_content {
    padding: 7px;
  }
  .photo-speaks button {
    font-size: 75%;
    padding: 8px 10px;
  }
  .photos-carousel img {
    height: 280px;
    max-width: 90vw;
  }
  .w2talk {
    display: none;
  }
  #wcio {
    font-size: 110%;
  }
  .below-twin-div {
    margin: 30px auto;
  }
  .each-wcio-us {
    width: 100%;
    padding: 15px 10px;
    box-shadow: none;
  }
  #map-area {
    padding: 30px 5px;
  }

}

@media screen and (max-width: 480px) {
  .faq-parent legend {
    font-size: 95%;
  }
  .each-review {
    flex: 0 0 240px;
  }
  .each-review figure {
    max-width: 240px;
  }
  #map-here {
    height: 320px;
  }
}

@media screen and (max-width: 420px) {
  .intro-text h1 {
    font-size: 200%;
  }
  .photo-speaks button {
    font-size: 75%;
    padding: 6px 8px;
  }
  .photos-carousel img {
    height: 200px;
    max-width: 90vw;
  }
  .features-div {
    column-count: 1;
    column-gap: 20px;
  }
  .action-btns {
    display: block;
  }
  .action-btns a {
    display: block;
    width: auto;
    max-width: 90%;
    margin: auto;
  }
  .action-btns a:last-child {
    margin-top: 20px;
  }
  #map-here {
    height: 300px;
  }
}


