/* Cost Breakdown */
/* Section Cards */
.section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 32px;
}

.cost-header {
    background: linear-gradient(135deg, #031b4e, #1e293b);
    padding: 24px 32px;
}

.cost-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cost-header p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 0px;
}

.cost-content {
    padding: 22px;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 32px;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table thead tr {
    background: #f8fafc;
}

.cost-table th {
    padding: 15px;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #38bdf8;
    text-align: left;
}

.cost-table th:last-child {
    text-align: right;
}

.cost-table tbody tr {
    transition: background-color 0.15s ease;
}

.cost-table tbody tr:hover {
    background: #f8fafc;
}

.cost-table td {
    padding: 15px;
    color: #374151;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cost-amount {
    text-align: right;
    font-weight: 600;
    color: #1e293b;
}

.total-row {
    background: linear-gradient(135deg, #f0f9ff, #dbeafe) !important;
}

.total-row:hover {
    background: linear-gradient(135deg, #f0f9ff, #dbeafe) !important;
}

.total-label {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    border-top: 2px solid #38bdf8;
    padding-top: 24px;
    padding-bottom: 24px;
}

.total-amount {
    font-size: 18px;
    font-weight: 700;
    color: #0ea5e9;
    text-align: right;
    border-top: 2px solid #38bdf8;
    padding-top: 24px;
    padding-bottom: 24px;
}
.pdf-download a{
text-align:center;
    width: 100%;
}
.gravitypdf-download-link:before {
    content: '\f019';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

/* end cost estimation */
/* Hero Section */
.single-mhmd_hospital .container{
    max-width: 1400px;
}
.single-mhmd_hospital h3{
    margin:0;
}
.hospital-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}
.hospital-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.hospital-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #38bdf8 0%, #031b4e 100%);
}
.hospital-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 137, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(3, 27, 78, 0.4) 0%, transparent 50%);
}
.hospital-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hospital-hero-main {
    color: white;
}
.hospital-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hospital-badge i {
    color: #fff;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
    animation: twinkle 2s infinite;
}
.stars i:nth-child(1) { animation-delay: 0s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 20px;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-certifications {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.cert-badge span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cert-badge small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.cert-badge.jci span { color: #ff0089; }
.cert-badge.nabh span { color: #38bdf8; }
.cert-badge.iso span { color: #10b981; }

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.8), rgba(255, 0, 137, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

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

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0089;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.location-header i {
    color: #ff0089;
    font-size: 20px;
}

.location-header h3 {
    color: #031b4e;
    font-size: 18px;
    font-weight: 600;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.location-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.location-item div {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.location-item strong {
    color: #031b4e;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}

.location-item span {
    color: #6b7280;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #031b4e;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}
.hidden-li {
    display: none;
  }

  .toggle-btn {
    margin-top: 10px;
    padding: 8px 16px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 12px;
    background-image: linear-gradient(135deg, #FF0089 0%, #EC4899 100%);
    box-shadow: 0 8px 25px #ff00894d;
  }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff0089, #f43f5e);
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-content h4 {
    color: #031b4e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
     margin-bottom:0px;
}

/* Excellence Section */
.excellence-section {
    padding: 100px 0;
    background: #f8fafc;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.center-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.center-card:nth-child(odd) { animation-delay: 0.1s; }
.center-card:nth-child(even) { animation-delay: 0.2s; }

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
}

.center-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.center-card:hover .center-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.center-icon i {
    font-size: 22px;
    color: white;
}

.center-card h6 {
    color: #031b4e;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.center-card:hover h6 {
    color: white;
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: white;
}

.tech-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-category {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 28px;
    color: white;
}

.tech-header h3 {
    color: #031b4e;
    font-size: 1.8rem;
    font-weight: 700;
}

.tech-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.tech-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
    place-content: center;
}
.pack-main-content ul,.pack-main-content ol{
  padding: 0;
  list-style: none;
}
.content-block p{
margin:15px 0;
font-size:16px;
}
.content-block ul,.content-block ol,.choose-us {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.choose-us{
    margin-bottom:2rem;
}
.content-block li{
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
    align-content: center;
    flex-grow: 1;
}
.other-post{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.other-post li{
    color: var(--pack-primary-color);
    position:relative;
    transition: all 0.3s ease;
    padding-left:25px;
}
.other-post li >a:before{
   content: "\f0a4";
    position: absolute;
    left: 0px;
    top: 0.8em;
    transform: translateY(-50%);
    color: #ff0089;
    font-weight: 100;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
}
.tech-item:before,.content-block li:before{
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #38bdf8;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.about-us.content-block li:before{
  content: "\f007";
}
.education-items.content-block li:before{
   content: "\f19d";
}
.experience-items.content-block li:before{
   content: "\f0b1";
   color:#031b4e;
}
.expertise-items.content-block li:before{
   content: "\f5dc";
   color:#ff0089;
}
.memberships-items.content-block li:before{
   content: "\f2c2";
   color:#ff0089;
}
.expertise-items.content-block li:hover{
   border-color:#ff0089;
   background:transparent;
    background-image: linear-gradient(135deg, #FF00890D 0%, #FF008905 100%);
}
.memberships-items.content-block li:hover{
   border-color:#ff0089;
   background:transparent;
    background-image: linear-gradient(135deg, #FF00890D 0%, #FF008905 100%);
}
.tech-item:hover,.content-block li:hover {
    border-color: #38bdf8;
    background: #f0f9ff;
    transform: translateX(5px);
    color: #031b4e;
}
.other-post li:hover{
    transform: translateX(5px);
    color: #ff0089;
}
.other-post li:hover a,.other-post li:hover::before{
    color: #ff0089;
}
.content-block strong{
color: #000000;
}
/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-list {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-list:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-list img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-list:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.8), rgba(255, 0, 137, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-list:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    animation: bounce 1s infinite;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.video-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.8), rgba(255, 0, 137, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

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

.video-overlay .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0089;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-overlay .play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-info {
    text-align: center;
    color: white;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.video-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom:0px;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #031b4e 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.awards-section .section-header {
    position: relative;
    z-index: 2;
}

.awards-section .section-badge {
    background: linear-gradient(135deg, #ff0089, #f43f5e);
}

.awards-section .section-header h2 {
    color: white;
}

.awards-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}
.awards-grid.single-item {
    place-items: center; /* centers single item */
    grid-template-columns: 1fr;
}
.award-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    align-items: center;
}

.award-card:nth-child(odd) { animation-delay: 0.1s; }
.award-card:nth-child(even) { animation-delay: 0.2s; }

.award-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0089, #f43f5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 3s infinite;
}

.award-icon i {
    font-size: 28px;
    color: white;
}

.award-content h4 {
    color: #38bdf8;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.award-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom:0px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:nth-child(odd) { animation-delay: 0.1s; }
.faq-item:nth-child(even) { animation-delay: 0.2s; }

.faq-item:hover {
    border-color: #38bdf8;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.1);
}

.faq-question {
    padding: 24px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #38bdf8;
    color: white;
}

.faq-question h5 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #031b4e;
    transition: color 0.3s ease;
}

.faq-question:hover h5 {
    color: white;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff0089, #f43f5e);
    border-radius: 50%;
    display: flex!important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-question {
    background: #38bdf8;
    color: white;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 24px;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom:0px;
}

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

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

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 137, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 137, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hospital-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .title-main {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
       .cost-table th,
    .cost-table td {
        padding: 12px 16px;
    }

    .total-label,
    .total-amount {
        font-size: 18px;
    }
    .hospital-hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
    }

    .hero-certifications {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .centers-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .title-main {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-card {
        padding: 20px;
    }

    .feature-card,
    .center-card,
    .award-card {
        padding: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
    .content-block li{
        padding: 20px;
    }
     .content-block li:before{
        content: unset!important;
     }
     .btn-primary-mh, .btn-secondary-mh{
        flex-grow: 1;
        justify-content: center;
     }
     .hero-rating{
        justify-content: center;
     }
}
