:root {
  --c-1: hsl(0, 0%, 47%);
  --c-2: hsla(29, 77%, 36%, 0.832);
  --c-3: hsl(0, 0%, 93%);
  --c-4: hsl(0, 0%, 27%);

  --transition-timing: 0.4s ease;

  --font-extra: "Noto Serif Display", serif;

  --icon-h: 20px;
  --icon-w: 20px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
main,
menu,
section,
summary {
  display: block;
}

a {
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: #333;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

body {
  min-height: 100%;
  color: #333;
  overflow: hidden;
  background-color: #fff;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.loader {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999;
}

.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f3f3f3;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.preloader-logo {
  width: 70%;
  height: fit-content;
  animation: scaling 5s;
}



@keyframes scaling {
  0% {
    opacity: 0;
    transform: scale(10);
  }

  50% {
    opacity: 1;
    transform: scale(.8);
  }

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



img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.container {
  margin: 0 2rem;
}

.mobile-bottom-navigation,
.mobile-navigation-menu {
  display: none;
}

.sticky-header {
  text-align: center;
  background-color: #f1edea;
  border-bottom: 1px solid #c98a4f60;
  position: fixed;
  top: -100px;
  padding: 4px 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 10;
}

.collection-pdt {
  padding: 6.4rem 4.8rem;
  background-color: #f1edea;
}

.collection-pdt div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.collection-pdt div img {
  width: 100%;
  object-fit: cover;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  /* Adjust as needed */
  max-height: 80%;
}

.close {
  color: #fff;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}

.about {
  background-color: #f1edea;
  text-align: center;
  padding: 2.4rem 3.6rem;
  letter-spacing: 1.5px;
  line-height: 2;
}

.about p {
  font-size: 2.4rem;
}

.sticky-header span {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 2px;
}

.top-header {
  background-color: #f1edea;
  border-bottom: 1px solid #9c551260;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sliding-text {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #000;
}

.icons {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.icon {
  width: 20px;
  height: 20px;
  color: #000;
  display: grid;
  place-content: center;
}

.icon ion-icon {
  height: 18px;
  width: 18px;
}

.mid-header {
  padding: 2px 0;
  background-color: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mid-head-text {
  color: #f4f4f4;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0;
}

.title-heading {
  margin: 6.4rem 0;
}

.title-heading h1 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  color: #222;
  line-height: 150%;
  letter-spacing: 1px;
  font-weight: 400;
}

.title-heading h1 span {
  margin-top: 5px;
  font-size: 15px;
  color: #444;
  word-spacing: 1px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 2rem;
  align-items: center;
}

.title-heading h1 span:after,
.title-heading h1 span:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  height: 5px;
  background-color: #f8f8f8;
}

.bottom-header {
  background-color: #f1edea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.bottom-header .header-logo {
  max-width: 25vw;
}

.intro-slideshow img {
  width: 100vw;
  height: auto;
}

.desktop-navigation-menu {
  display: block;
}

.desktop-menu-category-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-menu-category-list .menu-category:not(:nth-child(2)) {
  position: relative;
}

.desktop-menu-category-list .menu-category>.menu-title {
  position: relative;
  color: #1e2c3d;
  letter-spacing: 1px;
  font-size: 2.2rem;
  border-right: 2px solid #092135bf;
  text-transform: capitalize;
  padding: 0 2rem;
  transition: var(--transition-timing);
}

.desktop-menu-category-list .menu-category>.menu-title:hover {
  color: hsla(29, 77%, 36%, 0.832);
}

.desktop-menu-category-list .menu-category>.menu-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: hsla(29, 77%, 36%, 0.832);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-timing);
}

.desktop-menu-category-list .menu-category>.menu-title:hover::after {
  transform: scaleX(1);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f1edea;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
  border: 1px solid hsl(0, 0%, 93%);
  box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
  border-radius: 1rem;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-timing);
  z-index: 5;
}

.desktop-menu-category-list .menu-category:hover>.dropdown-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-panel-list .menu-title a {
  color: hsl(0, 0%, 27%);
  font-size: 2rem;
  letter-spacing: 1px;
  border-bottom: 1px solid hsla(29, 77%, 36%, 0.832);
  margin-bottom: 10px;
}

.panel-list-item {
  padding-top: 8px;
}

.panel-list-item a {
  color: hsl(0, 0%, 47%);
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: capitalize;
  transition: var(--transition-timing);
}

.panel-list-item a:hover {
  color: hsla(29, 77%, 36%, 0.832);
}

.panel-list-item:not(:last-child) a {
  padding: 4px 0;
}

.panel-list-item:last-child {
  margin-top: 20px;
}

.panel-list-item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
}

.panel-list-item img:hover {
  transform: scale(1.1);
  transition: var(--transition-timing);
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: #f1edea;
  padding: 20px 0;
  border-radius: 1rem;
  border: 1px solid hsl(0, 0%, 93%);
  box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-timing);
  z-index: 5;
}

.desktop-menu-category-list .menu-category:hover>.dropdown-list {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-list .dropdown-item a {
  color: hsl(0, 0%, 47%);
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 4px 20px;
  transition: var(--transition-timing);
}

.dropdown-list .dropdown-item a:hover {
  color: hsla(29, 77%, 36%, 0.832);
}

.hero-section {
  height: auto;
  width: 100%;
  background-color: #f1edea;
}

.hero-section .left-box h2 {
  margin-top: 0;
}

.social-icons-box-2 {
  display: none;
}

.grid-2-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  padding: 8.4rem 8.4rem 0 8.4rem;
}

.left-box {
  position: relative;
  padding: 3.2rem 0;
}

.left-box h2 {
  font-family: "Noto Serif Display", serif;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 4.8rem;
}

.left-box p {
  padding: 1.4rem 0;
  font-family: sans-serif;
  line-height: 1.1;
  opacity: 0.7;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.left-box .three-btn {
  display: flex;
  gap: 1.6rem;
  justify-content: left;
  align-items: center;
  padding-bottom: 3.6rem;
}

.three-btn span {
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-family: sans-serif;
  color: rgb(152, 133, 11);
  border: 1px solid rgb(152, 133, 11);
  padding: 0.4rem 1.2rem;
  border-radius: 10px;
}

.left-box .hero-s {
  width: 30%;
  border-radius: 10px;
}

.left-box .three-img-right {
  padding: 4.8rem 2.4rem 0 0;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1.6rem;
}

.left-box .three-img-right img {
  width: 13%;
  border-radius: 50%;
}

.left-box .three-img-right span {
  font-size: 2rem;
  padding: 0 2rem;
  opacity: 0.7;
  line-height: 1;
}

.left-box .arrow {
  position: absolute;
  width: 15%;
  opacity: 0.4;
  transform: scaleX(-1);
  top: 52%;
  right: 35%;
}

.right-box {
  position: relative;
  display: grid;
  place-content: center;
}

.right-box img {
  width: 100%;
}

.right-box .top-left,
.right-box .bottom-right {
  position: absolute;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
}

.right-box .top-left {
  top: 15%;
  left: 15%;
}

.right-box .bottom-right {
  bottom: 20%;
  right: 10%;
}

.right-box span {
  font-size: 2rem;
  color: hsla(29, 77%, 36%, 0.832);
}

.mid-symbol {
  height: 8.4rem;
  width: 100%;
  background-color: #f1edea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mid-symbol svg {
  color: rgba(123, 109, 16, 0.602);
  height: 48px;
  width: 48px;
}

.collection {
  margin: 0 auto;
}

.collection-box {
  margin: 3.2rem 0;
  display: grid;
  place-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.collection-box div {
  width: 60%;
  border: 1px solid #333;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border-radius: 10px;
}

.collection-box div img {
  border-radius: 10px;
}

.gallery-slider {
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.to-left-box,
.to-right-box {
  overflow: hidden;
  white-space: nowrap;
}

.to-left-box img,
.to-right-box img {
  display: inline-block;
  width: calc(20% - 10px);
  /* Adjust width as needed and subtract the space between images */
  margin-right: 10px;
  /* Space between images */
  margin-bottom: 4.8rem;
  /* Margin bottom for the boxes */
  height: auto;
  cursor: pointer;
  object-fit: cover;
  /* Ensure images maintain aspect ratio */
  aspect-ratio: 1 / 1;
  /* Set aspect ratio to 1:1 (square shape) */
}

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  backdrop-filter: blur(8px);
  /* Blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen-image {
  max-width: 90%;
  /* Adjust maximum width of the image */
  max-height: 90%;
  /* Adjust maximum height of the image */
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 26px;
  cursor: pointer;
  color: white;
  font-size: 36px;
}

.slick-dots {
  display: none;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 6.4rem;
  text-align: center;
}

.mobile {
  display: none;
}

.contact-box {
  display: none;
  place-content: center;
  margin: 4.8rem 0;
  gap: 3.6rem;
  grid-template-columns: repeat(3, 1fr);
}

.contact-box .contact-place {
  text-align: center;
  width: 30vw;
  padding: 2.4rem;
}

.contact-box .contact-place img {
  width: 50%;
}

/* Mobile Navigation Menu Styles */
.phone {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  align-items: center;
  gap: 8px;
}

.phone div {
  display: grid;
  place-content: center;
}

.address ion-icon {
  position: relative;
  top: 4px;
}

#map {
  height: 60vh;
  width: 100vw;
}

.slide img {
  width: 100vw;
  height: auto;
}

.custom-dots-class {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 1.2rem 0;

  li {
    display: inline-block;
    margin: 0 5px;
  }

  button {
    font-size: 12px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #121c3adb;
    background-color: #ffffff9b;
    cursor: pointer;
    font-size: 0;
  }

  .slick-active button {
    background-color: #121c3adb;
  }
}

.standard {
  position: relative;
}

.standard img {
  width: 100vw;
  border-radius: 12px;
  height: auto;
}

.std-grid {
  margin: 4.8rem 2rem;
}

.grid-5-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-content: center;
  gap: 2.4rem;
}

.grid-5-box div {
  overflow: hidden;
}

.grid-5-box img {
  filter: brightness(1.05);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.grid-5-box div {
  position: relative;
  overflow: hidden;
}

.std-box {
  position: absolute;
  z-index: 2;
  bottom: 0;
  /* Adjusted from top to bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.grid-5-box div:hover .std-box {
  opacity: 1;
}

.grid-5-box div:hover img {
  filter: blur(1px);
  transform: translateY(-20%);
  transition: var(--transition-timing);
}

.grid-5-box h5 {
  font-size: 2.4rem;
  font-family: var(--font-extra);
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #312f2f;
}

/* .gallery {
  margin-bottom: 7.2rem;
} */

.container2 {
  height: 50vh;
  display: flex;
  align-items: center;
}

.prev,
.next {
  height: 100%;
  width: 30vw;
  display: flex;
  align-items: center;
}

.prev {
  justify-content: end;
}

.next {
  justify-content: start;
}

.prev ion-icon,
.next ion-icon {
  font-size: 2em;
  color: rgb(21, 20, 20);
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.prev ion-icon:hover,
.next ion-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

.gallery {
  position: relative;
  height: 70%;
  width: 100%;
  display: flex;
  align-items: center;
}

.card {
  position: absolute;
  width: 30%;
  transition: all 0.3s ease-in-out;
  border-radius: 25% 0 25% 0;
  overflow: hidden;
}

.card img {
  width: 100%;
}

.position1 {
  left: 35%;
  z-index: 3;
  transform: scale(1);
  opacity: 1;
}

.position1:hover {
  transform: scale(1.2);
}

.position2 {
  left: 65%;
  z-index: 2;
  transform: scale(0.8);
  opacity: 0.6;
}

.position3 {
  left: 55%;
  z-index: 1;
  transform: scale(0.6);
  opacity: 0.2;
}

.position4 {
  left: 15%;
  z-index: 1;
  transform: scale(0.6);
  opacity: 0.2;
}

.position5 {
  left: 5%;
  z-index: 2;
  transform: scale(0.8);
  opacity: 0.6;
}

.feel-special {
  position: relative;
  background-color: #3b3a3a;
  border-radius: 10px;
}

.feel-special img {
  width: 100%;
  margin: 0;
  opacity: 0.65;
}

.feel-special .special-text-box {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feel-special .special-text-box h4 {
  color: #fff;
  padding: 0.8rem 0 2.4rem 0;
  font-size: 7.2rem;
  font-family: var(--font-extra);
}

.special-text-box span,
.special-text-box p {
  color: #fff;
  font-family: "Courier New", Courier, monospace;
}

.special-text-box span {
  font-size: 2rem;
}

.special-text-box p {
  font-size: 1.6rem;
  letter-spacing: 2px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.special-text-box button {
  font-size: 1.6rem;
  font-family: var(--font-extra);
  margin-top: 2rem;
  padding: 0.8rem 2.4rem;
  letter-spacing: 1px;
}

footer {
  background-color: #f1edea;
  color: #222;
}

footer .grid-4-box {
  padding: 3.6rem 4.8rem;
  gap: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

footer .grid-4-box img {
  width: 70%;
  height: auto;
}

footer .grid-4-box ul li {
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 2;
}

footer .grid-4-box span {
  font-size: 2.4rem;
  line-height: 2;
  padding-bottom: 1px;
  border-bottom: 1px solid #312f2f;
  font-family: var(--font-extra);
}

.grid-4-box div:first-child {
  grid-column: 1/3;
}

.grid-4-box div:nth-child(6) {
  grid-column: 3/5;
}

footer .icons {
  align-items: flex-start;
  justify-content: left;
  padding-top: 1.2rem;
  gap: 2rem;
}

footer .icons .icon ion-icon {
  height: 24px;
  width: 24px;
  opacity: 0.9;
}

.bottom-footer {
  padding: 1.4rem 0 0.6rem 0;
  text-align: center;
  background-color: inherit;
  border-top: 1px solid #4f464646;
  color: inherit;
}

.bottom-footer p {
  font-size: 1.4rem;
  letter-spacing: 1.2px;
  font-family: "Courier New", Courier, monospace;
}

.video-collection {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
}

.video-box {
  width: 33.33%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 1px;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.sliding-section-22 .to-left-box-22,
.sliding-section-22 .to-right-box-22 {
  overflow: hidden;
  width: 100%;
  background-color: white;
  border: 1px solid #e8e8e8;
  padding: 1.2rem 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: sans-serif;
  color: black;
}

.sliding-section-22 .marquee-22 {
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-22 strong {
  display: inline-block;
  padding-left: 100%;
}

.sliding-section-22 .to-left-box-22 .marquee-22 strong {
  animation: marquee-l 180s linear infinite;
}

.sliding-section-22 .to-right-box-22 .marquee-22 strong {
  animation: marquee-r 180s linear infinite;
}


@keyframes marquee-l {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-r {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-slider {
  position: relative;
  width: 100vw;
  height: auto;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  max-height: 100vh;
}

/* General Form Styling */
form {
  background-color: #f8f9fa;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Montserrat', sans-serif;
}

/* Form Labels */
.form-label {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Form Inputs and Textareas */
.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  border-color: #003a70;
  box-shadow: 0 0 8px rgba(0, 58, 112, 0.25);
  outline: none;
}

/* Textarea Styling */
textarea.form-control {
  resize: vertical;
}

/* Button Styling */
.btn--form {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #003a70;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.btn--form:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn--form:active {
  transform: translateY(0);
}

/* Form Group Spacing */
.form-group {
  margin-bottom: 1.5rem;
}

/* Message Textarea Grid */
.msg-grid {
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  form {
    padding: 1.5rem;
  }

  .form-label {
    font-size: 1.4rem;
  }

  .form-control {
    font-size: 1.4rem;
  }

  .btn--form {
    font-size: 1.4rem;
  }
}

/* Optional Styling for Tables */
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow-x: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

th,
td {
  border: 1px solid #dee2e6;
  text-align: center;
  font-size: 1.6rem;
  padding: 1rem;
}

th {
  background-color: #003a70;
  color: #fff;
  font-weight: 700;
}

td {
  color: #333;
  font-weight: 500;
}

tr:nth-child(odd) {
  background-color: #f8f9fa;
}

tr:nth-child(even) {
  background-color: #ffffff;
}