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: 32px;
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 {
background: #e6c79c;
padding: 40px 0;
font-family: 'Georgia', serif;
}

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

/* Card Style */
.astro-card {
background: #fff;
border-radius: 6px;
padding: 20px 25px;
margin-bottom: 20px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 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 h2 {
margin-bottom: 10px;
}

/* Text */
.astro-card p {

color: #333;
line-height: 1.6;
}

/* 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 a {
text-decoration: none;
background: linear-gradient(45deg, #c88a2d, #e0b35a);
color: white;
padding: 12px 28px;
margin: 10px;
border-radius: 25px;
display: inline-block;
gap:20px;
font-size: 20px;
transition: 0.3s ease;
text-align: center;

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

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