
body, .main-container, .container, .post-data {
    text-align: center !important;
}
.my-headline {
    text-align: left !important;
}
.bold-text {
    font-weight: bold;
}
ul {
    display: block;
    text-align: center;
    padding: 0;
}

ul li {
    display: block;
    text-align: center;
    width: 100%;
}

/* Default button styling */
.btn-outline-primary {
    color: #077a4d;
    background-color: transparent;
    border: 2px solid #077a4d;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

/* Button size and spacing */
.btn-xl {
    padding: 12px 25px;
    font-size: 20px;
    border-radius: 10px;
    width: auto;
    text-align: center;
}

/* Hover, Focus, and Active Effects */
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active,
.btn.btn-outline-primary:hover {
    background-color: #fdc70d;
    border-color: #10c6d3;
    color: #000;
    box-shadow: 0px 4px 10px rgba(16, 198, 211, 0.5);
    transform: translateY(-3px);
}

/* Center align button group */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers buttons */
    gap: 10px;
    width: 100%;
}

/* Button width */
.btn-group .btn {
    width: auto; /* Ensures buttons are properly spaced */
    min-width: 200px;
}

/* Responsive: Stack buttons on small screens */
@media screen and (max-width: 576px) {
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-group .btn {
        width: 90%;
    }
}
.social-links {
  display: flex;
  justify-content: center; /* or space-between */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.social-links li {
  display: inline-block;
}

.image-box-3d {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.08);  /* deeper shadow = more 3D */
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-box-3d:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.1);
}
.image-box-3d {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

