.hero-section-bharat {
  position: relative;
  background: #fdf6ee;
  padding: 60px 0 80px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}



.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-graphic-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic-circle {
  width: 320px;
  height: 320px;
  margin: 20px auto;
  
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: visible;
}

/* Add this animation keyframes at the end of the file */
@keyframes rotate-petals {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Update the petals-background class */
.hero-graphic-circle .petals-background {
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  z-index: 1;
  object-fit: contain;
  animation: rotate-petals 60s linear infinite; /* 60-second rotation, adjust as needed */
}

.hero-graphic-circle .circle-foreground {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-graphic-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title-main {
  color: #2277c9;
  display: block;
}

.hero-title-accent {
  color: #e5751d;
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-btn {
  background: #2277c9;
  color: white;
  border-radius: 16px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #1a5fa0;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-graphic-circle {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .hero-section-bharat {
    padding: 40px 0 100px 0;
  }
  
  .hero-graphic-circle {
    width: 200px;
    height: 200px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .blue-info-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.blue-info-card {
  background: #2277c9;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(34,119,201,0.15);
  padding: 20px;  /* Adjusted padding */
  width: 100%; /* Ensure it takes full width of its container */
  /* Remove max-width and margin: 0 auto; if they were previously set for centering the card on the page */
  /* max-width: 1140px; */ /* Remove or comment out */
  /* margin: 0 auto; */    /* Remove or comment out */
  text-align: left; /* Ensure text aligns left if it was centered before */
}

.blue-info-title {
  font-size: 1.8rem; /* Adjusted for potentially smaller space */
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #fff;
}

.blue-info-desc {
  font-size: 0.9rem; /* Adjusted for potentially smaller space */
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #fff;
}

/* Optional: Adjust button size if needed */
.blue-info-btn {
  background: #fff;
  color: #2277c9;
  border-radius: 16px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

/* Responsive adjustments might be needed if the card feels too cramped */
@media (max-width: 767px) {
  .hero-text-col {
    text-align: center; /* Center align text column content on mobile */
  }
  .blue-info-card {
    padding: 15px;
    margin-top: 20px; /* Ensure spacing on mobile */
  }
  
  .blue-info-title {
    font-size: 1.5rem; /* Further adjust for mobile */
  }

  .blue-info-desc {
    font-size: 0.8rem; /* Further adjust for mobile */
  }
}
.blue-info-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  text-decoration: none;
  color: #2277c9;
}

@media (max-width: 767px) {
  .blue-info-card {
    padding: 20px 25px;
  }
  
  .blue-info-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .blue-info-desc {
    margin-bottom: 1rem;
  }
}
.blue-info-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  text-decoration: none;
  color: #2277c9;
}

