* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: aliceblue;
  font-family: "Montserrat", sans-serif;
}

/* Apply custom font and general styles for headings */
@font-face {
  font-family: "MyCustomFont";
  src: url("Assests/BigShouldersDisplay-VariableFont_wght.ttf") format("woff2"),
    url("Assests/BigShouldersDisplay-VariableFont_wght.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: white;
}

/* Base styles for body */
html,
body {
  background-color: black;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  color: white;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Common button style used across the site */
.btn-gold {
  background-color: #d1b261;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  display: inline-block;
}

.btn-gold:hover {
  background-color: #b99b4f;
  transform: translateY(-2px);
}

/* Consistent form input styling */
input,
textarea,
select {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d1b261;
  box-shadow: 0 0 0 2px rgba(209, 178, 97, 0.25);
}

/* Styles for navigation */

#nav {
  height: 120px;
  display: flex;
  gap: 5px;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
  position: fixed;
  width: 100%;
  text-transform: capitalize;
  z-index: 99;
  background-color: black;
  transition: all 0.3s ease;
}

#menu {
  display: flex;
  gap: 5px;
  align-items: center;
}

#nav a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 18px;
}

#nav a:hover,
#nav a.active {
  background-color: rgba(209, 178, 97, 0.2);
  text-shadow: 0 0 10px #d1b261;
  font-weight: bold;
}

/* Hamburger for mobile and tablet view */
#hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #d1b261;
  position: absolute;
  left: 20px;
  z-index: 1000;
}

/* Close button */
#close-btn {
  display: none;
  font-size: 30px;
  color: #d1b261;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  right: 20px;
}

/* Hide nav items in tab view */
@media (max-width: 1024px) {
  #nav {
    justify-content: center;
    height: 80px;
  }

  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    z-index: 999;
  }

  #menu.show {
    display: flex;
    gap: 5px;
  }

  #hamburger {
    display: block;
  }

  #close-btn.show {
    display: block;
  }

  #imgss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -85px;
  }

  #imgss img {
    width: 150px;
  }

  #nav a {
    display: block;
    padding: 12px 20px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
    font-size: 18px;
  }

  #nav a:hover,
  #nav a.active {
    background-color: rgba(209, 178, 97, 0.2);
  }
}

/* Mobile View */
@media (max-width: 768px) {
  #nav {
    height: 70px;
    padding: 0 15px;
    justify-content: center;
  }

  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    z-index: 999;
  }

  #menu.show {
    display: flex;
    gap: 5px;
  }

  #hamburger {
    display: block;
    font-size: 24px;
    left: 15px;
  }

  #close-btn.show {
    display: block;
    font-size: 24px;
    right: 15px;
  }

  #imgss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

  #imgss img {
    width: 120px;
  }

  #nav a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
    font-size: 16px;
    margin: 0;
    background-color: transparent;
  }

  #nav a:hover,
  #nav a.active {
    background-color: rgba(209, 178, 97, 0.2);
  }

  #homess {
    margin-top: 0;
  }

  /* Remove any display: none from nav items */
  #nav a {
    display: block !important;
  }

  /* Ensure menu items are visible when menu is shown */
  #menu.show a {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  #nav {
    height: 70px;
    padding: 0 15px;
    justify-content: center;
  }

  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    z-index: 999;
  }

  #menu.show {
    display: flex;
  }

  #hamburger {
    display: block;
    font-size: 24px;
    left: 15px;
  }

  #close-btn.show {
    display: block;
    font-size: 24px;
    right: 15px;
  }

  #imgss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

  #imgss img {
    width: 120px;
  }

  #nav a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
    font-size: 16px;
    margin: 0;
    background-color: transparent;
  }

  #nav a:hover,
  #nav a.active {
    background-color: rgba(209, 178, 97, 0.2);
  }

  #homess {
    margin-top: 0;
  }

  /* Remove any display: none from nav items */
  #nav a {
    display: block !important;
  }

  /* Ensure menu items are visible when menu is shown */
  #menu.show a {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

/* Fix message button positioning */
.message-btn {
  position: absolute;
  right: 0;
  background-color: #d1b261;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 90000;
}

/* Logo size adjustments */
#imgss img {
  width: 220px;
}

@media (max-width: 768px) {
  #imgss img {
    width: 150px;
  }

  #nav {
    justify-content: space-between;
  }

  #imgss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
  }
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  background-color: black;
  overflow: hidden;
  height: 100vh;
}

#imagsssss {
  display: none;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100vh;
  position: relative;
}

.carousel-image {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-image img {
  height: 100vh;
  width: 100%;
  opacity: 0.3;
  z-index: -1;
}

.carousel-text {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
  width: 90%;
}

#page {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  /* Make sure it's above the image */
  color: white;
  text-align: center;
}

#page h1,
#page h2,
#page p {
  margin-top: 10px;
}

#page h1 {
  /* font-family: 'MyCustomFont', sans-serif; */
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 90px;
  text-shadow: 2px 2px 8px #d1b261;
  font-weight: 900;
  color: #e8e8e8;
  position: relative;
}

#page h2 {
  /* font-family: 'MyCustomFont', sans-serif; */
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 30px;
  text-shadow: 2px 2px 8px #d1b261;
  color: #ffffff;
  margin: 10px 0 10px;
}

#page p {
  /* font-family: "Anton", serif; */
  font-size: 34px;
  font-weight: bold;
  color: #d1b261;
}

#page .footer-message {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* margin-top: 20px; */
}

/* Message Button inside Input */
.footer-message {
  color: black;
  display: flex;
  align-items: center;
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.footer-message input {
  padding: 15px;
  height: 50px;
  color: black;
  border-radius: 25px;
  border: 2px solid #ddd;
  width: 300px;
  padding-left: 30px;
}

.zindexxxx {
  z-index: 1000;
}

.message-btn {
  position: absolute;
  right: 10px;
  background-color: #d1b261;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* Slightly larger icon */
}

.message-btn i {
  font-size: 18px;
  /* Adjust icon size */
}

.message-btn:hover {
  background-color: #d1b261;
}

@media (max-width: 1024px) {
  #nav {
    justify-content: space-around;
    padding: 0 20px;
    gap: 10px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.9);
  }

  #imgss img {
    width: 150px;
    margin-left: 0;
  }

  #hamburger {
    display: block;
    right: 20px;
  }

  #nav a {
    display: none;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
  }

  #nav.open a {
    display: block;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.95);
  }

  .bggg {
    margin: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
  }

  /* About Us Page Tab View */
  .about-section {
    padding: 20px;
    margin-top: 100px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }

  .about-image {
    width: 100%;
    height: 300px;
  }

  /* Root Index Page Tab View */
  #page {
    top: 20%;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  #page h1 {
    font-size: 80px;
    margin-bottom: 15px;
    text-align: center;
  }

  #page h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
  }

  #page p {
    font-size: 22px;
    text-align: center;
  }

  .footer-message {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-top: 20px;
  }

  .footer-message input {
    width: 80%;
    max-width: 300px;
    margin: 0;
  }

  .message-btn {
    position: absolute;
    right: 10%;
    margin-top: 0;
    z-index: 10;
  }

  #buttionss {
    position: relative;
    width: 100%;
    margin-top: -30px;
  }

  /* Fix for input field alignment */
  input,
  textarea,
  select {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  /* Fix for navigation text alignment */
  #nav a h4 {
    font-size: 16px;
    margin: 0;
    padding: 10px 0;
  }

  #homess {
    margin-top: 20vh;
  }

  /* Hide nav links on mobile */
  #nav a {
    display: none;
  }

  /* Display links when menu is toggled */
  #nav.open a {
    display: block;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 15px;
  }

  /* #imgss {
      margin: 0;
      width: 170px;
      height: auto;
      z-index: 9999;
  } */

  .bggg {
    margin-left: -20px;
    display: block;
    flex-direction: column;
    width: 100%;
    /* padding: 10px 0; */
    background-color: #000;
  }

  /* Adjust carousel height */
  .carousel {
    background-color: #000;
    height: 90vh;
  }

  #imagsssss {
    width: 180px;
    height: auto;
    display: flex;
    text-align: center;
    z-index: 999;
    opacity: 1;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: -200px;
  }

  .carousel-image img {
    height: 90vh;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
  }

  #page h1 {
    font-size: 50px;
  }

  #page p {
    font-size: 18px;
  }

  .message-btn {
    position: relative;
    margin-right: 0;
    padding: 10px;
    font-size: 16px;
  }

  #moimgss {
    display: block;
    z-index: 1000;
  }

  .moreeee {
    margin-top: 30px;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  #nav {
    justify-content: space-around;
    padding: 0 20px;
    gap: 10px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.9);
  }

  #imgss img {
    width: 150px;
    margin-left: 0;
  }

  #hamburger {
    display: block;
    right: 20px;
  }

  #nav a {
    display: none;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
  }

  #nav.open a {
    display: block;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.95);
  }

  .bggg {
    margin: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
  }

  /* About Us Page Tab View */
  .about-section {
    padding: 20px;
    margin-top: 100px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }

  .about-image {
    width: 100%;
    height: 300px;
  }

  /* Root Index Page Tab View */
  #page {
    top: 15%;
  }

  #page h1 {
    font-size: 60px;
    text-align: center;
  }

  #page h2 {
    font-size: 24px;
    text-align: center;
  }

  #page p {
    font-size: 20px;
    text-align: center;
  }

  .footer-message {
    width: 100%;
  }

  .footer-message input {
    width: 80%;
    max-width: 280px;
  }

  .message-btn {
    right: 15%;
  }

  #buttionss {
    margin-top: -20px;
  }

  /* Fix for input field alignment */
  input,
  textarea,
  select {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  /* Fix for navigation text alignment */
  #nav a h4 {
    font-size: 16px;
    margin: 0;
    padding: 10px 0;
  }

  #homess {
    margin-top: 20vh;
  }

  /* Hide nav links on mobile */
  #nav a {
    display: none;
  }

  /* Display links when menu is toggled */
  #nav.open a {
    display: block;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 15px;
  }

  /* #imgss {
      margin: 0;
      width: 170px;
      height: auto;
      z-index: 9999;
  } */

  .bggg {
    margin-left: -20px;
    display: block;
    flex-direction: column;
    width: 100%;
    /* padding: 10px 0; */
    background-color: #000;
  }

  /* Adjust carousel height */
  .carousel {
    background-color: #000;
    height: 90vh;
  }

  #imagsssss {
    width: 180px;
    height: auto;
    display: flex;
    text-align: center;
    z-index: 999;
    opacity: 1;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: -200px;
  }

  .carousel-image img {
    height: 90vh;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
  }

  #page h1 {
    font-size: 50px;
  }

  #page p {
    font-size: 18px;
  }

  .message-btn {
    position: relative;
    margin-right: 0;
    padding: 10px;
    font-size: 16px;
  }

  #moimgss {
    display: block;
    z-index: 1000;
  }
}

@media (max-width: 480px) {
  #menu.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    gap: 15px;
    justify-content: center;
    padding-top: 80px;
  }

  #nav {
    height: 70px;
    padding: 0 15px;
  }

  #imgss img {
    width: 120px;
  }

  #page h1 {
    font-size: 40px;
    text-align: center;
  }

  #page h2 {
    font-size: 20px;
    text-align: center;
  }

  #page p {
    font-size: 18px;
    text-align: center;
  }

  .about-section {
    padding: 15px;
    margin-top: 80px;
  }

  .about-image {
    height: 250px;
  }

  .footer-message input {
    max-width: 220px;
    height: 40px;
  }

  #buttionss {
    display: none;
  }

  #moimgss {
    display: block;
    object-fit: contain;
  }

  #homess {
    margin-top: 25vh;
  }

  #imagsssss {
    width: 140px;
    margin-top: -150px;
  }

  /* #imgss {
      margin: 0;
      width: 170px;
      height: auto;
      z-index: 9999;
  } */

  /* Display links when menu is toggled */
  #nav.open a {
    display: block;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    margin-left: 40px;
    margin-right: 50px;
    margin-bottom: 15px;
  }

  .bggg {
    /* margin-top: 200px; */
    display: block;
    flex-direction: column;
    width: 130%;
    /* padding: 10px 0; */
    background-color: #000;
  }

  #moimgss {
    display: block;
  }

  .carousel {
    background-color: #000;
    height: 80vh;
  }

  .carousel-image img {
    height: 80vh;
    width: 100%;
  }

  #page h1 {
    font-size: 34px;
  }

  #page h2 {
    font-size: 24px;
  }

  #page p {
    font-size: 0.9rem;
  }

  .message-btn {
    position: absolute;
    margin-right: -50px;
    padding: 8px;
    font-size: 14px;
  }
}

/* footrssss */
/* Footer Container */

/* Footer Container */
.footer {
  background-color: #000000;
  color: white;
  padding: 40px;
  /* margin-top: 500px; */
}

/* Footer Rows */
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-item h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-item ul {
  list-style-type: none;
  margin-bottom: 0px;
  padding: 0;
}

.footer-item ul li {
  margin: 20px 0;
  text-transform: uppercase;
  color: #d1b261;
}

.footer-item ul li a {
  color: #d1b261;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  /* font-family: 'Open Sans', sans-serif; */
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}

#liss {
  /* font-family: 'Open Sans', sans-serif; */
  font-family: "Montserrat", sans-serif;
}

.footer-item ul li a:hover {
  text-decoration: underline;
}

/* Footer Divider */
.footer-divider {
  border-top: 1px solid #444;
  margin: 20px 0;
}

/* Below Footer Section */
.footer-below {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.footer-left img {
  width: 230px;
  height: 150px;
  margin-top: -30px;
  align-items: center;
}

.footer-left p {
  margin-left: -10px;
  /* margin-top: -70px; */
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}

.footer-right h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: normal;
}

/* Message Button inside Input */
.footer-messages {
  color: black;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-messages input {
  padding: 15px;
  height: 50px;
  color: black;
  /* Increased height for better visibility */
  border-radius: 25px;
  border: 2px solid #ddd;
  width: 300px;
  /* Adjusted width for better layout */
  padding-left: 30px;
  /* margin-left: 50px; */
}

.message-btns {
  position: absolute;
  right: 10px;
  background-color: #d1b261;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* Slightly larger icon */
}

.message-btns i {
  font-size: 18px;
  /* Adjust icon size */
}

.message-btns:hover {
  background-color: #d1b261;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1024px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-item {
    text-align: center;

    font-weight: normal;
    margin-bottom: 20px;
  }

  .footer-below {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px 0;
  }

  .footer-below img {
    width: 30px;
    display: block;
    margin: 0 auto;
  }

  .footer-message input {
    width: 250px;
  }

  .footer-message {
    display: none;
    margin-top: 15px;
  }

  .footer-left img {
    width: 200px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
  }

  .footer-left p {
    margin: 10px 0;
    text-align: center;
  }

  .footer-right {
    order: 1;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .footer-right h1 {
    font-size: 22px;
  }

  .footer-messages {
    margin: 0 auto;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    position: relative;
  }

  #availability {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .platforms {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-item h3 {
    font-size: 28px;
  }

  .footer-item ul li a {
    font-size: 18px;
  }

  .footer-below {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Center the content text */
  }

  .footer-message input {
    width: 240px;
  }

  .footer-message {
    display: none;
    margin-left: -10px;
  }

  .footer-left img {
    width: 180px;
  }

  .footer-left p {
    margin-left: -5px;
  }

  .footer-right {
    text-align: center;
    /* Center the text */
    align-items: center;
    /* Center the content vertically */
  }

  .footer-right h1 {
    font-size: 20px;
  }

  .footer-messages {
    max-width: 320px;
  }

  #availability h2 {
    font-size: 22px;
  }

  .platform {
    width: 100px;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-item h3 {
    font-size: 24px;
  }

  .footer-item ul li a {
    font-size: 16px;
  }

  .footer-below {
    flex-direction: column;
    /* align-items: center;
      text-align: center; */
    /* Ensures the footer section below is centered */
  }

  .footer-message input {
    width: 220px;
  }

  .footer-message {
    display: none;
  }

  .footer-left {
    text-align: center;
    /* Center text inside the footer-left section */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-left img {
    width: 150px;
    display: block;
    margin: 0 auto;
    /* Center image */
  }

  .footer-right {
    /* Center the text */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Center the content */
  }

  .footer-right h1 {
    font-size: 18px;
  }

  /* Optional: Adjust padding for even better alignment on small screens */
  .footer-message {
    margin-top: 10px;
    /* margin-left: -80px; */
  }
}

.gif-text,
.gif-texts {
  font-size: 60px;
  font-weight: bold;
  color: transparent;
  text-align: center;
  background: linear-gradient(135deg, #d1b261 50%, #ffffff 50%),
    linear-gradient(-135deg, #d1b261 50%, #ffffff 50%);
  background-size: cover;
  background-position: center;
  font-family: "Montserrat", sans-serif;
  background-clip: text;
  -webkit-background-clip: text;
  padding: 50px;
  background-size: 100% 100%;
}

.gif-texts {
  font-size: 50px;
  /* font-size: 24px; */
  margin-top: -50px;
  /* background: linear-gradient(135deg, #ffcf0e 50%, #ffffff 50%), linear-gradient(-135deg, #ffd21d 50%, #ffffff 50%); */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* 
#newsSection {
  margin-top: 40px;
  overflow-y: auto;
  max-height: 100vh;

} */

.gif-text {
  /* background: linear-gradient(135deg, #ffcf0e 50%, #ffffff 50%), linear-gradient(-135deg, #ffd21d 50%, #ffffff 50%); */
  /* box-shadow: 10px 10px 20px rgba(151, 147, 147, 0.3); */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* moreeeeee */
/* .moreeee{
 
  align-items: center;
  justify-content: center;
} */

#more--wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#more--title {
  font-family: "Montserrat", sans-serif;
  padding-bottom: 20px;
  margin: 5px;
  font-size: 34px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

#more--cards-container {
  display: flex;
  justify-content: space-between;
  /* Distribute space evenly between cards */
  flex-wrap: wrap;
  /* Allow cards to wrap on smaller screens */
}

/* Cards */
.more--card {
  /* background: linear-gradient(135deg, #a28a01, #B8860B); */
  /* Metallic gradient effect */
  background-blend-mode: overlay;
  border-radius: 10px;
  padding: 20px;
  /* margin: 15px; */
  width: 280px;
  /* Reduced width to fit 4 cards in one row */
  height: 320px;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 8px #d1b261;
  transition: transform 0.3s ease;
  border: 1px solid #ccc;
  /* Optional border to enhance metallic look */
}

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

.more--card-title {
  margin-top: 0;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 8px #d1b261;
  font-size: 1.5rem;
}

.more--card-description {
  margin: 15px 0;
  text-shadow: 2px 2px 8px #d1b261;
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

.more--card-icon img {
  position: absolute;
  height: 80px;
  width: 80px;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #more--wrapper {
    padding: 15px;
  }

  #more--title {
    font-size: 30px;
    padding-bottom: 15px;
  }

  #more--cards-container {
    justify-content: center;
    gap: 20px;
  }

  .more--card {
    width: 240px;
    height: 280px;
    padding: 15px;
  }

  .more--card-title {
    font-size: 1.3rem;
  }

  .more--card-description {
    font-size: 0.9rem;
  }

  .more--card-icon img {
    height: 70px;
    width: 70px;
  }
}

/* For screens less than 768px (tablets, phones) */
@media (max-width: 768px) {
  #more--cards-container {
    justify-content: center;
    gap: 15px;
  }

  .more--card {
    width: 90%;
    height: 200px;
    margin: 10px auto;
    padding: 15px;
  }

  .more--card-title {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px #d1b261;
  }

  .more--card-description {
    font-size: 0.85rem;
    margin: 10px 0;
    text-shadow: 1px 1px 4px #d1b261;
  }

  .more--card-icon img {
    height: 60px;
    width: 60px;
    bottom: 15px;
    right: 15px;
  }
}

/* For screens less than 480px (phones) */
@media (max-width: 480px) {
  #more--title {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .more--card {
    height: 180px;
    padding: 12px;
  }

  .more--card-title {
    font-size: 1.1rem;
  }

  .more--card-description {
    font-size: 0.8rem;
    margin: 8px 0;
  }

  .more--card-icon img {
    height: 50px;
    width: 50px;
    bottom: 12px;
    right: 12px;
  }
}

/* FAQ Section Responsive Styles */
@media (max-width: 1024px) {
  .faq-container {
    max-width: 90%;
    margin: 40px auto;
  }

  .faq-container h1 {
    font-size: 28px;
  }

  .faq-header {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    margin: 30px auto;
  }

  .faq-container h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .faq-card {
    padding: 12px;
    margin-bottom: 15px;
  }

  .faq-header {
    font-size: 16px;
    text-shadow: 1px 1px 4px #d1b261;
  }

  .faq-answer {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px #d1b261;
  }

  .toggle-btn,
  .close-btn {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-container {
    max-width: 95%;
    margin: 25px auto;
  }

  .faq-container h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .faq-card {
    padding: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 3px 6px #d1b261;
  }

  .faq-header {
    font-size: 12px;
    white-space: normal;
    text-shadow: 1px 1px 3px #d1b261;
    word-break: normal;
    line-height: 1.3;
  }

  .faq-answer {
    font-size: 12px;
    line-height: 1.4;
    word-spacing: normal;
    text-shadow: 1px 1px 3px #d1b261;
    word-break: normal;
  }

  .toggle-btn,
  .close-btn {
    font-size: 14px;
    padding: 4px;
  }

  .close-btn {
    margin-top: 8px;
  }
}

/* Extra small devices (iPhone SE, etc) */
@media (max-width: 375px) {
  .faq-container h1 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .faq-card {
    padding: 8px;
    margin-bottom: 8px;
  }

  .faq-header {
    font-size: 12px;
    line-height: 1.3;
    padding-right: 0;
    align-items: flex-start;
  }

  .faq-question {
    display: block;
    width: 100%;
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 2px #d1b261;
    padding-right: 5px;
  }

  .faq-answer p {
    font-size: 17px;
    margin-top: 6px;
    text-transform: none;
  }

  .toggle-btn,
  .close-btn {
    font-size: 11px;
    padding: 2px;
    min-width: 20px;
    align-self: flex-start;
    margin-top: 2px;
  }

  .close-btn {
    margin-top: 6px;
    align-self: flex-end;
  }
}

/* Super small devices */
@media (max-width: 320px) {
  .faq-question {
    font-size: 12px;
    width: 75%;
    letter-spacing: -0.2px;
  }

  .faq-answer {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }

  .toggle-btn {
    min-width: 16px;
    font-size: 10px;
  }
}

/* Availability Section */
#availability {
  text-align: center;
  /* margin-right: 50px; */
}

/* Centered Heading */
#availability h2 {
  margin-top: 40px;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

/* Platform Row */
.platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Individual Platform Card */
.platform {
  background: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px #d1b261;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  margin-bottom: 40px;
  margin-top: 10px;
}

/* Hover Effect for Elevation */
.platform:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px #d1b261;
}

/* Icon Styling */
.platform i {
  font-size: 2.5rem;
  color: #d1b261;
  margin-bottom: 5px;
}

/* Platform Name */
.platform span {
  font-size: 18px;
  font-weight: bold;
}

/* Availability Section Responsive Styles */
@media (max-width: 1024px) {
  #availability h2 {
    margin-top: 30px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .platforms {
    gap: 20px;
  }

  .platform {
    width: 110px;
    padding: 15px;
    margin-bottom: 30px;
  }

  .platform i {
    font-size: 2.2rem;
  }

  .platform span {
    font-size: 16px;
  }
}

/* For screens less than 768px (tablets, phones) */
@media (max-width: 768px) {
  #availability h2 {
    margin-top: 25px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .platforms {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .platform {
    width: 100px;
    padding: 12px;
    margin-bottom: 15px;
    margin-top: 5px;
  }

  .platform i {
    font-size: 2rem;
  }

  .platform span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #availability h2 {
    margin-top: 20px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .platform {
    width: 90px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .platform i {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }

  .platform span {
    font-size: 12px;
  }
}

/* Chat Widget Styles */
.chat-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.chat-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle i {
  font-size: 20px;
}

.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background-color: #000;
  border: 1px solid #d1b261;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(209, 178, 97, 0.1);
  border-bottom: 1px solid rgba(209, 178, 97, 0.3);
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-status-indicator {
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border-radius: 50%;
  position: relative;
}

.chat-status-indicator::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.chat-header h3 {
  color: #d1b261;
  margin: 0;
  font-size: 18px;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #d1b261;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s ease;
}

.chat-close-btn:hover {
  transform: scale(1.1);
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(209, 178, 97, 0.5);
  border-radius: 10px;
}

.chat-input-container {
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(209, 178, 97, 0.3);
}

.chat-input-container input {
  flex-grow: 1;
  padding: 12px 15px;
  border-radius: 20px;
  border: 1px solid rgba(209, 178, 97, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 14px;
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  margin-bottom: 5px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.user-message {
  align-self: flex-end;
  background-color: rgba(209, 178, 97, 0.2);
  border-bottom-right-radius: 5px;
  color: white;
}

.bot-message {
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 5px;
  color: white;
}

.chat-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  text-align: right;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-suggestion {
  background-color: rgba(209, 178, 97, 0.1);
  border: 1px solid rgba(209, 178, 97, 0.3);
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-suggestion:hover {
  background-color: rgba(209, 178, 97, 0.3);
}

.typing-indicator {
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: typingAnimation 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-8px);
  }
}

@media (max-width: 480px) {
  .chat-container {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }

  .chat-toggle {
    right: 10px;
  }
}

/* Programs Shortcut Styles */
.programs-shortcut {
  position: fixed;
  bottom: 20px;
  right: 90px;
  z-index: 999;
}

.programs-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #d1b261, #b38b3d);
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.programs-toggle:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(209, 178, 97, 0.4);
}

.programs-toggle::after {
  content: "Schedule Meeting";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.programs-toggle:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .programs-shortcut {
    bottom: 15px;
    right: 80px;
  }

  .programs-toggle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .programs-shortcut {
    bottom: 10px;
    right: 70px;
  }

  .programs-toggle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* faqssss */
/* Centering FAQ Container */
.faq-container {
  max-width: 1200px;
  height: 100%;
  margin: 50px auto;
  text-align: center;
}

/* FAQ Title */
.faq-container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

/* FAQ Card */
.faq-card {
  background: rgba(0, 0, 0);
  border-radius: 12px;
  box-shadow: 0px 4px 8px #d1b261;
  transition: all 0.3s ease-in-out;
  margin: 10px auto;
  padding: 15px;
  /* max-width: 1000px; */
  margin-bottom: 20px;
  /* Added space between FAQ cards */
}

/* Question and Button */
.faq-header {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  text-shadow: 2px 2px 8px #d1b261;
  font-size: 20px;
  font-weight: bold;
  /* padding: 10px; */
}

/* Toggle Button */
.toggle-btn,
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #d1b261;
  transition: 0.3s;
}

.toggle-btn:hover,
.close-btn:hover {
  color: #d1b261;
}

/* Answer Section (Hidden by Default) */
.faq-answer {
  font-size: 22px;
  /* font-family: 'Montserrat', sans-serif; */
  text-transform: capitalize;
  word-spacing: 2px;
  text-shadow: 2px 2px 8px #d1b261;
  display: none;
  /* padding: 15px; */
  line-height: 1.8;
  text-align: left;
  /* font-weight: bold; */
  margin-top: 10px;
}

/* Expanded Card */
.faq-card.active {
  background: rgba(0, 0, 0, 0.9);
  /* box-shadow: 0px 8px 20px rgba(255, 215, 0, 0.5); */
}

/* Show Answer when Expanded */
.faq-card.active .faq-answer {
  display: block;
}

/* Close Button */
.close-btn {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  text-align: right;
}

@media (max-width: 768px) {
  .bggg img {
    width: 100px;
    z-index: 10000;
  }
}

@media (max-width: 480px) {
  .bggg img {
    width: 80px;
    object-fit: contain;
    z-index: 10000;
  }
}

/* Fix for screen sizes between 768px and 1024px */
@media (min-width: 769px) and (max-width: 1023px) {
  /* Navigation fixes */
  #nav {
    height: 90px;
    justify-content: center;
    padding: 0 20px;
  }

  #hamburger {
    display: block !important;
    left: 20px;
  }

  #close-btn.show {
    display: block;
    right: 20px;
  }

  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    z-index: 999;
  }

  #menu.show {
    display: flex;
    gap: 20px;
  }

  #imgss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

  #imgss img {
    width: 160px;
  }

  #nav a {
    display: block !important;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 178, 97, 0.2);
    font-size: 16px;
    opacity: 1;
    visibility: visible;
  }

  #homess {
    margin-top: 0;
  }

  /* Ensure all menu items are displayed */
  #menu a {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  #menu.show a {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }

  /* Footer list item fixes */
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-item {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-below {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Additional fix for all screen sizes */
@media (max-width: 1024px) {
  #menu.show a {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }

  #menu a {
    display: block;
  }

  #menu.show {
    display: flex;
    gap: 15px;
  }
}
