/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
section {
    width: 100%;
    overflow: hidden;
}

/* --- Link Styling --- */
.border-top {
    border-top: 1px solid #f1f5f9 !important;
}

.text-teal {
    color: var(--brand-teal) !important;
}

.btn-link.text-teal {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-link.text-teal:hover {
    color: var(--brand-dark) !important; 
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .btn-link.text-teal {
        font-size: 13px;
        padding-top: 5px;
    }
}
/* --- Link Styling --- */

/* Top Header  */
.top-header {
    padding: 20px 0;
    background: #fff;
}

.site-logo {
    max-height: 80px;
    width: auto;
}

.header-action-btn {
    border: 1px solid #0076a3;
    color: #0076a3;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    margin-left: 10px;
}

.header-action-btn:hover {
    background: #0076a3;
    color: #fff;
}
/* Top Header  */

/* Main Navigation */
.main-nav {
    background: #006699; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 15px 20px !important;
    font-size: 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #006699;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link { padding: 10px 20px !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
.top-header-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10000; 
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.main-nav-wrap {
    position: relative;
    z-index: 9999;
}

.top-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0 !important; 
}

@media (max-width: 991px) {
    .top-header-wrap {
        padding: 8px 0; 
    }
    
    .header-info-box {
        gap: 5px;
    }
}
::-webkit-scrollbar {
    width: 10px; 
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: var(--brand-teal); 
    border-radius: 10px; 
    border: 2px solid #f1f1f1; 
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark); 
}
/* Main Navigation  */


/* --- Founder Space  --- */
.founder-section {
    padding: 90px 0;
    background: #fbfbfb;
}
.founder-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.founder-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.founder-content {
    padding-left: 50px;
}

.founder-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
}
.founder-quote {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid #F44336;
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}
.founder-bio {
    font-size: 14px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 40px;
    text-align: justify;
}

.founder-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.founder-info p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .founder-content {
        padding-left: 0;
        margin-top: 50px;
    }
    .founder-img-box img {
        height: 400px;
    }
    .founder-content h2 {
        font-size: 26px;
    }
}
/* --- Founder Space  --- */

/* --- Page CSS  --- */
.page-banner { 
    background: #f8fafc; 
    padding: 60px 0; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 50px; 
}
.page-title { 
    font-weight: 800; 
    color: var(--brand-dark); 
    font-size: 42px; 
}
.page-content { 
    line-height: 1.8; 
    color: #444; 
    font-size: 17px; 
}
.page-content img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 10px; 
    margin: 20px 0; 
}
/* --- Page CSS  --- */


/* --- Doctor List  --- */
.doctors-section { padding: 90px 0; background: #fbfbfb; }

.section-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.section-header-v3 h2 { font-size: 36px; font-weight: 800; color: #004d40; margin: 0; }

.nav-group-v3 { display: flex; gap: 12px; }
.nav-btn-v3 {
    width: 42px; height: 42px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #004d40;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s; font-size: 14px;
}
.nav-btn-v3:hover { border-color: #004d40; background: #004d40; color: #fff; }

.doc-card-v3 {
    background: #fff;
    border-radius: 28px;
    padding: 12px; 
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    height: 100%; position: relative;
}
.doc-card-v3:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0, 77, 64, 0.1); border-color: #4CAF50; }

.doc-image-v3 {
    background: #f8f9fa; 
    border-radius: 22px;
    height: 200px;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden; margin-bottom: 15px;
}
.doc-image-v3 img {
    height: 100%; width: 100%;
    object-fit: contain; 
    transition: 0.5s ease;
}
.doc-card-v3:hover .doc-image-v3 img { transform: scale(1.05); }

/* Details & Button */
.doc-content-v3 { padding: 5px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.doc-content-v3 h4 { font-size: 18px; font-weight: 500; color: #004d40; margin-bottom: 6px; }
.doc-content-v3 p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 25px; min-height: 60px; }

.btn-profile-v3 {
    margin-top: auto;
    background: #004d40; 
    color: #fff !important;
    padding: 14px 0;
    border-radius: 50px;
    font-size: 14px; font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s;
}
.btn-profile-v3:hover { background: #00695c; transform: scale(1.02); }

.swiper-pagination-v3 {
    margin-top: 40px !important;
    position: relative !important;
    bottom: 0 !important;
    width: 100%;
}
.swiper-pagination-bullet {
    background: #cbd5e1 !important; 
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
    transition: 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: var(--brand-teal) !important;
    width: 25px !important; 
    border-radius: 5px !important;
}
.section-header-v3 {
    margin-bottom: 30px;
}

/* Mobile Specific */
@media (max-width: 768px) {
    .doc-image-v3 { height: 200px; }
    .section-header-v3 h2 { font-size: 28px; }
}
/* --- Doctor List  --- */


/* --- Counter CSS --- */
.stats-section-artistic {
    padding: 80px 0;
    background-color: #ffffff;
    background-image: radial-gradient(#004d40 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    background-opacity: 0.05;
}

.stats-card-art {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 35px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.stats-card-art::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(0, 158, 179, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.stats-card-art::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: -1;
}

.stats-card-art:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 77, 64, 0.08);
    border-color: #004d40;
}

.icon-box-modern {
    width: 80px;
    height: 80px;
    background: #00563b;
    color: #ffffff;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgb(0 86 59 / 14%);
    transition: 0.4s;
}

.stats-card-art:hover .icon-box-modern {
    transform: scale(1.1) rotate(10deg);
    background: #013223;
}

.stats-card-art h2 {
    font-size: 45px;
    font-weight: 800;
    color: #0f172a; 
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stats-card-art p {
    font-size: 16px;
    color: #00563b;
    font-weight: 500;
    margin: 0;
}
.bottom-bar {
    width: 30px;
    height: 4px;
    background: #F44336;
    margin: 20px auto 0;
    border-radius: 10px;
    opacity: 1;
    transition: 0.4s;
}

.stats-card-art:hover .bottom-bar {
    width: 60px;
    opacity: 1;
    background: #F44336;
}

@media (max-width: 575px) {
    .stats-card-art h2 {
        font-size: 25px;
        font-weight: 600;
        color: #0f172a; 
        margin-bottom: 10px;
        letter-spacing: -1px;
    }
    .stats-card-art p {
        font-size: 12px;
        color: #00563b;
        font-weight: 500;
        margin: 0;
    }
}

/* --- Counter CSS --- */

/* --- News & Notice ---*/
.news-notice-wrapper { padding: 100px 0; background: #ffffff; }

.calendar-badge {
    width: 55px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}
.calendar-badge .month {
    background: var(--brand-teal);
    color: #fff;
    width: 100%;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 2px 0;
}
.calendar-badge .day {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-dark);
}

.refined-news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
}
.refined-news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-teal);
}

.news-img-holder {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.news-img-holder img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.refined-news-card:hover .news-img-holder img { transform: scale(1.1); }

.news-meta-box {
    position: absolute;
    bottom: -30px;
    left: 25px;
    z-index: 10;
}

.news-body-content {
    padding: 45px 25px 25px;
}
.news-body-content h4 { font-size: 20px; font-weight: 700; color: #1e293b; line-height: 1.5; margin-bottom: 15px; }

.refined-notice-board {
    background: #f8fafc;
    border-radius: 30px;
    padding: 35px;
    border: 1px solid #eef2f6;
}
.notice-card-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed #cbd5e1;
    transition: 0.3s;
    text-decoration: none !important;
}
.notice-card-item:last-child { border: none; }
.notice-card-item:hover { transform: translateX(8px); }

.notice-info-text h6 { font-size: 15px; font-weight: 600; color: #334155; line-height: 1.4; transition: 0.3s; }
.notice-card-item:hover h6 { color: var(--brand-teal); }

.date-badge-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.calendar-mini {
    width: 50px;
    height: 55px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.calendar-mini .month {
    background: var(--brand-teal);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 0;
    display: block;
}

.calendar-mini .day {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
    display: block;
    padding-top: 2px;
}

.date-info-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}
/* --- News & Notice ---*/

/* --- News List ---*/
.list-banner { background: #f8fafc; padding: 70px 0; border-bottom: 1px solid #eee; margin-bottom: 60px; }
.list-banner h1 { font-weight: 800; color: var(--brand-dark); font-size: 42px; }

.news-grid-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}
.news-grid-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.06); border-color: var(--brand-teal); }

.news-image-box { height: 230px; overflow: hidden; position: relative; }
.news-image-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.news-grid-card:hover .news-image-box img { transform: scale(1.1); }

.list-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.news-grid-body { padding: 30px 25px; }
.type-pill { 
    background: rgba(0, 158, 179, 0.1); color: var(--brand-teal); 
    padding: 4px 12px; border-radius: 50px; font-size: 11px; 
    font-weight: 700; text-transform: uppercase; margin-bottom: 15px; display: inline-block;
}

.news-grid-title { font-size: 20px; font-weight: 700; color: #1e293b; line-height: 1.4; margin-bottom: 20px; transition: 0.3s; }
.news-grid-card:hover .news-grid-title { color: var(--brand-teal); }

.pagination .page-link {
    border: none; margin: 0 5px; border-radius: 10px !important;
    color: #64748b; font-weight: 600; padding: 10px 18px;
}
.pagination .page-item.active .page-link { background-color: var(--brand-teal); color: #fff; box-shadow: 0 5px 15px rgba(0, 158, 179, 0.3); }
/* --- News List ---*/

/* --- Board Member & Staff ----*/
.member-page-banner { background: #f8fafc; padding: 60px 0; border-bottom: 1px solid #eee; margin-bottom: 60px; }
    
.member-card-standard {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.member-card-standard:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--brand-teal);
}

.member-img-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #f1f5f9;
    transition: 0.3s;
}

.member-card-standard:hover .member-img-wrap { border-color: var(--brand-teal); }

.member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name { font-size: 19px; font-weight: 700; color: #1e293b; margin-bottom: 5px; }
.member-desig { font-size: 13px; font-weight: 600; color: var(--brand-teal); text-transform: uppercase; letter-spacing: 0.5px; }
    
.member-social { margin-top: 15px; display: flex; justify-content: center; gap: 10px; }
.member-social a { color: #cbd5e1; font-size: 14px; transition: 0.3s; }
.member-social a:hover { color: var(--brand-teal); }


.staff-banner { 
    background: #f8fafc; 
    padding: 70px 0; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 60px; 
}
.staff-banner h1 { font-weight: 800; color: var(--brand-dark); font-size: 42px; }

.staff-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--brand-teal);
}

.staff-img-box {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #f1f5f9;
    transition: 0.3s;
    overflow: hidden;
}

.staff-card:hover .staff-img-box {
    border-color: var(--brand-teal);
    transform: scale(1.05);
}

.staff-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.staff-name { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 5px; }
.staff-desig { 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--brand-teal); 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    margin-bottom: 0;
    }
@media (max-width: 575px) {
    .staff-img-box { width: 100px; height: 100px; }
    .staff-name { font-size: 16px; }
}
</style>
/* --- Board Member & Staff ----*/


/* Service Card */
.svc-card {
    background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; overflow: hidden;
    transition: 0.3s; height: 100%;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.svc-img { height: 200px; width: 100%; object-fit: cover; }
.svc-title { padding: 20px; font-weight: 700; color: #1e293b; text-align: center; }

/* Center Location Card */
.center-card {
    background: #fff; border-left: 5px solid var(--brand-teal);
    padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); height: 100%;
}
.center-card h5 { color: var(--brand-teal); font-weight: 700; margin-bottom: 15px; }
.center-info { font-size: 14px; color: #64748b; margin-bottom: 8px; }
.center-info i { width: 25px; color: var(--brand-teal); }
/* Service Card */

/* PEC/VC Center */
.center-banner { background: #f8fafc; padding: 60px 0; border-bottom: 1px solid #eee; margin-bottom: 50px; }
.district-header { 
    background: var(--brand-teal); color: #fff; padding: 12px 30px; 
    border-radius: 50px; display: inline-block; margin-bottom: 30px; 
    font-weight: 700; font-size: 18px; letter-spacing: 1px;
}
.center-card-v3 {
    background: #fff; border-radius: 20px; padding: 25px; 
    border: 1px solid #f1f5f9; transition: 0.3s; height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.center-card-v3:hover { transform: translateY(-5px); border-color: var(--brand-teal); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.center-card-v3 h5 { color: #1e293b; font-weight: 700; margin-bottom: 15px; font-size: 18px; }
.info-line { font-size: 14px; color: #64748b; margin-bottom: 8px; display: flex; gap: 10px; }
.info-line i { color: var(--brand-teal); width: 20px; margin-top: 3px; }
/* PEC/VC Center */

/* --- Hospital Services Page Styling --- */
.services-banner { 
    background: #f8fafc; 
    padding: 80px 0; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 60px; 
}
.services-banner h1 { font-weight: 800; color: var(--brand-dark); font-size: 42px; }

.svc-card-refined {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.svc-card-refined:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: var(--brand-teal);
}

.svc-img-holder {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.svc-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-card-refined:hover .svc-img-holder img {
    transform: scale(1.1);
}

.svc-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    transition: 0.3s;
}

.svc-card-refined:hover .svc-content h5 {
    color: var(--brand-teal);
}

.svc-content::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--brand-teal);
    margin: 15px auto 0;
    border-radius: 10px;
    opacity: 0.2;
    transition: 0.3s;
}

.svc-card-refined:hover .svc-content::after {
    width: 60px;
    opacity: 1;
}

@media (max-width: 768px) {
    .services-banner { padding: 50px 0; }
    .services-banner h1 { font-size: 32px; }
    .svc-img-holder { height: 200px; }
}
/* --- Hospital Services Page Styling --- */

/* --- Our Projects  Style --- */
.project-container-refined {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.project-row-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    position: relative;
}

.project-row-item:hover {
    transform: scale(1.01) translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: var(--brand-teal);
    z-index: 2;
}

.proj-main-info {
    flex: 3;
    display: flex;
    align-items: center;
    gap: 25px;
}

.proj-status-icon {
    width: 55px;
    height: 55px;
    background: #f8fafc;
    color: var(--brand-teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.project-row-item:hover .proj-status-icon {
    background: var(--brand-teal);
    color: #fff;
}

.proj-title-area h4 {
    font-size: 18px;
    font-weight: 400;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.proj-title-area p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.proj-meta-info {
    flex: 1;
    text-align: center;
}

.file-badge-premium {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.proj-action-area {
    flex: 1;
    text-align: right;
}

.btn-read-proj {
    background: #004d40; 
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-read-proj:hover {
    background: #00695c;
    box-shadow: 0 10px 20px rgba(0, 77, 64, 0.15);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .project-row-item { flex-direction: column; text-align: center; gap: 20px; }
    .proj-main-info { flex-direction: column; }
    .proj-action-area, .proj-meta-info { width: 100%; text-align: center; }
    .btn-read-proj { width: 100%; }
}

.modal {
    z-index: 99999 !important; 
}
.modal-backdrop {
    z-index: 99998 !important;
}

.modal-content {
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.modal-header {
    background-color: #f8fafc;
    padding: 20px 30px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.modal-header .btn-close {
    background-color: #fff;
    opacity: 1;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modal-body {
    padding: 35px !important;
    max-height: 70vh; 
    overflow-y: auto; 
}

#m_title {
    color: #0f172a;
    line-height: 1.4;
    font-size: 22px;
}

#m_desc {
    color: #475569;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}
/* --- Our Projects  Style --- */

/* --- Our Partner Style --- */
.partner-banner-refined { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #f1f5f9; margin-bottom: 60px; }
.partner-card-standard {
    background: #ffffff; border-radius: 20px; border: 1px solid #f1f5f9; height: 180px;
    display: flex; align-items: center; justify-content: center; padding: 30px;
    transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.partner-card-standard img { max-width: 100%; max-height: 90px; object-fit: contain; }
.partner-card-standard:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--brand-teal); }

.pagination-modern .page-link {
     border: 1px solid #e2e8f0; color: #64748b; margin: 0 4px;
    border-radius: 10px !important; padding: 10px 18px; font-weight: 600;
}
.pagination-modern .page-item.active .page-link { background: var(--brand-teal); color: #fff; border-color: var(--brand-teal); }
/* --- Our Partner Style --- */

/* --- 404 Page Styling --- */
.error-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: #f1f5f9;
    position: relative;
    margin-bottom: -30px;
    z-index: 1;
}

.error-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-dark);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.error-text {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.error-icon {
    font-size: 80px;
    color: var(--brand-teal);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.btn-home {
    background: var(--brand-teal);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 158, 179, 0.2);
}

.btn-home:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 51, 78, 0.2);
}
/* --- 404 Page Styling --- */

/* --- Donations Styling --- */
.donation-banner { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #eee; margin-bottom: 50px; }
    
.donation-row-card {
    background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; padding: 25px 30px;
    margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.donation-row-card:hover { transform: scale(1.01); border-color: var(--brand-teal); box-shadow: 0 10px 25px rgba(0, 158, 179, 0.08); }
    
.pay-logo-circle { width: 65px; height: 65px; background: #f8fafc; border-radius: 15px; padding: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pay-logo-circle img { max-width: 100%; max-height: 100%; object-fit: contain; }
    
.pay-content h5 { font-size: 19px; font-weight: 700; color: #1e293b; margin: 0; }
.pay-details { color: #64748b; font-size: 15px; margin-top: 5px; line-height: 1.5; white-space: pre-line; }

.cat-badge { font-size: 10px; text-transform: uppercase; font-weight: 700; background: #eef2ff; color: #4d1dff; padding: 3px 10px; border-radius: 5px; display: inline-block; margin-bottom: 5px; }

.nav-donation { gap: 10px; border-bottom: none; margin-bottom: 40px; justify-content: center; }
.nav-donation .nav-link { 
    border: 1px solid #e2e8f0 !important; color: #475569; font-weight: 600; 
    padding: 12px 25px; border-radius: 50px; transition: 0.3s; background: #fff;
}
.nav-donation .nav-link.active { background: var(--brand-teal) !important; color: #fff !important; border-color: var(--brand-teal) !important; box-shadow: 0 5px 15px rgba(0, 158, 179, 0.2); }

@media (max-width: 768px) {
    .donation-row-card { flex-direction: column; text-align: center; gap: 20px; }
    .nav-donation { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 10px; }
    .nav-donation .nav-link { white-space: nowrap; padding: 10px 20px; font-size: 13px; }
    }
/* --- Donations Styling --- */

/* --- Carrier --- */
.career-banner { background: #f8fafc; padding: 70px 0; border-bottom: 1px solid #eee; margin-bottom: 50px; }
.job-table { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.job-table thead { background: var(--brand-teal); color: #fff; }
.job-table th { padding: 20px; font-weight: 600; border: none; }
.job-table td { padding: 20px; vertical-align: middle; border-bottom: 1px solid #f8fafc; }
.btn-apply-sm { background: #e0f2f1; color: var(--brand-teal); font-weight: 700; border-radius: 10px; padding: 8px 20px; transition: 0.3s; }
.btn-apply-sm:hover { background: var(--brand-teal); color: #fff; transform: translateX(5px); }

.job-meta-box { background: #f8fafc; border-radius: 20px; padding: 25px; border: 1px solid #eef2f6; }
.apply-alert { background: #e0f2f1; border-left: 5px solid var(--brand-teal); padding: 20px; border-radius: 12px; }
/* --- Carrier --- */

/* --- Volunteer Style --- */
.volunteer-banner { background: #f8fafc; padding: 60px 0; border-bottom: 1px solid #eee; }
    
.cta-slim-wrap {
    margin-top: -30px; 
    position: relative;
    z-index: 20;
}

.cta-slim-container {
    background: #004d40; 
    padding: 12px 30px; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0, 77, 64, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-text-content h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.cta-text-content h5 b {
    font-weight: 800;
    color: #4db6ac;
}

.btn-join-pill {
    background: #ffffff;
    color: #004d40;
    border: none;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-join-pill:hover {
    background: #4db6ac;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-slim-container {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    .cta-text-content h5 { font-size: 14px; }
}

   
.v-card-refined {
    background: #fff; border-radius: 20px; border: 1px solid #f1f5f9;
    padding: 20px; text-align: center; transition: 0.3s; height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.v-card-refined:hover { transform: translateY(-7px); border-color: var(--brand-teal); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
    
.v-img-box { width: 110px; height: 110px; margin: 0 auto 15px; border-radius: 50%; padding: 4px; border: 2px solid #f1f5f9; }
.v-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    
.v-name { font-size: 17px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.v-org { font-size: 12px; color: #64748b; margin-bottom: 8px; font-weight: 500; }
.v-project { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--brand-teal); background: rgba(0,158,179,0.08); padding: 4px 12px; border-radius: 50px; display: inline-block; }

.form-label { font-weight: 700; font-size: 13px; color: #475569; }
.form-control-custom { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 15px; font-size: 14px; }
.form-control-custom:focus { border-color: var(--brand-teal); box-shadow: 0 0 0 4px rgba(0, 158, 179, 0.1); outline: none; }
/* --- Volunteer Style --- */

/* --- Downloads--- */
.download-banner h1 {
    font-size: 45px;
    font-weight: 800;
    color: #004d40;
}
.modern-dl-container {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

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

.modern-dl-table thead th {
    background: #00563b;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: 1px solid #f3f3f3;
}

.modern-dl-table td {
    padding: 20px;
    border-bottom: 1px solid #f8fafc;
    vertical-align: middle;
}

.btn-dl-modern {
    background: var(--brand-teal);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-dl-modern:hover {
    background: #004d40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 158, 179, 0.3);
}

.badge-format {
    background: #eef2ff;
    color: #4d1dff;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .modern-dl-table thead {
        display: none; 
    }

    .modern-dl-table, 
    .modern-dl-table tbody, 
    .modern-dl-table tr, 
    .modern-dl-table td {
        display: block;
        width: 100%;
    }

    .modern-dl-table tr {
        background: #fff;
        margin-bottom: 25px;
        border-radius: 24px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        padding: 20px;
    }

    .modern-dl-table td {
        padding: 0 !important;
        border: none !important;
        margin-bottom: 15px;
        text-align: left !important;
    }

    .modern-dl-table td[data-label="Resource"]::before,
    .modern-dl-table td[data-label="Description"]::before {
        content: attr(data-label);
        display: block;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 10px;
        color: var(--brand-teal);
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .modern-dl-table td[data-label="Format"],
    .modern-dl-table td[data-label="Download"]::before {
        display: none !important;
    }

    .modern-dl-table td[data-label="Resource"] span {
        font-size: 18px;
        font-weight: 700;
        display: block;
        color: #1e293b;
    }

    .text-muted {
        font-size: 14px;
        line-height: 1.6;
        color: #475569 !important;
        text-align: justify;
    }

    .btn-dl-modern {
        display: flex;
        width: 100%;
        padding: 16px;
        font-size: 15px;
        margin-top: 5px;
        border-radius: 15px;
    }

    .modern-dl-container {
        background: transparent;
        border: none;
    }
}
/* --- Downloads--- */

/* --- Awards */
.awards-banner-v2 { background: #f8fafc; padding: 60px 0; border-bottom: 1px solid #eee; margin-bottom: 50px; }
.awards-banner-v2 h1 { font-weight: 800; color: #0f172a; font-size: 42px; }

.award-card-v7 {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.award-img-box-v7 {
    width: 100%;
    height: 200px; 
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.award-img-box-v7 img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 15px;
    transition: 0.6s ease;
    }

.award-card-v7:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 77, 64, 0.08);
    border-color: var(--brand-teal);
}
.award-card-v7:hover .award-img-box-v7 img {
    transform: scale(1.08);
}

.award-info-v7 {
    padding: 20px 15px;
    text-align: center;
}

.award-info-v7 h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.fancybox__container {
    z-index: 100000 !important;
}

@media (max-width: 768px) {
    .award-img-box-v7 { height: 250px; }
    .awards-banner-v2 h1 { font-size: 32px; }
}
/* --- Awards */

/* ---  Photo Gallery  --- */
.gallery-banner {
    background: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--brand-teal);
}

.gallery-img-wrap {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s ease;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: 0.3s;
}

.gallery-card:hover .video-overlay {
    background: rgba(0, 158, 179, 0.4); 
    opacity: 1;
}

.video-overlay i {
    font-size: 50px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-info {
    padding: 18px;
    text-align: center;
}

.gallery-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    transition: 0.3s;
}

.gallery-card:hover .gallery-info h6 {
    color: var(--brand-teal);
}

.fancybox__container {
    z-index: 100000 !important;
}
/* --- Photo Gallery  --- */

/* --- Video Gallery  --- */
.video-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.video-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--brand-teal);
}

.video-thumb-wrap {
    height: 220px;
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.5s;
    opacity: 0.9;
}

.video-card-premium:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    background: rgb(255 0 0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.video-card-premium:hover .play-btn-circle {
    background: #fff;
    color: var(--brand-teal);
    transform: scale(1.1);
}

.video-info-area {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.video-info-area h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 0;
    transition: 0.3s;
}

.video-card-premium:hover h6 {
    color: var(--brand-teal);
}
/* --- Video Gallery  --- */


/* --- Footer Styling --- */
.eye-hospital-footer {
    background-color: #00382e;
    color: var(--f-text);
    padding: 80px 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid #00382e;
    position: relative;
    z-index: 1;
}

.footer-brand-col {
    padding-right: 40px;
}

.f-logo-main {
    max-width: 100%;
    height: auto;
    max-height: 80px; 
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    display: block;
}

.f-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #fff;
}

.f-sec-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #198754;
    border-radius: 10px;
}

.f-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.f-nav-links li {
    margin-bottom: 15px;
}

.f-nav-links li a {
    color: var(--f-text);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
}

.f-nav-links li a:hover {
    color: var(--f-accent);
    transform: translateX(8px);
}

.f-contact-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.f-contact-card i {
    color: #fff;
    font-size: 18px;
    margin-top: 4px;
    width: 20px;
}

.f-contact-card p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.f-social-wrap { display: flex; gap: 10px; }
.f-social-wrap a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 12px;
    transition: 0.3s;
    text-decoration: none;
}
.f-social-wrap a:hover {
    background: #198754;
    transform: translateY(-5px);
}

.f-copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 48px;
    width: 48px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms linear;
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.progress-wrap svg.progress-circle path { stroke: #00563b; stroke-width: 4; }
.progress-wrap::after {
    position: absolute;
    content: '\f062';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    color: #00563b;
    left: 0; top: 0; height: 48px; width: 48px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .footer-brand-col { 
        padding-right: 0; 
        text-align: left; 
        margin-bottom: 50px; 
    }
    .f-social-wrap { 
        justify-content: center;
    }
    .f-sec-title { 
        text-align: left;
    }
    .f-sec-title::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }
    .f-nav-links { 
        text-align: left; 
    }
    .f-contact-card { 
        text-align: left;
    }
}
/* --- Footer Styling --- */

/* ---- Contact Page ---- */
.contact-banner { 
    background: #f8fafc; 
    padding: 80px 0; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 60px; 
}
.contact-info-card { 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid #f1f5f9; 
    height: 100%; 
    transition: 0.3s; 
}
.contact-info-card:hover { 
    border-color: var(--brand-teal); 
    transform: translateY(-5px); 
}
.icon-circle { 
    width: 60px; 
    height: 60px; 
    background: rgba(0, 158, 179, 0.1); 
    color: var(--brand-teal); 
    border-radius: 50%; display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    margin-bottom: 20px; 
}
.contact-form-wrap { 
    background: #fff; 
    padding: 40px; 
    border-radius: 30px; 
    border: 1px solid #f1f5f9; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); 
}
.form-control-custom { 
    background: #f8fafc; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    padding: 12px 20px; }
.form-control-custom:focus { 
    border-color: var(--brand-teal); 
    box-shadow: 0 0 0 4px rgba(0, 158, 179, 0.1); 
}
/* ---- Contact Page ---- */

/* New Details */
.details-banner { background: #f8fafc; padding: 40px 0; border-bottom: 1px solid #eee; }
.news-main-img { width: 100%; border-radius: 24px; margin-bottom: 30px; }
.news-meta { display: flex; gap: 20px; color: #64748b; font-size: 14px; margin-bottom: 20px; }
.news-full-content { line-height: 1.8; color: #334155; font-size: 17px; }
.news-full-content p { margin-bottom: 20px; }
.sidebar-widget { background: #fff; border-radius: 20px; padding: 25px; border: 1px solid #f1f5f9; margin-bottom: 30px; }
/* New Details */