
.hero-section {
    background-color: #ffffff;
    padding: 120px 20px;
    position: relative;
    overflow: visible;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-attachment:scroll;
  /* background-image: url('/images/home/hero-section.jpg'); */
}
/* @media (min-width: 992px) {
    .hero-section {
        background-image: url('/images/slider-img-two.webp');
    }
} */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Text Content Styling */
.hero-content {
    flex: 1;
}

.hashtag {
    font-size: 14px;
    font-weight: bold;
    color: #3C0145;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    color: #3C0145;
    line-height: 1.1;
    font-size: 56px;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
    font-family: Instrument Serif, serif;
}

/* Image and Badge Styling */
.hero-image {
    flex: 1;
    position: relative;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hpb-badge {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Desktop Layout */
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        padding-right: 50px;
    }
}


/*  */
.badge-container {
  position: absolute;
  /* Adjust these percentages to "pin" it to the surgeon's chest/center */
  top: 60%; 
  left: 20%;
  z-index: 15;
}

.rotating-badge {
  width: 150px; /* Adjust size as needed */
  height: 150px;
  border-radius: 50%;
  background: white; /* Optional: adds a white backing if your PNG is transparent */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  
  /* The Animation Magic */
  animation: rotateSeal 12s linear infinite;
}

/* Rotation Keyframes */
@keyframes rotateSeal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Optional: Pause rotation on hover */
.rotating-badge:hover {
  animation-play-state: paused;
  cursor: pointer;
}


/* ////////////////////////////// */
.info-cards-section {
    position: relative; 
    z-index: 100;        
    /* margin-top: -80px; */

    margin-top: -120px;
    padding: 0px 20px;
    background-color: transparent;
    /* background-color: #f8f9fa;  */
    /* font-family: 'Segoe UI', sans-serif; */
}

.info-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    /* padding-bottom: 20px; */
}

.info-card {
    background: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 0px;
}

/* Left side text of the card */
.card-text {
    flex: 1;
}

.card-text p {
    color: #4B1A4B;
    line-height: 1.6;
    font-size: 16px;
    max-width: 167px;
}

/* Right side visual box */
.card-visual {
    flex: 1.2;
    display: flex;
    height: 200px;
    /* max-width: 165px; */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.visual-white {
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 130px;
}

.visual-purple {
    /* background: #3C0145;  */
    flex: 1;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(90deg, #3C0145 50%, white 50%);
}

.visual-purple img {
    max-width: 174px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific Typography */
.label {
    /* font-size: 18px; */
    color: #3C0145;
    max-width: 120px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.stat {
    font-size: 24px;
    color: #3C0145;
    font-weight: 700;
}

.coming-soon {
    max-width: 120px;
    margin-top: 10px;
    font-size: 28px;
    color: #3C0145;
    /* font-weight: 700; */
}

/* App image specific adjustment */
.app-img {
    padding: 10px;
    object-fit: contain !important;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .info-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .card-visual {
        width: 100%;
    }
}