body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

/* h2 {
  font-size: 30px;
  background: linear-gradient(90deg, #bb7a2f, #d9a85c, #f0ce88, #d9a85c, #bb7a2f);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
} */

/* h3 {
  font-size: 20px;
  background: linear-gradient(90deg, #bb7a2f, #d9a85c, #f0ce88, #d9a85c, #bb7a2f);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
} */

p {
  font-size: 16px;
}

.text-primary {
  color: var(--primary) !important;
}

.breadcrumb-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url("/frontend/images/3D-sunimage.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for readability */
.breadcrumb-hero .overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(20, 10, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.breadcrumb-hero .content h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li {
  color: #fff;
  font-size: 14px;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: #d4af37;
  /* golden hover */
}

/* Separator icon */
.separator {
  font-size: 14px;
  color: #d4af37;
}

/* Background */
.astro-section {
  padding: 60px 0;
  font-family: 'Georgia', serif;
}

/* Container */
.container {
  width: 80%;
  margin: auto;
}

/* Card Style */


.astro-section .astro-card {
  position: relative;
  padding: 38px;
  border-radius: 20px;
  background: #F7E7DA;
  overflow: hidden;
}

.astro-section .astro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px 1px 1px 8px;
  background: linear-gradient(179.65deg,
      #FF6F00 0.34%,
      #994300 99.73%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.astro-section .astro-card h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin: 20px 0px;
}

/* Intro card layout */
.intro-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.card-text {
  flex: 2;
}

.card-image {
  flex: 1;
}

.card-image img {
  width: 100%;
  border-radius: 4px;
  /* box-shadow: 13px 9px #d9a952; */
}

/* Headings */
.astro-card h4 {
  margin-bottom: 10px;
}

/* Text */
.astro-card p,
.astro-card li {
  color: #555;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* List */
.astro-card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.astro-card ul li {
  /* font-size: 16px; */
  /* margin-bottom: 6px; */
  position: relative;
}

/* Custom bullet */
.astro-card ul li::marker {
  color: #c47a2c;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .intro-card {
    flex-direction: column;
  }
}

.astro-buttons {
  text-align: center;
  margin-top: 40px;
}

h3 .astro-textt {
  text-align: center;

}

.astro-buttons a:hover {
  opacity: 0.85;
}


.astro-card h2 {
  color: #000000 !important;
  font-size: 36px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  text-transform: capitalize;
  margin-bottom: 24px;

}

.astro-section .astro-card {
  margin-bottom: 50px;
}

.astro-section .astro-card:last-child {
  margin-bottom: 0;
}