* {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Global styles for all screen sizes */
html,
body {
  background-image: url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-attachment: fixed;
}

/* ===== ANIMATIONS ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}

@keyframes text-wave {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(5px);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary);
  }
}

@keyframes confetti {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

/* Custom Cursor animation Styles */
.cursor-trail .dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #ff0000, #ff9900, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* spinner for loading */
.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  z-index: 999;
  /* Ensure it covers everything */
}

.spinner-border {
  position: fixed;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  z-index: 1000;
}


/* ================= NAVBAR ================= */

.close-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .menu-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
  display: inline-block;
}

#mobilemenu {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  height: 100vh;
}

.mobile-nav {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

.head-top {
  background-color: black;
  color: white;
  justify-items: center;
  font-size: 15px;
}

.navbar {
  display: inline-block !important;
  padding: 0px !important;
  transition: all 0.4s ease;
}

.nav-section {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}

.navbar.scrolled {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.nav-logo {
  width: 51px;
}

/* NAV LINKS */
.nav-link {
  color: white;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0px;
}

.nav-link:hover {
  color: #00d4ff !important;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

/* Center slide underline */
.nav-link::after {
  margin-bottom: 10px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #007bff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= BUTTONS ================= */

.btn-custom {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: white;
  border-radius: 999px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.5);
}

/* Shine effect */
.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: 0.6s;
}

.btn-custom:hover::before {
  left: 100%;
}

.goog-te-combo {
  padding: 8px 10px;
  border: 2px solid;
  font-weight: 700;
  color: white;
  background: transparent;
  width: 130px;
}

.nav-devider {
  width: 2px;
  height: 30px;
  background: rgb(255 255 255 / 75%);
  margin: 0 8px;
}

#NavButton {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 15px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  text-decoration: none;
  transition: 0.5s;
  color: #FFFFFF;
  background: transparent;
  text-shadow: 1px 1px 1px rgba(204, 204, 204, 0.66);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}


/* ================= GLASS BANNER ================= */
.hero {
  background:
    linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 0%)),
    url('../images/Ai-bg.jpg');
  background-size: cover;
}

.hero-section {
  width: 90%;
  margin: auto;
  padding-top: 80px;
}

.headline {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.headescription {
  max-width: 80%;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 rgba(13, 110, 253, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(13, 110, 253, 0.4);
  }
}

/* ================= MOBILE FLOAT ================= */

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.0);
  }

  50% {
    box-shadow: 0 0 35px rgba(0, 123, 255, 0.6);
  }

  100% {
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.0);
  }
}

.mobile-float {
  animation: floatY 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.mobile-float:hover {
  transform: scale(1.07) rotate(-3deg);
}

.hero-visual {
  flex: 1;
  position: relative;
  animation: slide-in-right 0.8s ease-out;
  margin-top: 50px;
}

.floating-phone {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.floating-phone img {
  width: 70%;
  /* height: 650px; */
}

.bubble {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow);
  max-width: 250px;
  z-index: 2;
  animation: text-wave 3s infinite;
}

.bubble::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.bubble-1 {
  top: 35%;
  left: -95px;
  animation-delay: 0.5s;
}

.bubble-1::after {
  top: 30px;
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent white;
}

.bubble-2 {
  bottom: 5%;
  right: -50px;
  animation-delay: 1s;
}

.bubble-2::after {
  bottom: 30px;
  left: -16px;
  border-width: 10px 15px 10px 0;
  border-color: transparent white transparent transparent;
}

.title {
  font-size: 60px;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 50px 0px;
  line-height: 1;
  font-family: system-ui;
  text-shadow: 3px 3px 2px #313131;
}

/* ===== PRICING SECTION ===== */
.price-section {
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}

.price-wrapper {
  width: 90%;
  margin: 80px auto 20px;
}

.compare-wrapper {
  width: 90%;
  margin: auto;
}

.tgx-hero-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.tgx-hero-sub {
  opacity: 0.9;
  font-size: 1rem;
}

.tgx-card {
  background-image: url('../images/PriceCard-bg.jpg');
  border-radius: 20px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  padding: 0 !important;
  overflow: hidden;
  animation: floatY 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

.tgx-card img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s ease;
}

.tgx-wrapper {
  color: white;
  background-position: center;
  margin-top: 55px;
  overflow: hidden;
}

.tgx-card h6,
.tgx-card ul,
.tgx-card a {
  margin: 12px 16px;
}

.tgx-card ul {
  padding-left: 16px;
}

.tgx-card a {
  margin-bottom: 16px;
}

.tgx-card:hover {
  transform: translateY(-12px) rotateX(5deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.tgx-card:hover img {
  transform: scale(1.08);
}

.tgx-highlight {
  border: 2px solid #0d6efd;
  animation: floatY 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite, pulseBorder 2.5s infinite;
  transition: transform 0.4s ease;
}

.tgx-badge {
  border-radius: 10px;
  padding: 12px 18px;
  margin: 10px 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tgx-download-btn {
  margin-bottom: -25px;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.tgx-download-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.7);
}

.tgx-btn {
  border-radius: 10px;
  padding: 10px 0;
  font-weight: 600;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border: none;
  transition: all 0.3s ease;
}

.tgx-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.marque_img{
  margin-right: 50px;
  height: 50px;
}

/* ********review-section********* */
#reviews {
  background-image: url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
}

.review-text {
  transition: all 0.3s ease;
}

.read-more {
  color: white;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
}

.read-more:hover {
  text-decoration: underline;
}

.carousel-control-prev {
  left: 65%;
}

#reviewCarousel .bg-dark {
  background-color: transparent !important;
}

/* Faq-section */

.accordion-button {
  color: white !important;
  background: transparent !important;
}

.accordion-button::after {
  /* background-color: white !important; */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.accordion-item {
  background: transparent !important;
  border: 2px solid white !important;
}

.accordion-body {
  color: white !important;
}

.faq-section {
  width: 90%;
  margin: auto;
}

/* Features */

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: all 0.4s ease;
  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: floatY 4s ease-in-out infinite;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 60%);
  transform: rotate(25deg);
  transition: 1s;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-14px) scale(1.03);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(0, 123, 255, 0.6);

  background: rgba(255, 255, 255, 0.12);
}

.feature-card:hover::before {
  left: 120%;
  opacity: 1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00c6ff;

  text-shadow:
    0 0 8px rgba(0, 212, 255, 0.6),
    0 0 16px rgba(0, 123, 255, 0.6);
}

.row.g-4 {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

/* Gifts */

.gift-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gift-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* Comparision */

.check {
  color: #006942;
  font-size: 25px;
  font-weight: bold;
}

.cross {
  color: #800017;
  font-size: 25px;
  font-weight: bold;
}

.compare-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: floatY 4s ease-in-out infinite;
}

.compare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.compare-card img {
  transition: 0.4s ease;
}

.compare-card:hover img {
  transform: scale(1.05);
}

.social-compare-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

.social-compare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* Banner Background */
.cta-banner {
  color: white;
}

/* Container */
.cta-container {
  width: 90%;
  margin: auto;
  padding: 75px 0;
}

/* Text */
.cta-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: #d0d8ff;
  max-width: 650px;
  line-height: 1.6;
}

/* Download Button */
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 28px;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(135deg, #3aa0ff, #5ed0ff);
  box-shadow:
    0 0 15px rgba(90, 180, 255, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text .small {
  font-size: 14px;
}

.btn-text .big {
  font-size: 18px;
  font-weight: 600;
}

/* mobile-app */
.mobile-app img {
  width: 320px;
}

/* Privacy Policy */
.privacyPolicy h5 {
  margin: 25px 0 10px;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  padding: 40px 80px 20px;
}

.footer-logo {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: solid 1px;
  text-align: center;
}

/* Responsive adjustments */
@media only screen and (max-width: 1024px) {

  .nav-devider {
    margin: 0 10px;
  }

}


@media only screen and (max-width: 768px) {

  .container-fluid {
    width: 90%;
  }

  .goog-te-combo {
    padding: 5px 10px;
    width: 125px;
  }

  #NavButton {
    padding: 5px 10px;
    font-size: 12px;
  }

  .title {
    font-size: 30px !important;
    text-shadow: 2px 2px 3px #313131;
  }

  .hero {
    height: auto;
  }

  .floating-phone img {
    width: 80%;
    height: fit-content;
  }

  .hero-section a {
    font-size: 25px;
  }

  .cta-button-container {
    margin-top: 40px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .bubble-1 {
    top: 25%;
    left: -70%;
    animation-delay: 0.5s;
  }

  .bubble-2 {
    bottom: 5%;
    right: -60%;
    animation-delay: 1s;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h1 {
    font-size: 28px;
  }

  .headline {
    font-size: 25px;
    text-align: center;
  }

  .headescription {
    max-width: 100%;
    text-align: center;
    margin: auto;
  }

  .action-btn {
    align-items: center;
  }

  .tgx-hero-title {
    font-size: 1.5rem;
  }

  .body-content {
    width: 90%;
    margin-top: 100px;
  }

  .marque_img {
    height: 40px;
  }

}


@media only screen and (max-width: 426px) {

  .heading p {
    font-size: 15px;
  }

  nav select {
    float: none;
  }

  /* mobile-app */
  .mobile-app img {
    width: 220px;
  }

  .floating-phone img {
    width: 75%;
    height: fit-content;
  }

  /* footer */
  footer {
    padding: 30px 30px 20px;
  }

  .body-content {
    width: 90%;
    margin-top: 100px;
  }

  .msg {
    font-size: 25px;
    line-height: 1.1;
  }

  .top-detail {
    display: flex;
    flex-direction: column;
  }

  .top-detial {
    color: black;
    font: normal 20px / 1.3em Arial, Helvetica, sans-serif;
  }

  .head-top {
    font-size: 13px;
  }

  .social-card p{
    width: 100% !important;
  }
  .social-card video{
    width: 100%;
    border-radius: 20px;
  }
  .marque_img {
    height: 30px;
  }
}











/* Old Css */


.body-content {
  width: 90%;
  color: white;
  margin: 100px auto 0;
}

.hidden {
  display: none;
}


/********************Registration*****************************************************************/
.TGC-OuterBox {
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  box-shadow: 2px 2px 0.5em rgba(122, 98, 0, 0.55),
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(0, 0, 0, 0.34);
  border: 1px solid #deca73;
  background: linear-gradient(-72deg,
      #dedede,
      #ffffff 16%,
      #dedede 21%,
      #ffffff 24%,
      #454545 27%,
      #dedede 36%,
      #ffffff 45%,
      #ffffff 60%,
      #dedede 72%,
      #ffffff 80%,
      #dedede 84%,
      #a1a1a1);
  border-radius: 8px;
  padding: 2px;
}

.TGC-InnerBox {
  box-shadow: inset 0px 1px 0px 0px #f29c93;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #ffffff),
      color-stop(1, #e3e3e3));
  min-height: 300px;
  border-radius: 8px;
}

.RoyalBlackBar {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #007bff),
      color-stop(1, #033099f7));
  border-radius: 5px 5px 0 0;
}

.RoyalBlackBar1a {
  font: bold 1.3em / 1.3em "Century Gothic", Arial, Helvetica, sans-serif;
  text-align: center;
  width: 100%;
  margin: 0 0 0 0;
  padding: 12px 5px;
  color: #ffffff;
  text-shadow: 0px 4px 3px rgba(255, 255, 255, 0.4),
    0px 8px 13px rgba(255, 222, 69, 0.1), 0px 18px 23px rgba(255, 222, 69, 0.1);
}

.RedBar {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #ff0000),
      color-stop(1, #930606f7));
  height: 55px;
  border-radius: 5px 5px 0 0;
}

.RedBar1a {
  font: bold 1.3em / 1.3em "Century Gothic", Arial, Helvetica, sans-serif;
  text-align: center;
  width: 100%;
  margin: 0 0 0 0;
  padding: 12px 5px 5px 5px;
  color: #ffffff;
  text-shadow: 0px 4px 3px rgba(255, 255, 255, 0.4),
    0px 8px 13px rgba(255, 222, 69, 0.1), 0px 18px 23px rgba(255, 222, 69, 0.1);
}

.BackgroundBox-OutlineSilver {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  box-shadow: 2px 2px 0.5em rgba(122, 98, 0, 0.55),
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(0, 0, 0, 0.34);
  border: 1px solid #deca73;
  background: linear-gradient(-72deg,
      #dedede,
      #ffffff 16%,
      #dedede 21%,
      #ffffff 24%,
      #454545 27%,
      #dedede 36%,
      #ffffff 45%,
      #ffffff 60%,
      #dedede 72%,
      #ffffff 80%,
      #dedede 84%,
      #a1a1a1);
  border-radius: 8px;
  padding: 2px 2px 2px 2px;
  width: 280px;
  margin: 20px 0;
}

#RoyalButton {
  font: normal 16px / 1.3em "Century Gothic", Arial, Helvetica, sans-serif;
  font-variant: small-caps;
  font-weight: 900;
  text-align: center;
  padding: 5px 0 5px 0;
  width: 100%;
  color: #ffffff;
  box-shadow: inset 0px 1px 0px 0px #f29c93;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #007bff),
      color-stop(1, #033099f7));
  border-radius: 8px;
  cursor: pointer;
}

.top-detial {
  color: black;
  font: normal 24px / 1.3em Arial, Helvetica, sans-serif;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.TGC-InnerBox1 {
  box-shadow: inset 0px 1px 0px 0px #f29c93;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #ffffff),
      color-stop(1, #e3e3e3));
  border-radius: 8px;
}

.TGC-InnerBox1 .inn {
  border-radius: 10px;
  box-shadow: 3px 3px 10px #f5f5f5, #222222 0 0 10px inset;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.05, #eeeeee),
      color-stop(1, #ffffff));
}

.selection {
  width: 80%;
  margin: auto;
}

.selection .heading {
  font-size: 25px;
  font-weight: 900;
}


.msg {
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-style: normal;
  font-variant: small-caps;
  font-weight: 700;
  color: transparent;
  background-color: #000000;
  text-shadow: 0px 2px 3px #EBCE53;
  background-clip: text;
  text-align: center;
  padding: 30px 0 30px 0;
}

/*************************************************************************************/

/* Top row text styles - moved outside media query */
.top-row p {
  color: #0074ff;
  /* background-color: #f5f5f5; */
  padding: 15px;
  border-radius: 4px;
  margin: 0 0 20px 0;
  font-size: 25px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
  text-align: left;
  font-weight: bold;
  /* text-shadow: 2px 3px 3px #6589a2; */
  text-align: center;
  /* border-left: 4px solid #0074ff; */
}

/* Mission Section */

.mission-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-list {
  display: inline-block;
  text-align: left;
  padding-left: 0;
  margin: 1rem auto 0;
  list-style: none;
}

.mission-list li {
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}

.mission-list li:last-child {
  border-bottom: none;
}


.video-slider-wrapper {
  position: relative;
  width: 85%;
  margin: auto;
}

/* LEFT button outside */
.video-slider-wrapper .swiper-button-prev {
  left: -45px;
  color: #fff;
}

/* RIGHT button outside */
.video-slider-wrapper .swiper-button-next {
  right: -45px;
  color: #fff;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: #0074ff;
  font-size: 22px;
  z-index: 2;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #0074ff;
  color: white;
}

marquee a {
  text-decoration: none;
}