body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.card {
  background-color: white;
  width: 100%;
  /* width: 350px; */
  height: 100vh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 600px) {
  .card {
    max-width: 400px;
    display: flex;
    border-left: solid 1px rgb(168, 168, 168);
    border-right: solid 1px rgb(168, 168, 168);
  }
}

.scrollable-content {
  flex: 1;
  overflow-y: auto;
}
.home-page {
  margin: 0;
}
section {
  margin: 20px 0;
  min-height: 100vh;
}

.header {
  /* background-color: var(--primary-color); */
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: white;
  position: relative;
  z-index: 1;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 20px);
  background-color: var(--primary-color2);
  z-index: -1;
}

.header::before {
  left: -20px;
  clip-path: polygon(0 0, 40% 0, 70% 100%, 0% 100%);
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  font-weight: bold;
}

.logo img {
  width: 50px;
  height: auto;
}

.create {
  color: black;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 12px;
  margin-top: 5px;
}

.profile {
  margin-top: 50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--secondary-color);
}

.profile img {
  width: 100%;
  height: auto;
}

.company {
  text-align: right;
}

.company img {
  width: 50px;
  height: auto;
}

.tagline {
  font-size: 12px;
  color: #555;
}

.name-info {
  padding: 5px 20px;
  /* text-align: center; */
  position: relative;
  z-index: 2;
  color: white;
  width: fit-content;
}

.name-info::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -20px;
  width: calc(100% + 20px);
  height: calc(100% + 5px);
  background-color: var(--secondary-color);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  z-index: -1;
  /* border: 3px solid white; */
}

.name-info h2 {
  line-height: 1.1em;
  margin: 0;
  font-size: 20px;
}

.name-info p {
  margin: 5px 0;
  line-height: 0.8em;
  font-size: 15px;
}

.info {
  padding: 20px;
  background-color: #2d4a9d;
  color: white;
  text-align: center;
  position: relative;
}

.info h2 {
  margin: 0;
  font-size: 20px;
}

.info p {
  margin: 5px 0;
}

.contact-info {
  font-weight: 600;
  margin-top: 10px;
  margin-left: 10px;
  margin-left: 20px;
  text-align: left;
  color: var(--primary-color);
}

.contact-info i {
  background-color: var(--primary-color);
  color: white;
  margin-right: 5px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  line-height: 30px;
  /* background-color: #4489C5; */
  font-size: 18px;
}

.contact-info span {
  display: flex;
  align-items: center;
}

.contact-info span p {
  max-width: 80%;
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.social-media {
  display: flex;
  gap: 10px;
  justify-content: space-around;
  padding: 10px;
  background-color: var(--secondary-color);
  width: fit-content;
  margin: auto;
  border-radius: 50px;
}

.social-media a {
  text-decoration: none;
  color: white;
  height: 40px;
}

.social-media img {
  width: 30px;
  height: auto;
  /* margin: 0 10px; */
  background-color: white;
  border: 5px solid white;
  border-radius: 50%;
}

.actions {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  padding: 10px;
  font-size: small;
  justify-items: center;
  align-items: center;
  /*padding-top:35px;*/
}

.actions i {
  color: var(--primary-color2);
  font-size: 40px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
  margin: 0;
}
.actions button {
  /* background-color: var(--primary-color); */
  color: black;
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  width: 90px;
  background-color: white;
}

.actions img {
  width: 40px;
}

.whatsapp {
  display: flex;
  padding: 10px;
}

.whatsapp input {
  flex: 1;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.whatsapp button {
  -webkit-appearance: none;
  padding: 10px;
  font-size: 13px;
  background-color: #51b14d;
  opacity: 0.9;
  color: #fff;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(255, 251, 251, 0.1) inset;
  margin-left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.whatsapp button i {
  margin-right: 5px;
}

.footer {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  position: static;
  bottom: 0;
  width: calc(100% - 20px);
}

.footer button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 10px;
  white-space: nowrap;
}

.footer button i {
  font-size: 30px;
}

.footer button p {
  margin: 0;
}

.info::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 0% 100%);
}

.info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 40px solid var(--primary-color);
  border-left: 40px solid transparent;
}


/* About Us*/
.About-us > .content {
    padding-top: 10px;
}
.About-us > .content > div > span {
    padding: 0 15px;
}
.About-us > .content >  div {
  margin: 25px;
  margin-top: 15px;
  background-color: #efefef;
  color: grey;
  padding: 0.1px;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
}
.download {
  position: relative;
  display: flex;
  justify-content: center;
  height: 40px;
}
.download button{
  width: 75%;
  border: 0;
  background: var(--primary-color2);
  color: var(--button-color);
  font-size: 1em;
  cursor: pointer;
}


/* Videos */
#video-section .youtube-block {
  width: 80%;
  max-width: 400px;
  margin: 10px auto;
  padding: 10px;
  background-color: #e7e7e7;
  border-radius: 20px;
}

#video-section .youtube-block iframe {
  border-radius: 20px;
}

/* Products-Services */

.product-card-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;   
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.product-card {
  background: #f4f4fa;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 20px auto;
  width: 90%;
  flex: 0 0 100%;                /* don't grow/shrink, exactly 100% of container */
  max-width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.card-carousel { 
  position: relative;
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.card-carousel .carousel-viewport {
  overflow: hidden;
  flex: 1;
}
.card-carousel .carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.card-carousel img {
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: 4px;
}

.carousel-arrow {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  color: #333;
  user-select: none;
  z-index: 2;
}

.left-arrow  { margin-right: 0.5rem; }
.right-arrow { margin-left: 0.5rem; }

.carousel-arrow:hover {
  color: #0073e6;
  transform: scale(1.1);
}

.product-card h3 {
  margin: 0;
  text-align: center;
  color: #212a53;
  font-weight: 800;
}

.product-card p {
  margin-top: 5px;
  color: #656565;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-footer {
  display: grid;
  justify-items: center;
  grid-row-gap: 3px;
  align-items: center;
  margin-top: 5px;
  align-content: space-evenly;
}

.product-description {
  font-weight: 800;
  color: #212a53;
}

.product-card button {
  background-color: var(--primary-color2);
  color: var(--button-color);
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: medium;
}

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

.readmore-toggle {
  color: #007BFF;
  cursor: pointer;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
}


.catalogue-badges {
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 10px;
  display: flex;
  gap: 10px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}
.badge.active {
  background-color: #007BFF;
  color: white;
}
/* Images Gallery */

.image-layout-1 .catalogue {
  padding: 5px;
  border: 2px solid black;
  border-radius: 15px;
  margin: 10px;
}

.image-layout-1 .catalogue-title {
  font-size: large;
  background-color: #edebeb;
  font-weight: bolder;
  padding: 10px;
  border-radius: 15px;
  color: var(--primary-color);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.image-layout-1 .catalogue-title h2 {
  margin: 0;
  width: fit-content;
}
.image-layout-1 .catalogue-title i {
  font-size: xx-large;
  cursor: pointer;
}

.image-layout-1 .catalogue-image-container {
  position: relative;
  margin-top: 5px;
  height: 150px;
}

.image-layout-1 .catalogue-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  z-index: 1;
  /*position: absolute;*/
}

.image-layout-1 .catalogue-image-container img:last-child{
    width:400px !important;
}
.image-layout-1 .catalogue-image-container div {
  width: 150px;
  position: absolute;
  z-index: 10;
  transition: all 0.5s;
  /* box-shadow: 20px 0px 20px 0px rgb(0, 0, 0, 1); */
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: flex;
flex-direction: row-reverse;
/*overflow: scroll;*/
}

.image-layout-1 .catalogue-image-container div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 100%;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  border-radius: 10px;
}

.image-layout-1 .catalogue-image-container div:hover {
  transform: scale(0.9);
}

.image-layout-2 .disabled,
.image-layout-3 .disabled {
  color: grey;
}

.image-layout-2 .catalogue-header,
.image-layout-3 .catalogue-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: xx-large;
  color: var(--primary-color);
  margin: 0 10px;
}

.image-layout-2 .catalogue-title,
.image-layout-3 .catalogue-title {
  font-size: large;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 15px;
  color: white;
  text-align: center;
  margin: 15px 10px;
  width: -webkit-fill-available;
}

.image-layout-2 .catalogue-description {
  text-align: center;
}

.image-layout-2 .catalogue-image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.image-layout-2 .catalogue-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* Ensures square cropping */
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.image-layout-2 .catalogue-image-container img:hover {
  transform: scale(1.05);
}

.image-layout-3 .catalogue-description {
  text-align: center;
  border: 1px solid black;
  border-radius: 10px;
  margin: 5px 10px;
  padding: 5px;
}

.image-layout-3 .catalogue-image-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.image-layout-3 .catalogue-image-container img {
  width: 100%;
  max-width: 80%;
  max-height: 80vh;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.image-layout-3 .catalogue-image-container i {
  font-size: 40px;
  cursor: pointer;
}

/* Add the back button styles */
.back-button {
  display: block;
  margin: 15px 10px;
  padding: 10px;
  font-size: medium;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.back-button:hover {
  background-color: darken(var(--primary-color), 10%);
}

/* Hide elements by default */
.hidden {
  display: none;
}

.catalogue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.catalogue-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-image-container img {
  max-width: 100%;
  max-height: 400px;
}

/* Videos */
#video-section .youtube-block {
  width: 80%;
  max-width: 400px;
  margin: 10px auto;
  padding: 10px;
  background-color: #e7e7e7;
  border-radius: 20px;
} 

#video-section .youtube-block iframe {
  border-radius: 20px;
}

/*Feedback*/
.feedback-bg {
  background: #8161611c;
  /*height: 41vh;*/
  margin: 25px;
  margin-top: 36px;
  border-radius: 6%;
  padding: 15px;
}
.feedback-bg h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--primary-color1);
  font-size: 1em;
  font-weight: 800;
}
.emojis {
    display: flex;
    justify-content: center;
}
.emojis button {
  font-size: 35px;
  border: 0;
  color: var(--primary-color1);
  cursor: pointer;
}
.feedback-form {
  justify-content: center;
  margin-top: 12px;
  grid-gap: 10px;
  display: grid;
  grid-template-columns: 100%;
  /*height: 72px;*/
}
#fullname2 {
  border: 0;
  width: 75%;
  padding: 9px;
}
#feedback {
  border: 0;
  width: 75%;
  height: 60px;
  top: 30px;
  padding: 9px;

}
.feedback-name {
  display: flex;
  justify-content: center;

}
.feedback-details {
  display: flex;
  justify-content: center;
}
.feedback-submit {
  text-align: center;
}
.feedback-submit button {
  background-color: var(--primary-color2);
  color: var(--button-color);
  padding: 4px 15px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin: auto;
  font-weight: bold;
  top: 6px;
}

feedback-name button,.back-button,.Titlecard button,.download-button {
    background: linear-gradient(90deg, var(--first-color)  20%, var(--second-color) 76%);
}

/* Appointment Form */
.apponitment-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.page-heading::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  z-index: -1;
}
.page-heading::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--primary-color);
  clip-path: polygon(10% 0, 90% 0, 80% 100%, 20% 100%);
  z-index: -1;
}

.page-heading {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
  font-weight: 500;
  font-size: 23px;
}

.apponitment-form .form-wrapper, .feedback-form .form-wrapper {
  background-color: #efefef;
  margin: 30px;
  padding: 20px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* width: 100%; */
  max-width: 400px;
}

.apponitment-form label {
  display: block;
  margin-bottom: 5px;
}

.apponitment-form input[type="text"],
.apponitment-form input[type="email"],
.apponitment-form input[type="tel"],
.apponitment-form input[type="date"],
.apponitment-form input[type="time"],
.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form input[type="tel"],
.feedback-form input[type="date"],
.feedback-form input[type="time"]  {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.apponitment-form input[type="date"] {
  width: 100%;
}

.apponitment-form input[type="time"] {
  width: 100%;
}

.apponitment-form .submit-button {
  text-align: center;
}

.apponitment-form button, .feedback-form button {
  background-color: var(--primary-color2);
  color: #fff;
  padding: 5px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  /* width: 100%; */
  margin: auto;
  font-weight: bold;
}

.apponitment-form button:hover {
  background-color: #d9534f;
}

@media (max-width: 400px) {
  .apponitment-form .form-wrapper {
    max-width: 95%;
  }
}


/* payment styles */

.products{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 25px);
    background-size: cover;
    height: auto;
    margin: 20px 0;
    gap: 15px;
}
.producttop{
    width: 100%;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  width: 80%;
}

.payment-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-info .row p {
  margin: 0;
  font-size: 16px; 
  color: grey;
}


.qr-img{
    height: auto;
    width: 120px;
    object-fit: cover;
    margin: auto;
}

.aboutform{
    gap: 15px;
    margin: 20px 0;
    background-color: #EEEEED;
    border-radius: 25px;
    height: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}



html {
  /* color scheme 1 */
  /* --primary-color: #f28726;
  --secondary-color: #253879;
  --primary-color2: #f28726;
  --primary-overlay-color: #ffffff; */

  /* color scheme 2 */
  --primary-color: #764e25;
  --secondary-color: #764e25;
  --primary-color2: #c59c6d;
  --primary-overlay-color: #ffffff;

  /* color scheme 3 */
  /* --primary-color: #f28726;
  --secondary-color: #253879;
  --primary-overlay-color: #ffffff; */

  /* color scheme 4 */
  /* --primary-color: #f28726;
  --secondary-color: #253879;
  --primary-overlay-color: #ffffff; */

  /* color scheme 5 */
  /* --primary-color: #f28726;
  --secondary-color: #253879;
  --primary-overlay-color: #ffffff; */

  /* color scheme 6 */
  /* --primary-color: #f28726;
  --secondary-color: #253879;
  --primary-overlay-color: #ffffff; */
}

.text-center{
    text-align:center !important;
}

.d-block{
    display:block !important;
}

.absolute{
    position:absolute !important;
}

.r-40{
    right:40px !important;
}

.w-full{
    width:100% !important;
}
.w-80{
    width:80% !important;
}

.w-50{
    width:50% !important;
}
.w-45{
    width:45% !important;
}

.cobranding .card{
  display: flex;
  flex-direction: row;
  border: 1.3px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 90%;
  font-family: Arial, sans-serif;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 5px auto;
  height:auto !important;
}

.cobranding .card-image {
  flex-shrink: 0;
  width: 70px;
  /*height: 100%;*/
  border-radius: 5px;
  margin-right: 10px;
  /*margin-top: 7px;*/
  overflow: hidden;
}

.cobranding .card-content {
  /*flex-grow: 1;*/
  width: 70%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  word-break: break-word;
  white-space: normal;
  height: auto;
}

.cobranding .card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.cobranding .card-text{
    font-size:13px !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.cobranding .card-subtitle {
  font-weight: bold;
  color: black;
  font-size: 14px;
  margin: 1px 0;
}

.cobranding .second-line {
  margin: 3px 0 0 0;
}

.cobranding .fw-normal {
  font-weight: normal !important;
}
.cobranding .text-gray {
  color: #585858 !important;
}

.cobranding .card-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cobranding .card-btns i:hover {
  color: #000 !important;
}

.cobranding .card-btns i {
  cursor: pointer;
}

.cobranding .share{
    font-size:20px !important;
}

.d-flex{
    display:flex !important;
}

.justify-content-between{
    justify-content:space-between !important;
}

.align-items-center{
    align-items:center !important;
}

.mb-0{
    margin-bottom:0px !important;
}

.gap-10{
    gap:10px !important;
}

.px-20{
    padding-left:20px !important;
    padding-right:20px !important;
}

.text-14{
    font-size:14px !important;
}

.access-blocked{
    padding: 0px 10px;
    pointer-events: none;
    user-select: none;
    position: relative;
}

.tooltip-content {
      /*position: absolute;*/
      display: none;
      padding: 5px;
      font-size: 12px;
      line-height: 1.3em;
      z-index: 999;
      max-width: 400px;
      text-align:center;
      /* tooltip content width */
      border: 1px solid gray;
      /* tooltip content border */
      z-index: 9999;
      background-color: white; 
      /* tooltip background color */
}

.text-red{
    color:red !important;
}

.relative{
    position:relative !important;
}

.tab-container{
    background-color: white;
    border: 1.3px solid black;
    border-radius: 4px; 
    -moz-box-shadow: 3.5px 4px 0 1px #dddddd;
    box-shadow: 3.5px 4px 0 1px #dddddd;
    margin: 10px;
}

/* added product styles  */

.product-card-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;   
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.product-card {
  background: #f4f4fa;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 20px auto;
}

.card-carousel { 
  position: relative;
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.card-carousel .carousel-viewport {
  overflow: hidden;
  flex: 1;
} 
.card-carousel .carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.card-carousel img {
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: 4px;
}

.carousel-arrow {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  color: #333;
  user-select: none;
  z-index: 2;
}

.left-arrow  { margin-right: 0.5rem; }
.right-arrow { margin-left: 0.5rem; }

.carousel-arrow:hover {
  color: #0073e6;
  transform: scale(1.1);
}


/* Add the back button styles */
.back-button {
  display: block;
  margin: 15px 10px;
  padding: 10px;
  font-size: medium;
  background-color: var(--page-heading-color);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.back-button:hover {
  background-color: darken(var(--page-heading-color), 10%);
}

/* Hide elements by default */
.hidden {
  display: none;
}

.catalogue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.catalogue-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-image-container img {
  max-width: 100%;
  max-height: 400px;
}

/* Videos */
#video-section .youtube-block {
  width: 80%;
  max-width: 400px;
  margin: 10px auto;
  padding: 10px;
  background-color: #e7e7e7;
  border-radius: 20px;
}

#video-section .youtube-block iframe {
  border-radius: 20px;
}


.payment-card{
    overflow: hidden;
}
}