
        :root {
            --primary-color: #0b1f36;
            --accent-orange: #ff5722;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.6;
        }

        /* --- DECORATED EYE-CATCHING TOP BAR & HEADER --- */
        header {
            position: relative;
            background: #ffffff;
            border-bottom: 2px solid #eef2f6;
            box-shadow: 0 4px 15px rgba(11, 31, 54, 0.05);
        }

        header::before {
            content: '';
            display: block;
            height: 4px;
            background: linear-gradient(90deg, #ff5722 0%, #ff9800 35%, #0b1f36 70%, #15803d 100%);
            width: 100%;
        }

        .top-bar {
            background: linear-gradient(to right, #ffffff 0%, #fafbfc 60%, #f4f7fb 100%);
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
        }

        .logo-link {
            text-decoration: none;
            display: block;
        }

        .logo-img-wrapper {
            position: relative;
            width: 95px;
            height: 95px;
            border-radius: 50%;
            background: #ffffff;
            padding: 3px;
            border: 3px solid #ff5722;
            box-shadow: 0 6px 18px rgba(255, 87, 34, 0.25), 0 0 0 4px rgba(11, 31, 54, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
        }

        .logo-img-wrapper:hover {
            transform: scale(1.06) rotate(2deg);
            box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4), 0 0 0 5px rgba(255, 87, 34, 0.2);
        }

        .logo-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo-title-wrap {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .brand-name {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--primary-color);
            margin: 0;
            line-height: 1.2;
            text-transform: uppercase;
            text-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .brand-acronym {
            background: linear-gradient(135deg, #ff5722, #e64a19);
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            padding: 3px 10px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(255, 87, 34, 0.35);
            display: inline-block;
        }

        .brand-tagline {
            font-size: 12px;
            font-weight: 600;
            color: #4a5568;
            margin-top: 5px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .brand-tagline i {
            color: var(--accent-orange);
            font-size: 13px;
        }

        .est-badge {
            background: rgba(11, 31, 54, 0.08);
            color: var(--primary-color);
            border: 1px solid rgba(11, 31, 54, 0.15);
            font-size: 11px;
            font-weight: 700;
            padding: 1px 8px;
            border-radius: 20px;
        }

        /* Top Contact Information Block */
        .top-contact-info {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            transition: all 0.25s ease;
        }

        .contact-item:hover {
            border-color: var(--accent-orange);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }

        .icon-circle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff4ec;
            color: var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            border: 1px solid rgba(255,87,34,0.2);
        }

        .contact-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .contact-text .label {
            font-size: 10.5px;
            text-transform: uppercase;
            font-weight: 700;
            color: #718096;
            letter-spacing: 0.5px;
        }

        .contact-text .val,
        .contact-text a.val {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            max-width: 260px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .contact-text a.val:hover {
            color: var(--accent-orange);
        }

        .contact-item.helpline-highlight {
            background: linear-gradient(135deg, #0b1f36, #163d6b);
            border-color: #0b1f36;
            color: white;
        }

        .contact-item.helpline-highlight .icon-circle {
            background: #ff5722;
            color: white;
            border: none;
        }

        .contact-item.helpline-highlight .label {
            color: #cbd5e1;
        }

        .contact-item.helpline-highlight .val,
        .contact-item.helpline-highlight a.val {
            color: #ffcc00;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.25s ease;
        }

        .social-icons a:hover {
            background-color: var(--accent-orange);
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(255, 87, 34, 0.4);
        }

        /* --- RESPONSIVE NAVBAR --- */
        .navbar {
            background-color: var(--primary-color);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links li,
        .nav-links .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-links > li > a,
        .nav-links .nav-item > a {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #ffffff;
            padding: 18px 16px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .nav-links > li > a:hover, 
        .nav-links > li > a.active,
        .nav-links .nav-item > a:hover,
        .nav-links .nav-item.active > a {
            color: var(--accent-orange);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .nav-links li a i,
        .elementskit-submenu-indicator {
            font-size: 10px;
            transition: transform 0.2s ease;
        }

        .nav-links li:hover > a i,
        .nav-links li:hover .elementskit-submenu-indicator {
            transform: rotate(180deg);
        }

        /* Dropdown Submenu (Desktop) */
        .dropdown-menu,
        .elementskit-dropdown,
        .elementskit-submenu-panel {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            min-width: 250px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-top: 3px solid var(--accent-orange);
            border-radius: 0 0 6px 6px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.25s ease;
            z-index: 1100;
            margin: 0;
        }

        .nav-links li:hover > .dropdown-menu,
        .nav-links li:hover > .elementskit-dropdown,
        .nav-links li:hover > .elementskit-submenu-panel,
        .nav-links li.show-dropdown > .dropdown-menu,
        .nav-links li.show-dropdown > .elementskit-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li,
        .elementskit-dropdown li,
        .elementskit-submenu-panel li {
            position: relative;
            width: 100%;
        }

        .dropdown-menu li a,
        .elementskit-dropdown li a,
        .elementskit-submenu-panel li a,
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #333333 !important;
            font-size: 13.5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            background: none !important;
            white-space: normal;
            line-height: 1.4;
        }

        .dropdown-menu li a:hover,
        .elementskit-dropdown li a:hover,
        .elementskit-submenu-panel li a:hover,
        .dropdown-item:hover,
        .dropdown-menu li a.active,
        .dropdown-item.active {
            color: var(--accent-orange) !important;
            background-color: #f8f9fa !important;
            border-left-color: var(--accent-orange);
            padding-left: 24px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 12px;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            position: relative;
            height: 480px;
            background: linear-gradient(rgba(11, 31, 54, 0.6), rgba(11, 31, 54, 0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: #f7d794;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            padding: 0 15px;
        }

        /* --- LATEST UPDATE TICKER BAR --- */
        .latest-ticker {
            background-color: #fff;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
        }

        .ticker-badge {
            background-color: #e74c3c;
            color: white;
            padding: 12px 25px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            z-index: 2;
        }

        .ticker-content {
            padding: 0 20px;
            color: var(--text-light);
            font-size: 14px;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
        }

        /* --- ABOUT US SECTION --- */
        .about-section {
            padding: 80px 5%;
            background-color: #ffffff;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-wrapper img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 25px 30px;
            border-left: 5px solid var(--accent-orange);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 4px;
        }

        .experience-badge h3 {
            font-size: 38px;
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
            margin-top: 5px;
        }

        .about-text .section-tag {
            font-size: 14px;
            color: var(--accent-orange);
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            margin-bottom: 10px;
        }

        .about-text .section-tag::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 50%;
            width: 20px;
            height: 2px;
            background-color: var(--accent-orange);
        }

        .about-text h2 {
            font-size: 32px;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
            text-align: justify;
        }

        .about-text p strong {
            color: var(--text-dark);
        }

        .btn-read-more {
            display: inline-block;
            background-color: var(--accent-orange);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            margin-top: 15px;
            transition: 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-read-more:hover {
            background-color: #d84315;
        }

        /* --- OFFICE BEARERS & LATEST UPDATES --- */
        .bearers-updates-section {
            padding: 60px 5%;
            background: #f4f6f9;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .card-box {
            background: white;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            border-top: 4px solid var(--accent-orange);
        }

        .card-header-title {
            padding: 15px 20px;
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
            font-weight: 700;
            color: var(--accent-orange);
            text-transform: uppercase;
        }

        .bearer-body {
            padding: 30px;
            text-align: center;
            position: relative;
            min-height: 310px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .bearer-body img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #f1f1f1;
            margin-bottom: 15px;
        }

        .bearer-body h4 {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .bearer-body p {
            font-size: 13px;
            color: var(--text-light);
            margin-top: 4px;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border-color);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 16px;
            color: var(--accent-orange);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            z-index: 5;
        }

        .slider-arrow:hover {
            background: var(--accent-orange);
            color: white;
        }

        .slider-arrow.left { left: 15px; }
        .slider-arrow.right { right: 15px; }

        .updates-body {
            padding: 15px 20px;
            max-height: 320px;
            overflow-y: auto;
        }

        .update-item {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            gap: 15px;
            align-items: flex-start;
            cursor: pointer;
            transition: 0.2s;
        }

        .update-item:hover {
            background-color: #fafafa;
            padding-left: 5px;
        }

        .update-item:last-child {
            border-bottom: none;
        }

        .date-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 6px 8px;
            text-align: center;
            border-radius: 4px;
            min-width: 50px;
            flex-shrink: 0;
        }

        .date-badge .day {
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
        }

        .date-badge .month {
            font-size: 9px;
            text-transform: uppercase;
            font-weight: 600;
            background: var(--accent-orange);
            margin-top: 3px;
            display: block;
        }

        .update-content h5 {
            font-size: 14px;
            color: var(--primary-color);
            margin-bottom: 4px;
            font-weight: 600;
            transition: color 0.2s;
        }

        .update-content h5:hover {
            color: var(--accent-orange);
        }

        .update-content p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* --- STATS & E-MAGAZINE SECTION --- */
        .magazine-stats-section {
            padding: 80px 5%;
            background-color: #ffffff;
        }

        .mag-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .mag-intro h2 {
            font-size: 28px;
            color: var(--primary-color);
            font-weight: 700;
            margin-top: 10px;
        }

        .mag-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* Interactive PDF E-Magazine Viewer */
        .magazine-viewer {
            background: #0b1f36;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            text-align: center;
            position: relative;
        }

        .pdf-frame-container {
            position: relative;
            width: 100%;
            height: 400px;
            background: #1a2f4c;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pdf-frame-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .pdf-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 6px;
            color: white;
            font-size: 13px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pdf-btn {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 6px 14px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 12px;
            transition: 0.2s;
        }

        .pdf-btn:hover {
            background: #d84315;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 30px 20px;
            text-align: center;
            border-radius: 6px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: 0.3s;
        }

        .stat-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-3px);
        }

        .stat-card h3 {
            font-size: 32px;
            color: var(--accent-orange);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .stat-card p {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* --- BLOGS & NEWS SECTION --- */
        .blogs-section {
            padding: 80px 5%;
            background-color: var(--bg-light);
        }

        .blogs-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .blogs-header-flex h2 {
            font-size: 30px;
            color: var(--primary-color);
            font-weight: 700;
            margin-top: 5px;
        }

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

        .blog-card {
            background: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-body {
            padding: 20px;
        }

        .blog-body h4 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.4;
            cursor: pointer;
        }

        .blog-body h4:hover {
            color: var(--accent-orange);
        }

        .blog-body p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .blog-footer {
            padding: 0 20px 20px 20px;
        }

        /* --- URGENT HELP & SUPPORT BANNER --- */
        .support-banner {
            background: linear-gradient(135deg, var(--primary-color), #163d6b);
            color: white;
            padding: 50px 5%;
            text-align: center;
        }

        .support-banner h3 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .helpline-numbers {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .helpline-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 15px 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #ffcc00;
            text-decoration: none;
            transition: 0.3s;
        }

        .helpline-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .helpline-card i {
            color: white;
            font-size: 18px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #06101c;
            color: #b0bec5;
            padding: 40px 5% 20px 5%;
            text-align: center;
            font-size: 13px;
        }

        footer p {
            margin-top: 10px;
        }

        /* --- MODAL POPUP FOR UPDATES & DETAILS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-box {
            background: white;
            width: 90%;
            max-width: 650px;
            max-height: 80vh;
            overflow-y: auto;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            transform: translateY(-20px);
            transition: 0.3s;
        }

        .modal-overlay.active .modal-box {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-light);
            cursor: pointer;
        }

        .modal-close:hover {
            color: var(--accent-orange);
        }

        .modal-box h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
            padding-right: 30px;
        }

        .modal-box .modal-date {
            font-size: 12px;
            color: var(--accent-orange);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .modal-box p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        /* --- INNER PAGE STYLES --- */
        .page-banner {
            background: linear-gradient(rgba(11, 31, 54, 0.85), rgba(11, 31, 54, 0.85)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80') center/cover;
            padding: 50px 5%;
            color: #ffffff;
            text-align: center;
        }

        .page-banner h1 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .breadcrumbs {
            font-size: 13px;
            color: #b0bec5;
        }

        .breadcrumbs a {
            color: #ffcc00;
            text-decoration: none;
        }

        .breadcrumbs span {
            margin: 0 8px;
            color: rgba(255,255,255,0.4);
        }

        .page-content-section {
            padding: 60px 5%;
            background-color: #f8f9fa;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 35px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--accent-orange);
            margin-bottom: 30px;
        }

        .content-card h2 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .content-card h3 {
            font-size: 19px;
            color: var(--primary-color);
            margin-top: 25px;
            margin-bottom: 12px;
        }

        .content-card p {
            font-size: 14.5px;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .content-card ul, .content-card ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 14px;
        }

        .content-card li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .badge-tag {
            display: inline-block;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 3px;
        }

        .badge-red { background: #fee2e2; color: #b91c1c; }
        .badge-green { background: #dcfce7; color: #15803d; }
        .badge-blue { background: #dbeafe; color: #1d4ed8; }
        .badge-orange { background: #ffedd5; color: #c2410c; }

        /* Google Map Container */
        .map-card-wrapper {
            margin-top: 25px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            background: #ffffff;
        }

        .map-header-bar {
            padding: 16px 20px;
            background: #f8fafc;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .map-header-bar h3 {
            margin: 0 !important;
            font-size: 16px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .map-header-bar .btn-directions {
            background: var(--accent-orange);
            color: #ffffff;
            font-size: 12.5px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 4px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: 0.2s;
        }

        .map-header-bar .btn-directions:hover {
            background: #d84315;
            color: white;
        }

        .google-map-frame {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        /* Tables */
        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
            text-align: left;
            background: white;
        }

        .custom-table th {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 12px 16px;
            font-weight: 600;
        }

        .custom-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-dark);
        }

        .custom-table tr:hover {
            background-color: #f8fafc;
        }

        /* Forms */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.2s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.15);
        }

        textarea.form-control {
            min-height: 110px;
            resize: vertical;
        }

        /* Bearer Profile Cards Grid */
        .bearers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }

        .bearer-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .bearer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: var(--accent-orange);
        }

        .bearer-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #f0f4f8;
            margin-bottom: 15px;
        }

        .bearer-card h4 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .bearer-card .designation {
            color: var(--accent-orange);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .bearer-card .phone {
            font-size: 12px;
            color: var(--text-light);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background: #000;
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
            opacity: 0.85;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            color: #ffffff;
            font-size: 13px;
            font-weight: 500;
        }

        /* Video Gallery Cards */
        .video-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .video-card iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        .video-card-body {
            padding: 15px;
        }

        .video-card-body h4 {
            font-size: 15px;
            color: var(--primary-color);
            margin-bottom: 6px;
        }

        .video-card-body p {
            font-size: 12.5px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Notice / Circular List Item */
        .notice-card-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.2s ease;
            gap: 20px;
        }

        .notice-card-item:hover {
            background-color: #f8fafc;
        }

        .notice-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .notice-icon {
            width: 44px;
            height: 44px;
            background: #eef2ff;
            color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .notice-info h4 {
            font-size: 15px;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .notice-info span {
            font-size: 12px;
            color: var(--text-light);
        }

        .btn-download {
            background: var(--accent-orange);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            transition: 0.2s;
        }

        .btn-download:hover {
            background: #d84315;
            color: white;
        }

        /* Responsive Adjustments */
        @media (max-width: 900px) {
            .about-section, .bearers-updates-section, .mag-grid-container {
                grid-template-columns: 1fr;
            }
            .top-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .top-contact-info {
                justify-content: center;
            }
            .hero-content h2 {
                font-size: 28px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-color);
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                padding: 10px 0;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li,
            .nav-links .nav-item {
                width: 100%;
            }
            .nav-links > li > a,
            .nav-links .nav-item > a {
                padding: 12px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .dropdown-menu,
            .elementskit-dropdown,
            .elementskit-submenu-panel {
                position: static;
                width: 100%;
                box-shadow: none;
                border-top: none;
                background-color: #06101c;
                padding: 0;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            .nav-links li.open-mobile > .dropdown-menu,
            .nav-links li.open-mobile > .elementskit-dropdown,
            .nav-links li.open-mobile > .elementskit-submenu-panel {
                display: block;
            }
            .dropdown-menu li a,
            .elementskit-dropdown li a,
            .elementskit-submenu-panel li a,
            .dropdown-item {
                color: #d1d5db !important;
                padding: 10px 30px;
                border-bottom: 1px solid rgba(255,255,255,0.03);
            }
            .dropdown-menu li a:hover,
            .dropdown-item:hover {
                color: var(--accent-orange) !important;
                background-color: rgba(255,255,255,0.05) !important;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .notice-card-item {
                flex-direction: column;
                align-items: flex-start;
            }
        }
 