/* Reset Global Margin/Padding */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* H1 Heading Style */
.h1-golden-heading {
  font-family: var(--main-font);
  font-size: var(--fluid-40-75);
  color: var(--awaady-gold-color);
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

/* H1 Watch and Learn Style */
#h1-watch-an-learn {
  font-family: var(--main-font);
  font-size: var(--fluid-35-50);
  color: var(--awaady-gold-color);
  display: block;
  margin-bottom: 20px;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

.p-black-body-text {
  font-family: var(--main-font);
  font-size: var(--fluid-28-43);
  color: var(--awaady-black-color);
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

/* */


/* img Media Content Style */
.img-media-content {
  width: 95vw;             /* 95% of viewport width */
  max-width: 600px;        /* Optional: Limit max size on large screens */
  height: auto;            /* Maintain aspect ratio */
  border-radius: 10px;     /* Rounded corners */
  display: block;          /* Allow margin auto to work */
  margin: 0 auto 20px;     /* Center image and add bottom spacing */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Optional: soft shadow */
}

/* Video Media Content Style */
.responsive-video {
  width: 95vw;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background-color: #000;
  overflow: hidden;
}


.product {
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f5f5f5;
  text-align: center;
  font-family: var(--secondary-font);
}

/* NEW */
.title-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.title {
  font-size: clamp(28px, 5vw, 40px);
  background-color: var(--awaady-green-color);
  color: #fff;
  padding: 15px;
  width: calc(100% + 40px);
  position: relative;
}

.title::before {
  content: "";
  border: 10px solid;
  border-color: #084B4D #084B4D transparent transparent;
  position: absolute;
  inset-inline-start: 0;
  bottom: -20px;
}

.title::after {
  content: "";
  border: 10px solid;
  border-color: #084B4D transparent transparent #084B4D;
  position: absolute;
  inset-inline-end: 0;
  bottom: -20px;
}

.conclusion-section {
  text-align: center;
  padding: 5px 20px;
  background-color: #ffffff; /* light background to separate it */
  border-top: 0px solid #eee;
  border-bottom: 0px solid #eee;
  margin-top: 5px;
}

/* WhatsApp-style button */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #076F71;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Naskh Arabic", serif;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-bottom: 60px;
}


.span-ribbon {
  background: var(--awaady-gold-color);
  padding: 5px 10px;
  border: 5px dotted #f5f5f5;
}
