/* Dashboard Stats Container */
.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Individual Stat Item */
.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #741A23, #a02833);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(116, 26, 35, 0.15);
}

/* Stat Heading with Circle */
.stat-heading {
    position: relative;
    display: inline-block;
    padding-right: 70px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: left;
}

/* Circle with Count */
.stat-heading::after {
    content: attr(data-count);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #741A23;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(116, 26, 35, 0.4);
    animation: pulse-stat 2s infinite;
    z-index: 1;
}

@keyframes pulse-stat {
    0% {
        box-shadow: 0 0 0 0 rgba(116, 26, 35, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(116, 26, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(116, 26, 35, 0);
    }
}

/* Hover effect for circle */
.stat-item:hover .stat-heading::after {
    background-color: #5a151d;
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .stat-heading {
        font-size: 1.5rem;
        padding-right: 60px;
    }
    
    .stat-heading::after {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Animation delays for staggered effect */
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }
.page-id-4055  .wp-dark-mode-bg-image{
padding: 30px;
    font-size: 30px;
}  
.col-md-12{
background-color: #66706c;
}
.blog-area {
    background-color: #ffffff;
}
.wp-block-columns{
   padding-top: 0px;
}
.blog-post-title{
padding-top: 0px;
}
/* Hide the default title */
.blog-post-title-wrapper > h2 {
    display: none;
}

.blog-post-title-wrapper h3{
    width:100%;
}
/* Container Styles */
.wp-block-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Column Styles */
.wp-block-column {
    padding: 25px;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}
.wp-block-column:nth-child(1) { animation-delay: 0.1s; }
.wp-block-column:nth-child(2) { animation-delay: 0.2s; }
.wp-block-column:nth-child(3) { animation-delay: 0.3s; }
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Heading Styles */
h4.wp-block-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #741A23; /* Theme color */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
h4.wp-block-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #741A23, #a02833); /* Theme color variations */
    border-radius: 2px;
}
h4.wp-block-heading strong {
    color: #741A23; /* Theme color */
}
/* Image Styles - Better aligned with headings */
.wp-block-image {
    text-align: center;
    margin: 15px 0 25px; /* Reduced top margin, increased bottom margin */
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp-block-image:hover {
    transform: scale(1.05);
}
.wp-block-image figure {
    margin: 0;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(116, 26, 35, 0.15); /* Theme color shadow */
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 26, 35, 0.1);
}
.wp-block-image:hover figure {
    box-shadow: 0 12px 30px rgba(116, 26, 35, 0.25);
    border-color: rgba(116, 26, 35, 0.2);
}
.wp-block-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}
.wp-block-image:hover img {
    transform: translateY(-5px);
}
/* Separator Styles */
.wp-block-separator {
    margin: 40px 0; /* Increased spacing */
    border: none;
    height: 2px; /* Increased height */
    background: linear-gradient(90deg, transparent, rgba(116, 26, 35, 0.2), transparent); /* Theme color */
    position: relative;
}
.wp-block-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, #741A23, transparent); /* Theme color */
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}
/* Yearly Impact Section */
h4.wp-block-heading + .wp-block-image {
    margin: 20px auto 40px; /* Adjusted margins */
    max-width: 95%;
    animation: fadeInScale 1s ease-out 0.5s both;
}
@keyframes fadeInScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Total Funding Notice */
p strong {
    display: block;
    text-align: center;
    font-size: 1.4rem; /* Increased font size */
    color: #741A23; /* Theme color */
    margin: 40px 0; /* Increased margin */
    padding: 20px; /* Increased padding */
    background: linear-gradient(135deg, rgba(116, 26, 35, 0.05), rgba(116, 26, 35, 0.1)); /* Theme color */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(116, 26, 35, 0.1); /* Theme color shadow */
    animation: pulse-strong 2s infinite;
    border: 1px solid rgba(116, 26, 35, 0.2);
}
@keyframes pulse-strong {
    0% { box-shadow: 0 5px 15px rgba(116, 26, 35, 0.1); }
    50% { box-shadow: 0 5px 25px rgba(116, 26, 35, 0.3); }
    100% { box-shadow: 0 5px 15px rgba(116, 26, 35, 0.1); }
}
/* Responsive Design */
@media (max-width: 768px) {
    .wp-block-columns {
        flex-direction: column;
    }
    h4.wp-block-heading {
        font-size: 1.8rem; /* Adjusted for mobile */
    }
    table {
        font-size: 0.95rem;
    }
    table th, table td {
        padding: 12px;
    }
    .wp-block-image {
        overflow-x: auto;
    }
}
/* Loading Animation */
.loading {
    display: inline-block;
    width: 24px; /* Increased size */
    height: 24px; /* Increased size */
    border: 3px solid rgba(116, 26, 35, 0.3); /* Theme color */
    border-radius: 50%;
    border-top-color: #741A23; /* Theme color */
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Hover Effects for Interactive Elements */
.wp-block-image figure {
    position: relative;
    overflow: hidden;
}
.wp-block-image figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(116, 26, 35, 0.1), rgba(160, 40, 51, 0.1)); /* Theme color */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.wp-block-image:hover figure::after {
    opacity: 1;
}
/* Special Animation for Total Count */
.wp-block-column:first-child .wp-block-image {
    animation: rotateIn 1s ease-out 0.4s both;
}
@keyframes rotateIn {
    from {
        transform: rotate(-10deg) scale(0.9);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}
/* Special Animation for Funding Sources */
.wp-block-column:nth-child(2) .wp-block-image {
    animation: zoomIn 1s ease-out 0.6s both;
}
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Special Animation for Project Duration */
.wp-block-column:nth-child(3) .wp-block-image {
    animation: slideInRight 1s ease-out 0.8s both;
}
@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Major Projects Section Styling */
.major-projects-section {
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #741A23;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #741A23, #a02833);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Project Cards */
.project-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    background: white;
    border-top: 5px solid transparent;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(116, 26, 35, 0.2);
    border-top-color: #741A23;
}

/* Project Title - Now more prominent */
.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #741A23;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
    padding: 15px 0;
    border-bottom: 2px solid rgba(116, 26, 35, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #5a151d;
    border-bottom-color: rgba(116, 26, 35, 0.3);
}

.project-description {
    color: #495057;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.project-link {
    display: inline-block;
    background: #741A23;
    color: white !important; /* Ensure text is always white */
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(116, 26, 35, 0.3);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-link:hover {
    background: #5a151d;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(116, 26, 35, 0.4);
    color: white !important; /* Ensure text remains white on hover */
}

/* Remove gaps between rows */
.projects-grid .col-lg-3,
.projects-grid .col-md-4,
.projects-grid .col-sm-6 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Add spacing between cards instead of margins */
.projects-grid .row {
    margin-bottom: -30px; /* Negative margin to counteract the card spacing */
}

.projects-grid .project-card {
    margin-bottom: 30px; /* Space between cards */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .project-title {
        font-size: 1.5rem;
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .project-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .project-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Adjust spacing for mobile */
    .projects-grid .row {
        margin-bottom: -20px;
    }
    
    .projects-grid .project-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .major-projects-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    /* Further adjust spacing for small screens */
    .projects-grid .row {
        margin-bottom: -15px;
    }
    
    .projects-grid .project-card {
        margin-bottom: 15px;
    }
}

/* Animation for cards */
.projects-grid .col-lg-3 {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.projects-grid .col-lg-3:nth-child(1) { animation-delay: 0.1s; }
.projects-grid .col-lg-3:nth-child(2) { animation-delay: 0.2s; }
.projects-grid .col-lg-3:nth-child(3) { animation-delay: 0.3s; }
.projects-grid .col-lg-3:nth-child(4) { animation-delay: 0.4s; }
.projects-grid .col-lg-3:nth-child(5) { animation-delay: 0.5s; }
.projects-grid .col-lg-3:nth-child(6) { animation-delay: 0.6s; }
.projects-grid .col-lg-3:nth-child(7) { animation-delay: 0.7s; }
.projects-grid .col-lg-3:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Additional styling for better readability */
.project-card .card-body {
    padding: 25px;
}

/* Make cards more prominent on hover */
.project-card:hover {
    z-index: 10;
}



/* Margin Bottom Utility Classes */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

/* Responsive Margin Bottom Classes */
@media (min-width: 576px) {
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 768px) {
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 992px) {
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
}

/* Auto margin bottom */
.mb-auto {
  margin-bottom: auto !important;
}

/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
    
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out;
    animation-fill-mode: both;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(44, 122, 123, 0.15);
    transform: translateY(-5px);
}

/* Color adjustments */
.text-primary {
    color: #741A23 !important;
}

.text-success {
    color: #38a169 !important;
}

.border {
    border-color: #e2e8f0 !important;
}

/* Badge styling */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.py-5{
    padding: 5px;
}

/* Font size adjustments */
.fs-2 {
    font-size: 18px !important;
}

.fs-3 {
    font-size: 17px !important;
}

.fs-4 {
    font-size: 16px !important;
}

.fs-5 {
    font-size: 15px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fs-2 {
        font-size: 1.5rem !important;
    }
    
    .fs-3 {
        font-size: 1.25rem !important;
    }
    
    .fs-4 {
        font-size: 1.1rem !important;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .badge.fs-4 {
        font-size: 1rem !important;
        padding: 0.5rem 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .badge.fs-4 {
        display: block;
        margin: 0.5rem auto !important;
        width: fit-content;
    }
}

/* Image aspect ratio adjustments */
.dental-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin: 0 auto;
}

.dental-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dental-image-container:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dental-image-container {
        padding-top: 100%; /* Switch to square ratio on tablets */
    }
}

@media (max-width: 576px) {
    .dental-image-container {
        padding-top: 75%; /* Back to 4:3 on mobile */
        max-width: 280px;
    }
}

/* Circular Process Section */
.circular-process-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Image container */
.image-container img{
    width:500px;
}

/* Image styling */
.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers container without distortion */
    object-position: center; /* Centers the image */
    transition: transform 0.3s ease;
}

/* Hover effect for image */
.image-container:hover .img-fluid {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .image-container img {
        height: 350px; /* Slightly shorter on medium screens */
    }
}

@media (max-width: 768px) {
    .circular-process-section {
        padding: 40px 0;
    }
    
    .image-container img {
        height: 300px; /* Even shorter on mobile */
    }
}

@media (max-width: 576px) {
    .image-container img {
        height: 250px; /* Shortest on smallest screens */
    }
}

/* Circle around numbers */
.number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #741A23;
    border: 3px solid #f8f9fa;
    color: white !important;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Card hover effect on number circle */
.card:hover .number-circle {
    transform: scale(1.05);
    background-color: #f8f9fa;
    border: 3px solid #741A23;
    color: #741A23 !important;
}

/* Adjust card body for better alignment */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Responsive adjustments for number circle */
@media (max-width: 768px) {
    .number-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .number-circle {
        width: 70px;
        height: 70px;
    }
}

.robo-gallery-wrap-id4283:not(#no-robo-galery) .rbs-img-content {
font-size:20px;
}


/* Laddoo Gopal Yojana */


.highlight-card {
    border-radius: 10px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.08);*/
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    /*transform: translateY(-5px);*/
}

.nutrition-value {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.nutrition-value i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.nutrition-value .value {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.ingredient-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ingredient-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.nutrition-table th, .nutrition-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.nutrition-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}


.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background-color: #e9ecef;
    transform: translateX(10px);
}

.why-choose-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}


/**** Sukanya Yojana **************/

/* Info Box */
.info-box {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-item i {
    color: #741A23;
}

/* Sukanya Yojana Section */
.sukanya-section .lead {
    color: #555;
    font-size: 1.2rem;
}

/* Info Box */
.info-box {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-item i {
    color: #741A23;
}

/* Card Styling */
.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Highlight Cards */
.highlight-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.1);*/
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 30px;
    color: #741A23;
}

.highlight-card:hover .card-icon {
    background-color: #741A23;
}

.highlight-card:hover .card-icon i {
    color: #fff;
}

.highlight-card p {
    color: #666;
    margin: 0;
}

/* Stats Cards */
.stats-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #741A23;
    margin-bottom: 15px;
}

.stats-icon {
    font-size: 2.5rem;
    color: #741A23;
    margin-bottom: 15px;
}

/* Impact Cards */
.impact-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.impact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.impact-icon i {
    font-size: 24px;
    color: #741A23;
}

.impact-card:hover .impact-icon {
    background-color: #741A23;
}

.impact-card:hover .impact-icon i {
    color: #fff;
}

.impact-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.impact-card p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sukanya-section {
        padding: 40px 0;
    }
    
    .sukanya-section h1 {
        font-size: 1.8rem;
    }
    
    .sukanya-section h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .card-icon, .impact-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .impact-icon i {
        font-size: 20px;
    }
}

p:empty {
  display: none;
}

/* Fixed height card styling */
/* .fixed-height-card {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-height-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fixed-height-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.fixed-height-card:hover .card-icon {
    background-color: #741A23;
    color: white;
}

.fixed-height-card .card-icon i {
    font-size: 24px;
    color: #741A23;
    transition: color 0.3s ease;
}

.fixed-height-card:hover .card-icon i {
    color: white;
} */

.fixed-height-card {
    /* Remove fixed height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 20px; /* Only vertical gap */
    column-gap: 0; /* No horizontal gap */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-height-card {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .fixed-height-card {
        height: 200px;
    }
} 

.product-img {
    width: 100%;
    height: 250px; /* Set desired height */
    object-fit: cover; /* Ensures images fill without distortion */
    border-radius: 8px; /* Optional rounded corners */
}

.workshop-image {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.workshop-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.workshop-image:hover img {
    transform: scale(1.03);
}

.img-adjust {
    max-width: 70%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.img-adjust-100 {
    width: 100%;
    height: 400px; /* or any */
    object-fit: contain; /* keeps proportion */
}

.blog-post-title-wrapper ul {
    list-style: auto;
}

.blog-post-title-wrapper ul li{
    text-align:left;
}

.document-info .fas.fa-download{
    margin-right: 5px;
}


/* Publication Item Styles */
.publication-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.publication-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.publication-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.publication-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #741A23;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.publication-icon i {
    font-size: 18px;
}

.publication-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.3;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.funded-by-icon{
    width: 135px;
    height: 64px;
}

.methodology-item,
.measurement-item {
    margin-bottom: 15px;
}

.methodology-item:last-child,
.measurement-item:last-child {
    margin-bottom: 0;
}

.methodology-item h4,
.measurement-item h4 {
    color: #741A23;
    font-weight: 600;
    margin-bottom: 5px;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.text-success {
    color: #5cb85c;
    font-weight: 600;
}

.text-danger {
    color: #d9534f;
    font-weight: 600;
}

.panel-heading h3{
    margin-top: 10px;
}

/* dashboard flow */
.flow-indicator {
    text-align: center;
    margin: 30px 0;
    color: #7f8c8d;
    font-style: italic;
}
.flow-indicator i {
    margin: 0 10px;
    color: #741A23;
}

/* Equal height row for Bootstrap 3 */
.equal-height-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.stage {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stage:hover {
    transform: translateY(-10px);
}

.stage-header {
    background-color: #741A23;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.stage-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #741A23;
}

.stage-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.stage-image {
    height: 100px;
    overflow: hidden;
}

.stage-image img {
    width: 30%;
    height: 100%;
}

.stage-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.funding-logo {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.funding-logo img {
    max-height: 40px;
    max-width: 80%;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.project-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.project-item:last-child {
    border-bottom: none;
}

.project-name {
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

/* Fallback for older browsers */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .equal-height-row > [class*="col-"] {
        display: block;
    }
    .stage {
        height: 550px;
    }
}