/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;800&family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-green: #28a745;
    --dark-green: #218838;
    --light-green: #e8f5e9;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #eeeeee;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
}

h1, h2, h3, .navbar-brand span {
    font-family: 'Playfair Display', serif;
}
.send-msg
{
    width: 70% !important;
    margin-left: 15%;

}
blockquote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    background-color: #f0fff4; /* Very light green tint */
    border-left: 5px solid var(--primary-green);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    color: var(--dark-text);
    line-height: 1.8;
    position: relative;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.03);
}

/* Optional: Adding quotation marks via CSS */
blockquote::before {
    content: '"';
    color: var(--primary-green);
    font-size: 2rem;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}


/* --- Header --- */
#mainNav { transition: all 0.3s ease; padding: 12px 0; }
.logo-square { width: 45px; height: 45px; object-fit: cover; border-radius: 4px; }
.nav-link { font-weight: 700; font-size: 0.85rem; transition: 0.3s; }
.nav-link:hover { color: var(--primary-green) !important; transform: translateY(0px); }
/* Using your --dark-green variable */
.nav-link.active {
    color: var(--dark-green) !important;
    border-bottom: 2px solid var(--dark-green);
    font-weight: bold;
}


/* --- Hero Slider --- */
.hero-slider .carousel-item { height: 75vh; min-height: 460px; }
.slider-img { height: 100%; width: 100%; object-fit: cover; }
.slider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); }
.carousel-caption { bottom: 30%; z-index: 10; }
.carousel-caption h1 { font-size: 3.2rem; font-weight: 800; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }

/* --- Badges Section --- */
.badges-row { margin-top: -50px; position: relative; z-index: 20; }
.badge-item { background: #fff; transition: 0.3s; }
.badge-item:hover { background: #f0fff4; }

/* Circle Navigation Arrows */
.control-circle { width: 55px; height: 55px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.carousel-control-prev:hover .control-circle, .carousel-control-next:hover .control-circle { background: var(--primary-green); transform: scale(1.1); }

/* --- About Us (Dual Image Layout) --- */
.section-padding { padding: 100px 0; }
.about-dual-images { position: relative; padding-bottom: 50px; }
.about-dual-images .main-img { width: 85%; border-radius: 20px; }
.about-dual-images .sub-img { 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 50%; 
    border: 8px solid #fff; 
    border-radius: 20px; 
}
.experience-card-floating {
    position: absolute;
    top: 10%;
    left: -20px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 6px solid var(--primary-green);
    z-index: 5;
}

/* --- Specialisations --- */
.spec-card-pro {
    padding: 35px;
    border-radius: 15px;
    height: 100%;
    transition: 0.4s;
    border: 1px solid #eee;
}
.spec-card-pro:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.spec-pink { background-color: #fdf2f4; }
.spec-gray { background-color: #f8f9fa; }
.spec-card-pro h4 { color: #28a745; font-size: 1.25rem; }
.spec-list-pro { list-style: none; padding: 0; margin: 0; }
.spec-list-pro li { margin-bottom: 10px; font-size: 0.95rem; position: relative; padding-left: 20px; }
.spec-list-pro li::before { content: '•'; position: absolute; left: 0; color: #333; font-weight: bold; }
.list-unstyled {
    padding-left: 25px;
}
/* --- OPD Services --- */
.side-img-full { height: 100%; min-height: 400px; background-size: cover; background-position: center; }
.service-icon-pro {
    width: 50px; height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; 
    color: var(--primary-green);
    flex-shrink: 0;
    transition: 0.3s;
}

.service-row-pro:hover .service-icon-pro { background: var(--primary-green); color: white; transform: rotateY(180deg); }

span.color-char {
    color: var(--primary-green);
}
.treatment-list { list-style: none; padding: 0; margin: 0 0 0 15%; }
.treatment-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #495057;
    /* width: 50%;
    float: left; */
    font-size: 14px;;
}
.treatment-list i { color: var(--primary-green); margin-right: 10px; font-size: 1rem; }
.clearfix::after { content: ""; clear: both; display: table; }

/* --- Info Cards & Divider --- */
.info-card-white { background: #fff; border: 1px solid #eee; transition: 0.3s; }
.info-card-white:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important; }
.timeline-pro { 
    /* border-left: 2px solid var(--primary-green);  */
    padding-left: 25px; 
    position: relative; 
}

.text-success i { width: 30px; }

/* --- Products --- */
.clickable-card { cursor: pointer; transition: 0.4s; border-radius: 15px; overflow: hidden; }
.clickable-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important; }
.media-preview { height: 300px; position: relative; overflow: hidden; }
.media-preview img { height: 100%; width: 100%; object-fit: cover; transition: 0.5s; }
.clickable-card:hover .media-preview img { transform: scale(1.1); }

/* Modal Media Fix */
.main-img-container { height: 450px; width: 100%; background: #fff; overflow: hidden; }
.main-img-container img, .main-img-container video { max-height: 100%; max-width: 100%; object-fit: contain; }
.thumb-img { width: 65px; height: 65px; object-fit: cover; cursor: pointer; border: 2px solid transparent; border-radius: 6px; opacity: 0.6; }
.thumb-img.active { border-color: var(--primary-green); opacity: 1; }

/* --- Responsive & Desktop Divider --- */
@media (min-width: 992px) {
        .ps-lg-5 {
            padding-left: 0rem !important;
        }
    .border-end-divider { border-right: 1px solid #e0e0e0; }
}

@media (max-width: 991px) {
    .hero-slider .carousel-item { height: 55vh; }
    .carousel-caption h1 { font-size: 2.5rem; }
    .experience-card-floating { left: 10px; padding: 15px 25px; }
    .badges-row { margin-top: -20px; }
    .side-img-full { min-height: 300px; }
    .treatment-list li { width: 100%; float: none; }
}

@media (max-width: 767px) {
    .carousel-caption {
        bottom: 15%;
    }
}
