      :root {
    /* BRAND COLORS (FROM LOGO) */
    --primary: #0A4A7C;        /* Medical Trust Blue */
    --secondary: #2A9DF4;      /* Calm Sky Blue */
    --success: #2E7D32;        /* Healing Leaf Green */
    --accent: #F28C28;         /* Human Orange */
    --accent-light: #FFB366;   /* Soft Orange */
    --emergency: #D32F2F;      /* Emergency Red */

    /* NEUTRALS */
    --dark: #1A2B3C;
    --dark-light: #243847;
    --gray: #6C757D;
    --gray-light: #A0AEC0;
    --light: #FFFFFF;
    --light-bg: #F4F9FD;
    --light-blue: #E8F4FC;

    /* UI */
    --sidebar-bg: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}
        
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .container, .container-fluid {
            max-width: 100%;
            padding-right: var(--bs-gutter-x, 0.75rem);
            padding-left: var(--bs-gutter-x, 0.75rem);
        }
        
        .container {
            max-width: 100%;
            margin-right: auto;
            margin-left: auto;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: var(--light-bg);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Main Header */
        .main-header {
            background-color: white;
            padding: 15px 0;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1030;
            transition: all 0.3s ease;
        }
        
        .main-header > .container {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            margin-bottom: 15px;
        }

        /* Logo Section */
        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 90px;
            height: 90px;


            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-right: 15px;
           /* box-shadow: var(--shadow-sm);*/
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            letter-spacing: -0.5px;
        }

        .logo-sub {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 400;
            letter-spacing: 1px;
            margin-top: 3px;
        }

        /* Header Contact Info */
        .header-contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--dark);
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 1rem;
        }

        .contact-emergency {
            color: var(--accent);
            font-weight: 600;
        }

        .contact-emergency i {
            color: var(--accent);
        }

        /* Language Selector */
        .language-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 10px;
        }

        .lang-btn {
            background: none;
            border: 1px solid var(--gray-light);
            color: var(--dark);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .lang-btn:hover, .lang-btn.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Navigation Menu */
        .navbar-nav {
            gap: 0.5rem;
            justify-content: flex-end;
            flex-wrap: nowrap;
            margin-right: 0 !important;
        }

        .nav-item {
            margin: 0 1px !important;
        }

        .nav-link {
            padding: 12px 18px !important;
            border-radius: var(--radius-sm);
            position: relative;
            white-space: nowrap;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--dark) !important;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            background: rgba(10, 74, 124, 0.08) !important;
            transform: translateY(-1px);
            color: var(--primary) !important;
        }

        .nav-link.active {
            background: rgba(10, 74, 124, 0.12) !important;
            font-weight: 600;
            color: var(--primary) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 18px;
            right: 18px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }

        /* IMPROVE DROPDOWN TOGGLE ACTIVE STATE */
        .nav-link.dropdown-toggle.active {
            background: rgba(10, 74, 124, 0.12) !important;
            position: relative;
            padding-right: 40px !important;
        }

        .nav-link.dropdown-toggle.active::after {
            content: '\f078'; /* FontAwesome down arrow */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            border: none !important;
            width: auto;
            height: auto;
            margin: 0;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* Standard dropdown arrow */
        .nav-link.dropdown-toggle::after {
            content: '\f078'; /* FontAwesome down arrow */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            border: none !important;
            width: auto;
            height: auto;
            margin-left: 8px;
            vertical-align: middle;
            font-size: 0.8rem;
            opacity: 0.7;
            transition: transform 0.3s ease;
        }

        .nav-link.dropdown-toggle.show::after {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* Dropdown on Hover */
        .nav-item:hover > .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        
        .dropdown-menu {
            min-width: 220px;
            border: none;
            border-radius: var(--radius-md);
            padding: 10px 0;
            margin-top: 8px !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-top: 3px solid var(--secondary);
            animation: slideDown 0.2s ease-out;
        }
        
        @keyframes slideDown {
            from { 
                opacity: 0;
                transform: translateY(-10px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark);
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: var(--light-blue);
            color: var(--primary);
            border-left-color: var(--secondary);
            padding-left: 25px;
        }

        /* Mega Dropdown */
        .mega-dropdown {
            position: static;
        }
        
        .mega-dropdown-content {
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
            padding: 25px;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            max-width: 1200px;
            display: none;
            position: absolute;
            background: white;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            animation: fadeIn 0.4s ease;
            border-top: 3px solid var(--secondary);
        }

        .mega-dropdown:hover .mega-dropdown-content {
            display: block;
        }

        .mega-dropdown-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 220px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .mega-dropdown-img i {
            font-size: 4rem;
            opacity: 0.9;
        }

        .mega-dropdown-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(42, 157, 244, 0.2);
            font-size: 1.1rem;
        }

        /* Appointment Button */
        .btn-appointment {
        
    background: linear-gradient(135deg, var(--accent), var(--accent-light));

            color: white;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
            font-size: 0.95rem;
            white-space: nowrap;
        }
        
        .btn-appointment:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
            color: white;
        }
        
        .navbar-nav .btn-appointment {
            margin-left: 15px;
            font-size: 0.85rem;
            padding: 10px 18px !important;
            white-space: nowrap;
        }

        /* HERO SLIDER */
        .hero-slider {
            position: relative;
            overflow: hidden;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            margin-bottom: 60px;
            box-shadow: var(--shadow-lg);
        }

        .hero-slide {
            height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          background: linear-gradient(135deg,
        rgba(10, 74, 124, 0.88),
        rgba(46, 125, 50, 0.75));
        }

        .hero-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            color: white;
            max-width: 700px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: white;
            color: var(--primary);
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .btn-hero-primary:hover {
            background: var(--light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        .btn-hero-secondary {
            background: transparent;
            color: white;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            border: 2px solid white;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: white;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-title {
            color: var(--primary);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--gray);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        /* About Us Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 0 0 45%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Services Carousel */
        .services-carousel {
            position: relative;
            padding: 0 40px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
background: linear-gradient(135deg,        var(--primary),        var(--success));          

            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .service-title {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Carousel Controls */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .carousel-control:hover {
            background: var(--primary);
            color: white;
        }

        .carousel-control.prev {
            left: 0;
        }

        .carousel-control.next {
            right: 0;
        }

        /* Doctors Grid */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .doctor-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            text-align: center;
        }

        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .doctor-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .doctor-card:hover .doctor-image img {
            transform: scale(1.1);
        }

        .doctor-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 74, 124, 0.8));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .doctor-card:hover .doctor-overlay {
            transform: translateY(0);
        }

        .doctor-content {
            padding: 25px;
        }

        .doctor-name {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .doctor-specialty {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .doctor-experience {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Stats Section */
        .stats-section {

 background: linear-gradient(135deg,
        var(--primary),
        var(--success));
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Emergency Banner */
        .emergency-banner {
 background: linear-gradient(135deg,        var(--emergency),        #F44336);           

            color: white;
            padding: 40px 0;
            border-radius: var(--radius-lg);
            margin: 60px 0;
            box-shadow: var(--shadow-lg);
        }

        .emergency-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .emergency-text {
            flex: 1;
            min-width: 300px;
        }

        .emergency-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-md);
            position: relative;
            margin: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--primary);
        }

        /* Footer */
        footer {

 background: linear-gradient(135deg,
        #0A4A7C,
        #1B5E20);
            color: white;
            padding: 80px 0 30px;
            position: relative;
          
            overflow: hidden;
        }

        footer::before {
              content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0)
    );
    border-radius: 0 0 100% 100%;
    z-index: 0;
        }

        /* Mobile Menu Toggle */
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            font-size: 1.2rem;
            color: var(--primary);
            background: rgba(10, 74, 124, 0.05);
            border-radius: var(--radius-sm);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(10, 74, 124, 0.2);
            outline: none;
        }
        
        /* RESPONSIVE FIXES */
        @media (max-width: 1200px) {
            .header-contact-info {
                gap: 15px;
            }
            
            .contact-item {
                font-size: 0.85rem;
            }
            
            .nav-link {
                padding: 12px 15px !important;
            }
            
            .nav-link.dropdown-toggle.active {
                padding-right: 35px !important;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .header-top-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .header-contact-info {
                justify-content: flex-start;
                width: 100%;
                gap: 12px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .language-selector {
                margin-left: 0;
                margin-top: 10px;
            }
            
            /* Enhanced mobile navigation */
            .navbar-nav {
                gap: 0;
                align-items: flex-start !important;
                padding: 15px 0;
                flex-direction: column;
            }
            
            .nav-item {
                width: 100%;
                margin: 2px 0 !important;
            }
            
            .nav-link {
                padding: 15px 20px !important;
                width: 100%;
                border-radius: 8px;
            }
            
            .nav-link.active::after {
                display: none;
            }
            
            .nav-link.dropdown-toggle::after {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .nav-link.dropdown-toggle.active {
                padding-right: 50px !important;
            }
            
            .dropdown-menu {
                position: static !important;
                float: none;
                width: 100%;
                margin-top: 0 !important;
                box-shadow: none;
                border: 1px solid rgba(0,0,0,0.1);
                border-radius: var(--radius-sm);
                animation: none;
                display: none;
            }
            
            .dropdown-menu.show {
                display: block;
            }
            
            .mega-dropdown-content {
                position: static;
                transform: none;
                width: 100%;
                padding: 20px;
                margin-top: 10px;
                display: none !important;
            }
            
            .mega-dropdown-content.show {
                display: block !important;
            }
            
            .navbar-nav .btn-appointment {
                margin: 20px 0 0 0;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            /* Homepage Responsive */
            .hero-slide {
                height: 500px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                flex: 0 0 auto;
                width: 100%;
            }
            
            .services-carousel {
                padding: 0 20px;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slide {
                height: 400px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .emergency-content {
                flex-direction: column;
                text-align: center;
            }
            
            .emergency-text {
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .main-header {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .container {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .logo-main {
                font-size: 1.5rem;
            }
            
            .logo-img {

                height: 50px;
                font-size: 1.5rem;
            }
            
            footer::before {
                top: -30px;
                height: 70px;
                transform: scale(1.2);
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }
    
    
     /* Page Header */
        .page-header {
            background: linear-gradient(rgba(10, 74, 124, 0.9), rgba(10, 74, 124, 0.85)), url('about-hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 60px;
            margin-bottom: 60px;
        }
        
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height:1.2;
        }
        .page-header .page-description {
            font-size: 1.05rem;       /* Smaller than standard 'lead' */
            font-weight: 400;
            opacity: 0.85;            /* Slightly faded so it sits "behind" the H1 */
            max-width: 800px;         /* Prevents text from stretching too far left-to-right */
            line-height: 1.6;         /* Better spacing between lines */
            margin-top: 5px;
            color: rgba(255, 255, 255, 0.9); /* Assuming a dark blue background */
        }
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 5px;
            
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
            font-weight: 500;
        }
        
        
           /* Package Cards */
        .package-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
            border: 2px solid transparent;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .package-card.popular {
            border-color: var(--accent);
            transform: scale(1.02);
        }
        
        .package-card.popular:hover {
            transform: translateY(-15px) scale(1.02);
        }
        
        .package-header {
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            transform: rotate(5deg);
        }
        
        .package-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .package-name {
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .package-subtitle {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 25px;
            min-height: 40px;
        }
        
        .package-price {
            margin-bottom: 25px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .price-period {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .package-content {
            padding: 0 30px 30px;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
        }
        
        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-features i {
            color: var(--success);
            margin-right: 12px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .package-features .not-included {
            color: var(--gray);
            opacity: 0.5;
        }
        
        .package-features .not-included i {
            color: var(--gray);
        }
        
        .package-button {
            display: block;
            width: 100%;
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .btn-package-primary {
            background: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }
        
        .btn-package-primary:hover {
            background: #083b62;
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-package-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-package-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Comparison Table */
        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }
        
        .table-responsive {
            overflow-x: auto;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-table th:first-child {
            background: var(--dark);
            text-align: left;
        }
        
        .comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--dark);
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .check-icon {
            color: var(--success);
            font-size: 1.2rem;
        }
        
        .cross-icon {
            color: #dc3545;
            font-size: 1.2rem;
        }
        
        /* Toggle View */
        .view-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            background: var(--light-bg);
            padding: 10px;
            border-radius: 10px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .toggle-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: transparent;
            font-weight: 600;
            color: var(--gray);
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .toggle-btn.active {
            background: white;
            color: var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* Benefits Section */
        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 15px 35px rgba(42, 157, 244, 0.1);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        /* FAQ Section */
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 25px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--light-bg);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        /* Process Steps */
        .process-step {
            text-align: center;
            padding: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 20px;
        }
        
        /* Custom Package CTA */
        .custom-package-cta {
            background: linear-gradient(135deg, var(--primary), #0A4A7C);
            color: white;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
         /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #0A4A7C);
            color: white;
            padding: 80px 0;
            margin-top: 80px;
        }
        
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 70px 0 40px;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .package-card.popular {
                transform: scale(1);
            }
            
            .package-card.popular:hover {
                transform: translateY(-15px);
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .custom-package-cta {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .view-toggle {
                flex-direction: column;
            }
            
            .toggle-btn {
                margin-bottom: 10px;
            }
            
            .toggle-btn:last-child {
                margin-bottom: 0;
            }
        }
    /*contact */
    
        .contact-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .contact-info h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .contact-info p {
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--dark);
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius-md);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background: var(--secondary);
            color: white;
        }
        
        .emergency-card {
            background: linear-gradient(135deg, var(--emergency), #F44336);
            color: white;
            border-radius: var(--radius-md);
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .emergency-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .map-container {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 30px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .working-hours {
            background: var(--light-bg);
            padding: 30px;
            border-radius: var(--radius-md);
            margin-bottom: 30px;
        }
        
        .hours-table {
            width: 100%;
        }
        
        .hours-table tr {
            border-bottom: 1px solid #dee2e6;
        }
        
        .hours-table tr:last-child {
            border-bottom: none;
        }
        
        .hours-table td {
            padding: 10px 0;
            color: var(--dark);
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .emergency-number {
                font-size: 2rem;
            }
        }
/* about/overview */
        /* Intro Section */
        .intro-text {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .highlight-box {
            background: var(--light-bg);
            border-left: 4px solid var(--accent);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary), #0A4A7C);
            color: white;
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision Mission Section */
        .vm-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--primary);
        }
        .vm-card h5{ font-size: 1.75rem; color: var(--primary); margin-bottom: 15px; }
        .vm-card p {  }
        /* Core Values */
        
        #core-values .section-title
        {
            font-size: 1.75rem;
            font-weight: 500;
        }
        #core-values .section-title:after
        {
            background:transparent;
        }
        .value-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(42, 157, 244, 0.1);
        }
        
        .value-card h5
        {
            color: var(--primary);
            margin-bottom: 10px;
        }
        .value-card p
        {
            font-size: 0.95rem; color: var(--gray);
        }
        
        .value-icon {
            width: 50px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--light-bg);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent);
        }
        
        .timeline-year {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        
        /* Specialties */
        .specialty-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .specialty-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(42, 157, 244, 0.1);
        }
        
        .specialty-icon {
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        /* Awards */
        .award-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .award-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .award-card h5{
            color: var(--primary); margin-bottom: 10px;
        }
        .award-card p{
            color: var(--gray); font-size: 0.95rem;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 70px 0 40px;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
        }

/*  Doctors */
   /* Filter Section */
        .filter-section {
            background: var(--light-bg);
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 10px;
        }
        
        .filter-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid #e0e0e0;
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .filter-btn i {
            margin-right: 8px;
        }
        
        /* Doctor Cards */
        .doctor-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            margin-bottom: 30px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .doctor-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary);
        }
        
        .doctor-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .doctor-card:hover .doctor-image img {
            transform: scale(1.05);
        }
        
        .doctor-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 74, 124, 0.9));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .doctor-card:hover .doctor-overlay {
            transform: translateY(0);
        }
        
        .doctor-content {
            padding: 25px;
        }
        
        .doctor-name {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .doctor-specialty {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .doctor-department {
            display: inline-block;
            background: var(--light-bg);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .doctor-qualification {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .doctor-experience {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .doctor-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding-top: 20px;
        }
        
        .btn-profile {
            background: var(--light-bg);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .btn-profile:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-appointment-small {
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-appointment-small:hover {
            background: #e07b1f;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Department Badges */
        .department-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 3px;
        }
        
        .badge-cardiology {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border: 1px solid rgba(220, 53, 69, 0.2);
        }
        
        .badge-orthopedics {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.2);
        }
        
        .badge-neurology {
            background: rgba(111, 66, 193, 0.1);
            color: #6f42c1;
            border: 1px solid rgba(111, 66, 193, 0.2);
        }
        
        .badge-pediatrics {
            background: rgba(253, 126, 20, 0.1);
            color: #fd7e14;
            border: 1px solid rgba(253, 126, 20, 0.2);
        }
        
        .badge-general {
            background: rgba(23, 162, 184, 0.1);
            color: #17a2b8;
            border: 1px solid rgba(23, 162, 184, 0.2);
        }
        
        .badge-dental {
            background: rgba(108, 117, 125, 0.1);
            color: #6c757d;
            border: 1px solid rgba(108, 117, 125, 0.2);
        }
        
        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }
        
        .no-results-icon {
            font-size: 4rem;
            color: var(--gray);
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        /* Search Box */
        .search-box {
            position: relative;
            margin-bottom: 30px;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-box input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(42, 157, 244, 0.1);
            outline: none;
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 1.2rem;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: var(--light-bg);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .stat-item-small {
            text-align: center;
            padding: 10px 15px;
        }
        
        .stat-number-small {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label-small {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 70px 0 40px;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .doctor-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-profile, .btn-appointment-small {
                text-align: center;
                width: 100%;
            }
            
            .stats-bar {
                justify-content: center;
            }
            
            .stat-item-small {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 576px) {
            .filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
        
    /* Notices */
     .notice-board {
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .notice-item {
            padding: 25px;
            border-left: 4px solid var(--primary);
            background: var(--light-bg);
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }
        
        .notice-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }
        
        .notice-item.important {
            border-left-color: var(--accent);
            background: linear-gradient(135deg, rgba(242,140,40,0.05), rgba(255,179,102,0.1));
        }
        
        .notice-item.urgent {
            border-left-color: var(--emergency);
            background: linear-gradient(135deg, rgba(211,47,47,0.05), rgba(244,67,54,0.1));
        }
        
        .notice-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 10px;
        }
        
        .badge-important {
            background: var(--accent);
            color: white;
        }
        
        .badge-urgent {
            background: var(--emergency);
            color: white;
        }
        
        .badge-new {
            background: var(--secondary);
            color: white;
        }
        
        .notice-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin: 10px 0;
        }
        
        .notice-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .notice-content {
            margin: 15px 0;
            line-height: 1.6;
        }
        
        .download-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .download-btn:hover {
            background: var(--secondary);
            color: white;
        }
        
        .search-box {
            margin-bottom: 30px;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .notice-board {
                padding: 20px;
            }
        }
        
    /* blogs */
            .blog-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            height: 250px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-category {
            display: inline-block;
            background: var(--light-bg);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .blog-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-bg);
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-weight: 500;
            color: var(--dark);
            font-size: 0.9rem;
        }
        
        .read-time {
            color: var(--gray);
            font-size: 0.8rem;
        }
        
        .featured-blog {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 40px;
        }
        
        .featured-content {
            padding: 40px;
        }
        
        .featured-badge {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .featured-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .tags-cloud {
            margin: 30px 0;
        }
        
        .tag {
            display: inline-block;
            background: var(--light-bg);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: var(--primary);
            color: white;
        }
        
        .subscribe-box {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 40px;
            border-radius: var(--radius-md);
            margin: 40px 0;
        }
        
        .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .featured-title {
                font-size: 1.5rem;
            }
            
            .featured-content {
                padding: 25px;
            }
        }
.photo-gallery {
        background: #f8fafc;
    }
    
    .gallery-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        margin-bottom: 16px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .gallery-card:hover img {
        transform: scale(1.05);
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(10, 74, 124, 0.85), rgba(42, 157, 244, 0.85));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }
    
    .overlay-content {
        text-align: center;
        color: white;
    }
    
    .overlay-content i {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
    }
    
    .overlay-content .caption {
        font-size: 0.9rem;
        margin: 0;
        max-width: 200px;
    }
    
    /* Masonry Layout Option */
    .gallery-grid.masonry {
        column-count: 4;
        column-gap: 16px;
    }
    
    .gallery-grid.masonry .gallery-item {
        break-inside: avoid;
        margin-bottom: 16px;
    }
    
    @media (max-width: 992px) {
        .gallery-grid.masonry {
            column-count: 3;
        }
    }
    
    @media (max-width: 768px) {
        .gallery-grid.masonry {
            column-count: 2;
        }
    }
    
    @media (max-width: 576px) {
        .gallery-grid.masonry {
            column-count: 1;
        }
    }
    
    
    /* 1. Alignment Logic (Controlled by Config) */
.title-align-left .section-header { text-align: left; margin-left: 0; }
.title-align-left .section-title::after { left: 0; transform: none; } /* Fix for underline if centered */

/* 2. Intro Theme Logic */
.intro-theme .content-text-wrap p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* We map the standard <blockquote> tag to your 'highlight-box' design */
.intro-theme blockquote, 
.intro-theme .highlight-box {
    background: var(--light-bg);
    border-left: 5px solid var(--accent);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary);
}

.intro-theme .highlight-box h4 {
    font-weight: 700;
    font-style: normal;
}
/* Vertical 9:16 Ratio for YouTube Shorts */
.ratio-9x16 {
    --bs-aspect-ratio: 177.77%; /* (16 / 9) * 100 */
}

/* Ensure the iframe fills the vertical space correctly */
.ratio-9x16 iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card {
    transition: transform 0.2s ease;
}
.video-card:hover {
    transform: scale(1.02);
}

/* The default state of your Navbar */
.main-navbar {
    background-color: #fff;
    width: 100%;
    /*z-index: 1000;
    transition: all 0.3s ease;*/
}

/* The Sticky State */
.nav-is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    // Optional: Slight transparency or different height in sticky mode 
    padding: 10px 0; 
    animation: slideDown 0.4s ease;
    */
}
/*
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}*/

/* Prevent the page from "jumping" when the nav becomes fixed */
.nav-placeholder {
    display: none;
}
.nav-is-sticky + .nav-placeholder {
    display: block;
}
.nav-is-sticky .navbar-brand img {
    height: 40px; /* Smaller logo in sticky mode */
}
 /* Create a bridge between the nav-link and the dropdown menu */
    .nav-item.dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 15px; /* Adjust based on your header's gap */
        display: block;
        z-index: 1;
    }
    
    .dropdown-menu {
        margin-top: 0; /* Align perfectly with the bridge */
    }
}

/* Scroll Animation class */
/*.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}*/

/* Header Shrink on Scroll */
.header-scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    padding: 5px 0 !important;
}
/* Mobile Optimization (Under 992px) */
@media (max-width: 991.98px) {
    .header-top-row {
        padding: 10px 0;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .logo-container {
        max-width: 60%;
    }

    .logo-img img {
        /*height: 40px;  Smaller logo for mobile */
        width: auto;
    }

    .logo-main {
        font-size: 1rem !important; /* Smaller text */
        white-space: nowrap;
    }

    /* Condensed Language Switcher */
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 12px !important;
    }

    /* Fixed Navbar Toggler */
/*    .navbar-toggler {
        border: none;
        padding: 5px;
        font-size: 1.2rem;
        color: var(--primary);
    }
*/
    /* Sidebar-like mobile menu */
  /*  .navbar-collapse {
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }
*/
    /* Prevent dropdowns from navigating immediately on mobile */
 /*   .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 7px;
    }
*/
      /* Ensure the dropdowns follow the 'show' class */
    .navbar-nav .dropdown-menu, 
    .navbar-nav .mega-dropdown-content {
        display: none; /* Hidden by default */
        position: static;
        width: 100%;
        float: none;
        box-shadow: none;
        border: none;
        padding-left: 20px; /* Indent sub-items */
    }

    /* ONLY show when the 'show' class is applied by our JS */
    .navbar-nav .dropdown-menu.show, 
    .navbar-nav .mega-dropdown-content.show {
        display: block !important;
    }

    /* Fixed Toggler Icon color */
    .navbar-toggler {
        border-color: rgba(0,0,0,0.1);
        background-color: transparent;
    }
    
    /* Make the mobile menu scrollable if it's too long */
    .navbar-collapse {
        max-height: 450px;
        overflow-y: auto;
    }
}