@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


/* for scrollbar */
::-webkit-scrollbar {width: 5px;}
::-webkit-scrollbar-track {box-shadow: inset 0 0 5px grey; border-radius: 10px;}
::-webkit-scrollbar-thumb {background: linear-gradient(to right, #b8950c, #f4d03f);border-radius: 10px;}
::-webkit-scrollbar-thumb:hover {    background: linear-gradient(to right, #b8950c, #f4d03f);}

 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    background: #f5f7fa;
    font-family: "Montserrat", sans-serif;
  }

  /* menu css starts here */

header {position: sticky;top: 0;background: #ffffff;color: #29211d;display: flex;justify-content: space-between;align-items: center;padding: 15px 50px;z-index: 1000;font-size: 14px;font-weight: 500;transition: padding 0.3s, background 0.3s;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);}
ul { margin-bottom: 0;}
header.shrink {padding: 10px 35px;background:linear-gradient(1deg, rgb(243, 190, 85) -2%, rgb(255 214 106) 100%)}
.logo {font-size: 1.5rem;font-weight: bold;width: 80px;}
.logo-radius {border-radius: 7px;}

/* Hamburger menu toggle */
.menu-toggle {display: none;width: 30px;height: 22px;position: relative;cursor: pointer;transition: all 0.3s ease-in-out;z-index: 1100;}
.menu-toggle span {display: block;position: absolute;height: 3px;width: 100%;background: #29211d;border-radius: 3px;opacity: 1;left: 0;transition: all 0.3s ease-in-out;}
.menu-toggle span:nth-child(1) {top: 0;}
.menu-toggle span:nth-child(2) {top: 9px;}
.menu-toggle span:nth-child(3) {top: 18px;} 
.menu-toggle.open span:nth-child(1) {transform: rotate(45deg);top: 9px;}
.menu-toggle.open span:nth-child(2) {opacity: 0;}
.menu-toggle.open span:nth-child(3) {transform: rotate(-45deg);top: 9px;}
.menu {display: flex;gap: 10px;list-style: none;}
.menu li {position: relative;}
.menu a {color: #1a0000;font-weight: 600; text-decoration: none;padding: 8px 8px;display: inline-block;position: relative;transition: color 0.3s ease;width: 100%;}
.menu a::after {content: '';position: absolute;left: 0;bottom: 0;width: 0%;height: 2px;background: linear-gradient(to right,#000000a2,  #ffde59 );transition: width 0.3s ease;}
.menu a:hover {color: #b89300;}
.menu a:hover::after {width: 100%;}
.arrow {margin-left: 6px;font-size: 1em;;float: right;}
.submenu {display: none;position: absolute;top: 100%;left: 0;background: #ffffff;min-width: 200px;list-style: none;padding: 10px 0;z-index: 999;opacity: 0;visibility: hidden;transform: translateY(10px);transition: all 0.3s ease;border-radius: 6px;box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);}
.menu li:hover > .submenu {display: block;opacity: 1;visibility: visible;transform: translateY(0);}
.submenu .submenu {left: 100%;top: 0;}


@media (max-width: 1000px) {
header { padding: 11px 50px; }
header.shrink { padding: 9px 48px;}
.menu-toggle {display: block;}
.menu {flex-direction: column;background: #29211d;position: fixed;top: 0;left: -100%;height: 100vh;width: 300px;padding: 80px 20px;transition: left 1s ease;overflow-y: auto;}
.menu a:hover {color: rgb(233, 233, 233);}
.menu.active {left: 0;}
.menu li {width: 100%;margin-bottom: 10px;}
.menu li a {color: #ffffff;padding: 12px 16px;justify-content: space-between;border-radius: 0px;border-bottom: 1px solid #f3f2f238;width: 100%;}
.menu li a:hover {background: #444;}
.submenu {position: static;background: #444;padding-left: 16px;box-shadow: none;}
.menu li.active > .submenu {display: block;opacity: 1;visibility: visible;transform: none;}
.submenu .submenu {padding-left: 16px;background: #555;}
.arrow {transition: transform 0.3s ease;}
.menu li.active > a .arrow {transform: rotate(90deg);}}
#menu-overlay {position: fixed;top: 0; left: 0;width: 100vw; height: 100vh;background: rgb(0 0 0 / 70%);z-index: 900;display: none;}
#menu-overlay.active {display: block;}

 /* menu css end here */

  /* breadcrumbs *//* top-panel section */
.top-panel {position: relative;z-index: 1; padding: 50px 13px;border-bottom: 1px solid #ddd;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);background: url('../images/breadcrumb-bg.png') center center/cover no-repeat;}
.top-panel::before {content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: linear-gradient(to right, #ffe373cc, #e3cb69cc); z-index: 0;}
.top-panel .container-fluid,
.top-panel-wrap,
.top-panel-left {position: relative;z-index: 2;}
.top-panel .container-fluid {padding: 0 60px;}
.top-panel-wrap {display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;}
.top-panel-left {display: flex;flex-direction: column;gap: 10px;}
.top-panel-title {font-size: 3rem;font-weight: 800;color: #2c3e50;margin: 0;letter-spacing: 1px;position: relative;}
.top-panel-title::after {content: "";display: block;width: 60px;height: 3px;background-color: #2c3e50;margin-top: 6px;border-radius: 2px;}
.breadcrumb {display: flex;align-items: center;font-size: 14px;flex-wrap: wrap;gap: 8px;color: #666;}
.breadcrumb a {color: #555;text-decoration: none;display: flex;align-items: center;gap: 6px;font-weight: 500;transition: color 0.3s;}
.breadcrumb a:hover {color: #5e4c08;text-decoration: underline;}
.breadcrumb .separator {color: #2c3e50;font-size: 12px;transform: translateY(1px);}
.breadcrumb span {color: #222;font-weight: 600;display: flex;align-items: center;gap: 6px;}
.breadcrumb i {color: #2c3e50;transition: transform 0.3s;}
.breadcrumb a:hover i {transform: scale(1.1);}
@media (max-width: 992px) {.top-panel .container-fluid {padding: 0 15px;}.top-panel { padding: 30px 35px; }}
@media  (max-width:756px) {.top-panel-title {font-size: 2rem;transition: all 0.9s ease;}}


/* About us page css starts here */

.aboutUs-section {padding: 4rem 1.5rem;background: linear-gradient(135deg, #fdfdfd, #f1f8f5);display: flex;justify-content: center;}
.aboutUs-section:nth-of-type(even) {background: linear-gradient(135deg, #f5f5f5, #f9f9f9);}
.aboutUs-container {max-width: 1250px;width: 100%;padding: 0 1rem;}
/* .aboutUs-item p::before {content: "";display: inline-block;font-size: 1.2em;} */
.aboutUs-box {display: flex;flex-wrap: wrap;gap: 2rem;align-items: flex-start;background: #ffffff;border-radius: 16px;padding: 2.5rem;box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);animation: fadeIn 1s ease-in;}
.aboutUs-box.reverse {flex-direction: row-reverse;}
.aboutUs-image {flex: 1 1 45%;min-width: 280px;}
.aboutUs-image img {width: 100%;border-radius: 12px;object-fit: cover;box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);}
.aboutUs-content {flex: 1 1 50%;}
.aboutUs-section h2 {font-size: 2rem;color: #f6c55b;margin-bottom: 1.5rem;position: relative;display: inline-block;}
.aboutUs-section h2 span {border-left: 5px solid #f6c55b;padding-left: 10px;}
.aboutUs-item {display: flex;align-items: flex-start;margin-bottom: 1.2rem;}
.aboutUs-icon {font-size: 1.4rem;margin-right: 12px;color: #f6c55b;line-height: 1.5;flex-shrink: 0;font-style: normal;}
.aboutUs-item p {font-size: 1.05rem;color: #444;line-height: 1.7;}
@keyframes fadeIn {from {opacity: 0;transform: translateY(30px);}to {opacity: 1;transform: translateY(0);}}
@media (max-width: 768px) {
.aboutUs-section {padding: 2.5rem 1rem;}
.aboutUs-box {flex-direction: column;padding: 1.5rem;}
.aboutUs-image,.aboutUs-content {flex: 1 1 100%;}
.aboutUs-section h2 {font-size: 1.4rem;}
.aboutUs-item p {font-size: 0.95rem;}
.aboutUs-icon {font-size: 1.2rem;margin-right: 10px;}}

/* feedback section starts here */
.feedback-container-wrapper {max-width: 600px;margin: 40px auto;padding: 20px;box-sizing: border-box;}
.feedback-main-heading {text-align: center;font-size: 2.5rem;margin-bottom: 20px;color: #333;font-weight: 700;}
.feedback-main-heading::after {border-left: 4px solid black;}
.feedback-container {max-width: 600px;margin: 30px auto;padding: 20px;overflow: hidden;position: relative;min-height: 250px;}
.step {position: absolute;width: 100%;top: 0;left: 0;opacity: 0;transform: translateX(100%);transition: all 0.6s ease;display: none;text-align: center;z-index: 0;}
.step.active {display: block;opacity: 1;transform: translateX(0);z-index: 1;}
.step.exit-left {transform: translateX(-100%);opacity: 0;}
.step.enter-right {transform: translateX(100%);opacity: 0;}
h2 {font-size: 1.3rem;margin-bottom: 30px;}
.stars {display: flex;justify-content: center;gap: 15px;font-size: 2.5rem;cursor: pointer;}
.star {color: #ccc;background: linear-gradient(145deg, #ffffff, #f0f0f0);border-radius: 50%;width: 50px;height: 50px;display: inline-flex;align-items: center;justify-content: center;font-size: 40px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);transition: all 0.3s ease;cursor: pointer;margin: 5px;position: relative;}
.star:hover {transform: scale(1.15);background: linear-gradient(145deg, #fff3c5, #ffeaa7);box-shadow: 0 6px 12px rgba(248, 180, 0, 0.3);}
.star.selected {color: #f8b400;background: linear-gradient(145deg, #fff7d1, #ffeaa7);box-shadow: 0 6px 12px rgba(248, 180, 0, 0.5);transform: scale(1.1);}
.rating-labels {display: flex;justify-content: space-between;max-width: 280px;margin: 10px auto 30px;font-size: 0.9rem;color: #666;}
.next-btn {background: linear-gradient(1deg, rgb(243, 190, 85) -2%, rgb(255 214 106) 100%);color: white;border: none;padding: 12px 25px;border-radius: 30px;font-size: 1rem;cursor: pointer;opacity: 0.5;transition: 0.3s ease;display: block;margin: 0 auto;max-width: 200px;width: 100%;}
.next-btn:enabled {opacity: 1;}
.note {font-size: 0.85rem;color: #555;margin-bottom: 20px;padding: 0 10px;}
.input-box {display: flex;align-items: center;border: 1px solid #ddd;border-radius: 20px;padding: 10px 15px;background: #fafafa;max-width: 100%;}
.input-box input {flex: 1;border: none;outline: none;font-size: 1rem;background: transparent;}
.input-box .send-icon {font-size: 1.3rem;cursor: pointer;color: #888;margin-left: 10px;transition: color 0.3s;}
.input-box .send-icon:hover {color: #000;}
.thankyou-section .emoji {font-size: 3rem;animation: bounce 1s infinite;margin-bottom: 10px;}
@keyframes bounce {0%, 100% { transform: translateY(0); }50% { transform: translateY(-10px); }}
.thankyou-section p {font-size: 1rem;color: #555;margin-top: 10px;}
.progress-bar {width: 80%;height: 6px;background: #eee;border-radius: 3px;margin: 25px auto 0;overflow: hidden;position: relative;}
.progress-fill {width: 0%;height: 100%;background: #4caf50;border-radius: 3px;transition: width linear 5s;}
@media (max-width: 480px) {
.stars {font-size: 2rem;gap: 10px;}
.next-btn {width: 100%;}
.input-box {flex-direction: row;}     
h2 {font-size: 1.1rem;}
.thankyou-section .emoji {font-size: 2.5rem;}}

/* feedback section end here */

/* About us page css end here */

  /* services page */

.hospital-service {padding: 4rem 5rem; background: linear-gradient(135deg, #f9f9f9, #eaf1e8);}
.hospital-service .service-container {display: flex;gap: 3rem;/* flex-wrap: wrap; */background: #fff;padding: 2rem;border-radius: 20px;box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.hospital-service .service-container:hover {transform: translateY(-5px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);}
.hospital-service .service-image {flex: 1 1 350px;}
.hospital-service .service-image img {width: 100%;height: 100%;max-height: 300px;border-radius: 15px;object-fit: cover;box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);transition: transform 0.3s ease;}
.hospital-service .service-image img:hover {transform: scale(1.03);}
.hospital-service .service-content {flex: 1 1 350px;}
.hospital-service .service-content h2 {text-align: left; font-size: 2rem;font-weight: 700;margin-bottom: 1rem;color: #2c3e50;position: relative;}
.hospital-service .service-content h2::after {content: '';display: block;width: 60px;height: 4px;background: #f4d03f;margin-top: 0.5rem;border-radius: 2px;}
  
.hospital-service .service-content p {font-size: .900rem;color: #444;line-height: 1.8;margin-bottom: 2rem;}
.hospital-service .read-more-btn {display: inline-block;background: linear-gradient(to right, #f3d355, #f4d03f);color: #fff;padding: 0.7rem 1.5rem;border-radius: 30px;font-weight: 600;text-decoration: none;box-shadow: 0 5px 15px rgba(151, 185, 64, 0.4);transition: all 0.3s ease;}
.hospital-service .read-more-btn:hover {background: linear-gradient(to right, #ffcd03, #f5d13f);transform: translateY(-2px);}
.semi-oval-heading {position: relative;padding-left: 35px; font-size: 1.5em;line-height: 1.2;}
.semi-oval-heading::before {content: '';position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 30px;height: 13px;background-color: #000000; border-radius: 50% / 100%; }
@media (max-width: 768px) {.hospital-service {padding: 2rem;}
.hospital-service .service-container {flex-direction: column;text-align: center;}
.hospital-service .service-content h2 {font-size: 1.7rem;}
.hospital-service .service-content p {font-size: 1rem; text-align: justify;}
.hospital-service .service-image img {max-height: none;}
.hospital-service .service-content h2{ text-align: left;}.semi-oval-heading { padding-left: 5px;}}
  
  /* Corporate Members & Patron Members section css starts here */
.members-section {display: flex;flex-wrap: wrap;margin: 4rem 0;border-top: 3px solid #ccc;background: linear-gradient(135deg, #f8f9fa, #ffffff);animation: fadeIn 1s ease-in-out;}
.members-column {flex: 1;padding: 2.5rem;box-sizing: border-box;opacity: 0;transform: translateY(50px);animation: slideUp 0.8s ease-out forwards;}
.members-column:nth-child(2) {animation-delay: 0.3s;}
.members-column h3 {font-weight: 700;margin-bottom: 1.5rem;display: flex;align-items: center;font-size: 1.5rem;color: #333;text-transform: uppercase;}
.members-column h3 .dot { width: 25px;height: 12px;background-color: #f0c000; border-radius: 55px / 55px; margin-right: 12px;}
.members-column h3 .dot:hover{ background-color: #020100; }
.members-column.patron {background-color: #fff3c4;border-left: 3px solid #f0c000;}  
.logo-grid {display: grid;grid-template-columns: repeat(4, 1fr);gap: 1.5rem;}
.logo-grid img {max-width: 100%;/* max-height: 80px; */margin: 0 auto;object-fit: contain;transition: transform 0.3s ease, filter 0.3s ease;filter: grayscale(60%);border-radius: 8px;background: #fff;padding: 10px;box-shadow: 0 4px 6px rgba(0,0,0,0.05);}
.logo-grid img:hover {transform: scale(1.1);filter: grayscale(0%) brightness(1.1);}
@keyframes slideUp {to {transform: translateY(0);opacity: 1;}}
@keyframes fadeIn {0% { opacity: 0; }100% { opacity: 1; }}
@media (max-width: 768px) {
.members-section {flex-direction: column;}
.members-column {width: 100%;animation: none;opacity: 1;transform: none;}
.logo-grid {grid-template-columns: repeat(2, 1fr);}}
.tooltip-wrapper {position: relative;display: inline-block;}
.tooltip-wrapper::after {content: attr(data-tooltip);position: absolute;bottom: 110%; left: 50%;transform: translateX(-50%);background-color: #333;color: #fff;padding: 6px 10px;border-radius: 4px;font-size: 0.75rem;white-space: nowrap;opacity: 0;pointer-events: none;transition: opacity 0.3s ease;z-index: 10;}
.tooltip-wrapper:hover::after {opacity: 1;}
  
   /* Corporate Members & Patron Members section css end here */     

  


  /* content section */
.info-section {padding: 4rem 3rem;background: linear-gradient(to right, #f5f8fc, #eef3f9);color: #333;}
.alt-section {background: linear-gradient(to right, #eef3f9, #f5f8fc); }
.info-container {display: flex;flex-wrap: wrap;align-items: center;gap: 2rem;max-width: 1200px;margin: 0 auto;background-color: #ffffff;border-radius: 16px;box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);padding: 2rem;transition: all 0.3s ease;}
.info-text {flex: 1 1 500px;}
.main-heading {font-size: 2.4rem;font-weight: 700;margin-bottom: 1rem;color: #2a2a2a;text-align: left;}
.main-heading::after{content: '';display: block;width: 60px;height: 4px;background: #f4d03f;margin-top: 0.5rem;border-radius: 2px;}
.sub-heading {font-size: 1.25rem;color: #555;margin-bottom: 1.5rem;line-height: 1.6;}
.paragraphs {display: flex;flex-direction: column;gap: 1.25rem;}
.paragraphs p {font-size: 1.05rem;line-height: 1.8;color: #444;}
.cta-button {display: inline-block;background: linear-gradient(to right, #f3d355, #f4d03f);color: #fff;padding: 0.7rem 1.5rem;border-radius: 30px;font-weight: 600;text-decoration: none;box-shadow: 0 5px 15px rgba(151, 185, 64, 0.4);transition: all 0.3s ease;}
.cta-button:hover {background-color: #cca300;}
.info-image {flex: 1 1 400px;text-align: center;}
.info-image img {max-width: 100%;height: auto;border-radius: 12px;box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);}
@media (max-width: 1024px) {.main-heading {font-size: 2rem;}
.sub-heading {font-size: 1.1rem;}.paragraphs p {font-size: 1rem;}}
@media (max-width: 768px) {.info-section {padding: 2rem 1rem;}
.info-container {flex-direction: column;text-align: left;padding: 1.5rem;background: #fff;border-radius: 12px;box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);}
.info-text {order: 2;}
.info-image {order: 1;margin-bottom: 1.5rem;flex: 1 1 100px;}
.main-heading {font-size: 1.75rem;}
.sub-heading {font-size: 1.05rem;}
.cta-button {display: block;margin: 2rem auto 0 auto;text-align: center;}}
@media (max-width: 480px) {
.info-section {padding: 2rem 1rem;}
.info-container {padding: 1.25rem;border-radius: 10px;}
.main-heading {font-size: 1.5rem;}
.sub-heading {font-size: 1rem;}
.cta-button {padding: 0.65rem 1.25rem;font-size: 0.95rem;}}
  
  

/* contact us  */
.contact {display: flex;align-items: center;font-size: 14px; font-weight: 600;}
.contact-section {padding: 50px 20px;background: #f9f9f9;}
.contact-header {text-align: center;margin-bottom: 25px;}
.contact-header h2 {font-size: 2.5rem;font-weight: 700;color: #222;}
.contact-header p {color: #666;font-size: 1rem;}
.contact-content {display: flex;gap: 40px;flex-wrap: wrap;justify-content: center;}
.contact-form {flex: 1 1 500px;background: #fff;padding: 30px;border-radius: 1rem;box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);}
.contact-details {flex: 1 1 300px;display: flex;justify-content: center;/* align-items: center;padding: 40px 20px; */}
.info-card {background: linear-gradient(145deg, #ffffff, #f0f0f0);padding: 40px;border-radius: 1.5rem;box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);max-width: 500px;width: 100%;transition: transform 0.3s ease;}
.info-card:hover {transform: translateY(-5px);}
.info-card h3 {font-size: 1.8rem;color: #333;margin-bottom: 30px;display: flex;align-items: center;gap: 10px;}
.info-card ul {list-style: none;padding: 0;margin: 0;color: #444;font-size: 1rem;line-height: 1.8;}
.info-card ul li {margin-bottom: 15px;display: flex;align-items: flex-start;gap: 10px;}
.info-card ul li i {color: #f0c000;min-width: 20px;font-size: 1.2rem;margin-top: 4px;}
.info-card a {color: #f0c000;font-weight: 700;text-decoration: none;}
.info-card a:hover {text-decoration: underline;}
.form-group {position: relative; margin-bottom: 1.5rem;}
.form-group input,
.form-group textarea {width: 100%;padding: 16px 12px;border: 1px solid #ccc;border-radius: 0.5rem;font-size: 1rem;background: #fff;outline: none;transition: border-color 0.3s ease;}
.form-group textarea {resize: vertical;min-height: 120px;}
.form-group input:focus,
.form-group textarea:focus {border-color: #f0c000;}
.form-group label {position: absolute;top: 5px;left: 12px;background: #fff;padding: 0 4px;color: #aaa;font-size: 1rem;pointer-events: none;transition: all 0.3s ease;}
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {top: -20px;left: 10px;font-size: 0.8rem;color: #f0c000;}
.btn-submit {width: 100%;padding: 14px;background-color: #f0c000;border: none;border-radius: 0.5rem;font-weight: 600;font-size: 1rem;color: #000;cursor: pointer;transition: background-color 0.3s ease;}
.btn-submit:hover {background-color: #cca300;}
@media (max-width: 768px) {
.contact { color:white; gap: 5px;}
.contact-content {flex-direction: column;}
.contact-form,.contact-details {width: 100%;}}   

/* map */ 
#leaflet-map {width: 100%;height: 400px;border-radius: 12px;box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);}


/* donation form */       

.donation-form {background: #fff;padding: 30px;border-radius: 12px;box-shadow: 0 0 15px rgba(0,0,0,0.1);width: 100%;}
#customAmountContainer { display: none;}
h2 {text-align: center;margin-bottom: 20px;}
label {font-weight: bold;display: block;margin-top: 15px;}
input[type="text"],
input[type="email"],
input[type="number"],
select {width: 100%;margin-top: 5px; padding: 10px; border: 1px solid #ccc;border-radius: 6px;box-sizing: border-box;}
button {background-color: #ffe373;color: #29211d;padding: 12px;border: none;width: 100%;margin-top: 20px;border-radius: 6px;cursor: pointer;font-size: 16px;font-weight: bold;}
button:hover {background-color: #cca300;}
.message {margin-top: 15px;text-align: center;font-weight: bold;}

/* news page  */
.container2 {max-width: 1200px;margin: 2rem auto;/* padding: 0 1rem; */display: grid;/* grid-template-columns: 3fr 1fr; */gap: 2rem;}
/* Main News Section */


/* Sidebar  */
.sidebar {background: #ffffff;padding: 1.5rem;border-radius: 10px;box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);}
.sidebar h3 {margin-bottom: 1rem;font-size: 1.2rem;color: #0077cc;}
.sidebar ul {list-style-type: none;padding: 0;}
.sidebar li {background: #eef6fb;margin-bottom: 0.5rem;padding: 0.5rem 1rem;border-radius: 5px;transition: background 0.3s ease;cursor: pointer;}
.sidebar li:hover {background: #d0e7f7;}
@media (max-width: 768px) {.container2 {grid-template-columns: 1fr;}} 


.can-cure {background: #fff3cd;padding: 2rem 1rem;margin-top: 3rem;border-top: 4px solid #f0c000;border-radius: 10px;box-shadow: 0 4px 20px rgba(0, 128, 0, 0.05);}
.can-cure h2 {color: #f0c000;margin-bottom: 1.5rem;text-align: center;font-size: 2rem;}
.cure-articles {display: grid;gap: 2rem;}
.cure-articles article {background: #ffffff;padding: 1.5rem;border-radius: 10px;box-shadow: 0 2px 15px rgba(0, 128, 0, 0.1);transition: transform 0.3s ease;}
.cure-articles article:hover {transform: translateY(-5px);}
.cure-articles h3 {color: #cca300;margin-bottom: 0.5rem;}
.cure-articles p {margin-bottom: 0.5rem;line-height: 1.6;color: #333;}

 /* visual-tour-gallery css starts here  */

.visual-tour-tabs-wrapper {width: 100%;overflow-x: auto;padding: 10px 0;}
.visual-tour-tabs {display: flex;justify-content: center;align-items: center;gap: 12px;padding: 10px 0;flex-wrap: nowrap;}
.visual-tour-tab-btn {display: inline-flex;max-width: 120px;width: 100%;align-items: center;justify-content: center;padding: 6px 18px;font-size: 14px;font-weight: 500;background: linear-gradient(1deg, rgb(243, 190, 85), rgb(255, 214, 106));color: #3d3d3d;border: 2px solid rgb(236, 159, 5);border-radius: 20px;cursor: pointer;white-space: nowrap;transition: all 0.3s ease;box-shadow: 0 2px 5px rgba(0, 123, 255, 0.1);}
.visual-tour-tab-btn:hover {background-color: #f0f8ff;box-shadow: 0 3px 8px rgba(0, 123, 255, 0.15);}
.visual-tour-tab-btn.active {font-weight: 900; background: linear-gradient(1deg, rgb(255, 181, 33), rgb(202, 147, 7));color: #fff;box-shadow: 0 1px 10px rgb(207, 173, 19);}
.visual-tour-gallery {display: grid;grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));gap: 24px;padding: 30px 40px;}
.visual-tour-item {position: relative;overflow: hidden;border-radius: 12px;background: #fff;box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);transition: transform 0.3s, box-shadow 0.3s;cursor: pointer;animation: fadeUp 0.6s ease-in-out both;}
.visual-tour-item:hover {transform: translateY(-6px) scale(1.02);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);}
.visual-tour-item img,.visual-tour-item video {width: 100%;height: 220px;object-fit: cover;border-radius: 12px;transition: transform 0.3s ease;}
.visual-tour-item:hover img,.visual-tour-item:hover video {transform: scale(1.05);}
.visual-tour-hover {position: absolute;bottom: 0;left: 0;right: 0;padding: 16px;background: linear-gradient(to top, rgb(0, 0, 0), transparent);color: white;opacity: 0;transform: translateY(20px);transition: all 0.3s ease;}
.visual-tour-hover h3 {margin: 0;font-size: 16px;font-weight: 600;}
.visual-tour-hover p {margin-top: 4px;font-size: 13px;line-height: 1.4;}
.visual-tour-item:hover .visual-tour-hover {opacity: 1;transform: translateY(0);}
.play-icon {position: absolute;top: 50%;left: 50%;width: 60px;height: 60px;transform: translate(-50%, -50%);z-index: 2;pointer-events: none;animation: pulse 1.8s infinite ease-in-out;opacity: 0.85;}
@keyframes pulse {0% {transform: translate(-50%, -50%) scale(1);opacity: 1;}
50% {transform: translate(-50%, -50%) scale(1.15);opacity: 0.7;}
100% {transform: translate(-50%, -50%) scale(1);opacity: 1;}}
.visual-tour-viewer {display: none;position: fixed;z-index: 1000;top: 0;left: 0;width: 100vw;height: 100vh;background: rgba(0, 0, 0, 0.95);justify-content: center;align-items: center;flex-direction: column;animation: fadeIn 0.4s ease-in-out;}
.visual-tour-viewer.show {display: flex;}
.visual-tour-viewer img {max-width: 90%;max-height: 80%;border-radius: 10px;transition: transform 0.3s ease;}
.visual-tour-close {position: absolute;top: 20px;right: 30px;color: white;font-size: 36px;font-weight: bold;cursor: pointer;transition: color 0.3s;}
.visual-tour-close:hover {color: rgb(207, 173, 19);}
.visual-tour-controls {display: flex;gap: 10px;margin-top: 20px;}
.visual-tour-controls button {font-size: 16px;padding: 10px 14px;border: none;background: white;color: #333;border-radius: 6px;cursor: pointer;box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);transition: background 0.3s, transform 0.2s;}
.visual-tour-controls button:hover {background: #eee;transform: translateY(-2px);}
.visual-tour-videoModal {display: none;position: fixed;z-index: 1000;top: 0;left: 0;width: 100vw;height: 100vh;background: rgba(0, 0, 0, 0.95);justify-content: center;align-items: center;flex-direction: column;animation: fadeIn 0.4s ease-in-out;}
.visual-tour-videoModal.show {display: flex;}
.visual-tour-videoModal iframe,
.visual-tour-videoModal video {width: 80vw;height: 60vh;border: none;border-radius: 10px;box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);}
@keyframes fadeUp {from {opacity: 0;transform: translateY(20px);}to {opacity: 1;transform: translateY(0);}}
@keyframes fadeIn {from {opacity: 0;}to {opacity: 1;}}
@media (max-width: 768px) {.visual-tour-gallery {padding: 20px;gap: 16px;}
.visual-tour-tab-btn {font-size: 13px;padding: 6px 14px;flex: 0 0 auto;}
.visual-tour-item img,.visual-tour-item video {height: 180px;}
.visual-tour-videoModal iframe,.visual-tour-videoModal video {width: 92vw;height: 52vh;}
.visual-tour-viewer img {max-width: 95%;max-height: 75%;}}
.visual-tour-tabs::-webkit-scrollbar {height: 6px;}
.visual-tour-tabs::-webkit-scrollbar-thumb {background: #ccc;border-radius: 3px;}

/* visual-tour-gallery css end here  */

/* testimonial css starts here */
.testimonial-sec {background: #f5f5f5;padding: 60px 30px;}
.testimonial-sec-title {text-align: center;font-size: 2.5rem;font-weight: bold;margin-bottom: 40px;color: #333;position: relative;display: inline-block;width: 100%;}
.testimonial-sec-title::after {content: "";display: block;width: 60px;height: 4px;background-color: #ffc107; margin: 10px auto 0;border-radius: 2px;}
.testimonial-container {display: flex;flex-wrap: nowrap;gap: 30px;max-width: 1300px;margin: auto;align-items: stretch;}
.testimonial-left,.testimonial-right {flex: 1 1 50%;min-width: 0;}
.image-slider,.quote-slider {position: relative;height: 63%;}
.slide-img,.quote-slide {opacity: 0;visibility: hidden;position: absolute;top: 0;left: 0;width: 100%;transition: opacity 1s ease-in-out;}
.slide-img.active,
.quote-slide.active {opacity: 1;visibility: visible;position: relative;}
.quote-slide p span { font-size: 55px; font-family: 'swiper-icons';}
.slide-img {border-radius: 10px;height: auto;}
.image-slider {position: relative;height: 100%; min-height: 300px; overflow: hidden;border-radius: 10px;}
.slide-img {height: 100%;width: 100%;object-fit: cover; border-radius: 10px;}
@media screen and (max-width: 768px) {.image-slider {min-height: 200px;}
.testimonial-sec-title { font-size: 2rem; margin-bottom: 20px;}.testimonial-sec {  padding: 40px 45px;}}
.quote-slide {background: white;padding: 35px 20px 35px 20px;border-radius: 10px;font-style: italic;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);min-height: 160px;}
.quote-slide p { line-height: 25px;}
.testimonial-bottom {display: flex;justify-content: space-between;align-items: center;margin-top: 30px;flex-wrap: wrap;gap: 10px;}
.person-info {display: flex;align-items: center;gap: 15px;}
.person-img {width: 60px;height: 60px;border-radius: 5px;object-fit: cover;}
.person-details h4 {margin: 0;font-size: 1.1rem;font-weight: 600;}
.person-details p {margin: 0;color: #666;font-size: 0.9rem;}
.testimonial-controls {display: flex;gap: 5px;}
.testimonial-controls button {background: none;color: #1d1411;border: none;padding: 4px 4px;border-radius: 5px;cursor: pointer;font-size: 30px;transition: background 0.3s ease;}
.testimonial-controls button:hover {background: none;color: #ffc107;}
@media screen and (max-width: 768px) {
.testimonial-container {flex-direction: column;}
.testimonial-bottom {flex-direction: column;align-items: flex-start;}
.testimonial-controls {align-self: flex-end;}}
/* testimonial css end here */ 





/* faq section css starts here */
.faq-container-tree {display: flex;flex-wrap: wrap;gap: 10px;padding: 30px 20px;max-width: 1200px; margin: auto;}
.faq-tree-left {flex: 1 1 45%;min-width: 300px;}
.faq-tree-right {flex: 1 1 45%;min-width: 250px;display: flex;justify-content: center;align-items: center;}
.faq-tree-right img {max-width: 100%;border-radius: 12px;box-shadow: 0 8px 24px rgba(0,0,0,0.1);}
.faq-tree {background: #fff;padding: 30px;border-radius: 14px;box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);}
.faq-heading {font-size: 28px;font-weight: bold;color: #1a1a1a;margin-bottom: 30px;}
.tree-category {margin-bottom: 25px;border-left: 4px solid #8f7400;padding-left: 16px;transition: all 0.3s ease;}
.tree-header {font-size: 18px;font-weight: bold;color: #8f7400;cursor: pointer;display: flex;align-items: center;justify-content: space-between;transition: color 0.3s ease;}
.tree-header i {transition: transform 0.3s ease;}
.tree-category.active .tree-header i {transform: rotate(90deg);}
.tree-items {max-height: 0;overflow: hidden;transition: max-height 0.4s ease;}
.tree-category.active .tree-items {max-height: 1000px;}
.tree-item {margin: 12px 0;border-left: 2px dashed #e2e2e2;padding-left: 14px;}
.tree-question {cursor: pointer;font-weight: 600;font-size: 16px;color: #333;padding: 6px 0;display: flex;justify-content: space-between;align-items: center;transition: color 0.3s ease;}
.tree-question i {transition: transform 0.3s ease;}
.tree-item.active .tree-question i {transform: rotate(90deg);}
.tree-answer {max-height: 0;overflow: hidden;transition: max-height 0.4s ease, padding 0.3s ease;font-size: 14px;color: #555;line-height: 1.5;padding-left: 12px;padding-top: 0;}
.tree-item.active .tree-answer {max-height: 500px; padding-top: 6px;}
.tree-category.active {background: #fffdf2;border-left-color: #f0c000;}
@media (max-width: 768px) {.faq-container-tree {flex-direction: column;}
.faq-tree-right {margin-top: 20px;}}
/* faq section css end here */


/* leadership page css starts here  */
.leadership-section {padding: 40px 20px;max-width: 1200px;margin: auto;/* background: linear-gradient(to bottom, #fdfcfb, #e2d1c3); */border-radius: 20px; /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/}
.section-title {font-size: 2.2rem;text-align: center;margin-bottom: 10px;color: #2c3e50;position: relative;}
.section-title::after {content: "";display: block;width: 60px;height: 4px;background: #f3be55;margin: 10px auto 0;border-radius: 2px;}
.section-subtitle {text-align: center;font-size: 1.1rem;margin-bottom: 40px;color: #555;}
.leader-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 35px;}
.leader-card {background: #fff;border-radius: 18px;box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);overflow: hidden;transition: transform 0.35s ease, box-shadow 0.35s ease;text-align: center;position: relative;}
.leader-card:hover {transform: translateY(-10px);box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);}
.leader-image img {width: 140px;height: 140px;object-fit: cover;border-radius: 50%;margin: 25px auto 10px;border: 5px solid #fff3d0;box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);}
.leader-info {padding: 20px;background: linear-gradient(1deg, rgb(243, 190, 85) -2%, rgb(255 214 106) 100%);border-top: 1px solid #e0e0e0;transition: background 0.3s ease;}
.leader-name {font-size: 1.3rem;font-weight: 700;color: #2d2d2d;margin-bottom: 6px;}
.leader-role {font-size: 1rem;color: #4a4a4a;font-style: italic;}
.leadership-timeline {padding: 60px 20px;background: linear-gradient(to right, #fff8e1, #fff3e0);border-radius: 20px;}
.leadership-timeline h2 {text-align: center;color: #1a0000;font-size: 2.5rem;margin-bottom: 50px;position: relative;}
.timeline {position: relative;max-width: 1000px;margin: auto;padding: 0 20px;}
.timeline::before {content: "";position: absolute;left: 50%;top: 0;bottom: 0;width: 4px;background: #f3be55;transform: translateX(-50%);}
.timeline-item {position: relative;width: 50%;padding: 20px 40px;box-sizing: border-box;}
.timeline-item.left {left: 0;text-align: right;}
.timeline-item.right {left: 50%;text-align: left;}
.timeline-item::before {content: "";position: absolute;top: 24px;width: 20px;height: 20px;border-radius: 50%;background: #f3be55;border: 3px solid white;z-index: 1;}
.timeline-item.left::before {right: -10px;}
.timeline-item.right::before {left: -10px;}
.timeline-content {background: white;padding: 20px;border-radius: 10px;position: relative;box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);animation: fadeInUp 1s ease forwards;}
.timeline-content .year {font-size: 1.3rem;font-weight: bold;color: #2c3e50;display: block;margin-bottom: 5px;}
.timeline-content p {color: #555;font-size: 1rem;line-height: 1.5;}
@keyframes fadeInUp {0% {opacity: 0;transform: translateY(30px);}
100% {opacity: 1;transform: translateY(0);}}
@media (max-width: 768px) {
.timeline::before {left: 10px;}
.timeline-item,
.timeline-item.left,
.timeline-item.right {width: 100%;padding-left: 30px;padding-right: 15px;text-align: left;left: 0;}
.timeline-item::before {left: 0;}}
.leadership-cta {text-align: center;padding: 60px 20px;background: linear-gradient(to right, #ffd56a, #f3be55);color: #2c2c2c;}
.leadership-cta h2 {font-size: 2rem;margin-bottom: 10px;}
.leadership-cta p {font-size: 1.1rem;margin-bottom: 20px;}
.cta-btn {background: #2c3e50;color: #fff;padding: 12px 24px;border-radius: 30px;text-decoration: none;font-weight: bold;transition: background 0.3s ease;}
.cta-btn:hover {background: #1a2734;}
.chairman-message {padding: 40px 20px;background: #fff9f0;margin: 0 auto;}
.section-title {font-size: 2rem;text-align: center;color: #2c3e50;margin-bottom: 30px;}
.message-wrapper {display: flex;gap: 20px;align-items: center;flex-wrap: wrap;justify-content: center;}
.message-wrapper img {width: 120px;height: 120px;border-radius: 50%;object-fit: cover;flex-shrink: 0;}
.message-wrapper blockquote {font-style: italic;color: #444;max-width: 600px;margin: 0;line-height: 1.6;position: relative;}
.message-wrapper blockquote footer {display: block;margin-top: 10px;font-weight: bold;color: #2c3e50;}
@media (max-width: 768px) {
.message-wrapper {flex-direction: column;text-align: center;}
.message-wrapper blockquote {max-width: 100%;padding: 0 10px;}
.message-wrapper img {width: 100px;height: 100px;}}



/* leadership page css end here  */

/* back to top css starts here*/
.back-to-top {position: fixed;bottom: 24px;right: 30px;z-index: 999;width: 52px;height: 52px;background:linear-gradient(1deg, rgb(243, 190, 85) -2%, rgb(255 214 106) 100%);color: #fff;border: none;border-radius: 50%;font-size: 24px;display: flex;align-items: center;justify-content: center;box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);cursor: pointer;opacity: 0;pointer-events: none;transition: all 0.3s ease;}
.back-to-top::after {content: attr(aria-label);position: absolute;bottom: 110%;left: 50%;transform: translateX(-50%);background-color: #333;color: #fff;padding: 6px 10px;border-radius: 6px;white-space: nowrap;font-size: 13px;opacity: 0;pointer-events: none;transition: all 0.25s ease;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);}
.back-to-top:hover::after {opacity: 1;transform: translateX(-50%) translateY(-4px);}
.back-to-top:hover {transform: translateY(-6px) scale(1.1);box-shadow: 0 14px 35px rgba(255, 153, 0, 0.4);background: linear-gradient(135deg, #ffcc00, #ff6600);}
.back-to-top.show {opacity: 1;pointer-events: auto;}

/* back to top css end here*/




 /* footer css starts here */
 .footer-sec {background: linear-gradient(to right, #f9fafb, #e9ecef);padding: 25px 40px;}
 .footer-sec .footer-top {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 40px;padding-bottom: 10px;border-bottom: 1px solid #ccc;}
 .footer-sec .footer-left {flex: 1 1 300px;}
 .footer-sec .footer-logo {max-width: 110px;margin-bottom: 15px; border-radius: 7px;}
 .footer-sec .footer-address {font-size: 15px;color: #444;line-height: 1.8;}
 .footer-sec .footer-right {display: flex;flex-wrap: wrap;gap: 50px;align-items: center;}
 .footer-dropdown-ver-menu {list-style: none;margin: 0;padding: 0;display: flex;gap: 2rem;justify-content: flex-start;align-items: flex-start;flex-wrap: wrap;}
 .footer-dropdown-ver-item {position: relative;}
 .footer-dropdown-ver-link {display: inline-block;padding: 0.5rem 0;color: #333;text-decoration: none;font-weight: 600;font-size: 1rem;transition: color 0.3s ease;}
 .footer-dropdown-ver-link:hover,.footer-dropdown-ver-link:focus {color: #f3c400;}
 .footer-dropdown-ver-has-submenu > .footer-dropdown-ver-link::after {content: " ▼";font-size: 0.6rem;margin-left: 0.4rem;vertical-align: middle;color: #f3c400;transition: transform 0.3s ease;}
 .footer-dropdown-ver-submenu {position: absolute;top: calc(100% + 8px);left: 0;background-color: #ffffff;min-width: 200px;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);border-radius: 6px;padding: 10px 0;opacity: 0;visibility: hidden;transform: translateY(10px);transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;z-index: 100;}
 .footer-dropdown-ver-item.footer-dropdown-ver-has-submenu:hover > .footer-dropdown-ver-submenu,
 .footer-dropdown-ver-item.footer-dropdown-ver-has-submenu:focus-within > .footer-dropdown-ver-submenu {opacity: 1;visibility: visible;transform: translateY(0);}
 .footer-dropdown-ver-subitem {list-style: none;}
 .footer-dropdown-ver-sublink {display: block;padding: 10px 16px;color: #444;text-decoration: none;font-size: 0.95rem;transition: background-color 0.25s ease, color 0.25s ease;white-space: nowrap;font-weight: 500;}
 .footer-dropdown-ver-sublink:hover,.footer-dropdown-ver-sublink:focus {background-color: #f7f7f7;color: #f3c400;border-radius: 4px;}
 .footer-sec .footer-social {display: flex;justify-content: right;gap: 25px;padding: 10px 0;}
 .footer-sec .footer-social a {font-size: 15px;background-color: #1a0000;width: 30px;height: 30px;border-radius: 50%;text-align: center;align-items: center;align-content: center;color: #ffffff;transition: transform 0.3s ease, color 0.3s ease;display: flex;justify-content: center;text-decoration: none;}
 .footer-sec .footer-social a:hover {color: #f3c400;transform: scale(1.2);}
 .footer-sec .footer-bottom {text-align: center;padding-top: 20px;font-size: 14px;color: #666;border-top: 1px solid #ccc;}
 .footer-sec .footer-bottom a {margin: 0 10px;color: #666;text-decoration: none;font-weight: 500;transition: color 0.3s;}
 .footer-sec .footer-bottom a:hover {color: #f3c400;}
 .footer-sec .footer-bottom p {margin-top: 10px;margin-bottom: 0;}
 @media (max-width: 768px) {
  .footer-sec .footer-left {flex: 1 1 230px;}
  .footer-sec {padding: 30px 42px;}
  .footer-sec .footer-logo  { max-width: 80px;}
 .footer-sec .footer-top {flex-direction: column;gap: 30px; }
 .footer-sec .footer-right {flex-direction: row;flex-wrap: wrap;gap: 20px;align-items: flex-start;}
 .footer-dropdown-ver-menu {flex-direction: row;flex-wrap: wrap;gap: 1.5rem;width: 100%;}
 .footer-dropdown-ver-item {flex: 1 1 45%;}
 .footer-dropdown-ver-submenu {position: static;transform: none;opacity: 1;visibility: visible;box-shadow: none;background-color: transparent;padding-left: 0.5rem;}
 .footer-dropdown-ver-sublink {color: #333;font-weight: 600;padding: 6px 0;}
 .footer-dropdown-ver-sublink:hover,
 .footer-dropdown-ver-sublink:focus {background-color: transparent;color: #f3c400;}
 .footer-dropdown-ver-has-submenu > .footer-dropdown-ver-link::after {content: none;}
 .footer-sec .footer-bottom a {display: inline-block;margin: 6px 10px;}}
   


