    <style>
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes quranRecitation {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.1);
          opacity: 0.8;
        }
      }
      @keyframes announcementPulse {
        0%,
        100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(22, 101, 52, 0.4);
        }
        50% {
          transform: scale(1.02);
          box-shadow: 0 0 0 10px rgba(22, 101, 52, 0);
        }
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }
      .gradient-bg {
        background: linear-gradient(135deg, #166534 0%, #ca8a04 100%);
      }
      .hero-pattern {
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      }
      .card-hover {
        transition: all 0.4s ease;
      }
      .card-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(22, 101, 52, 0.15);
      }
      .text-gradient {
        background: linear-gradient(135deg, #166534 0%, #ca8a04 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .news-image {
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 1;
      }
      .news-image:hover {
        transform: scale(1.05);
      }
      .news-image.loading {
        opacity: 0.3;
      }
      .news-image.loaded {
        opacity: 1;
      }
      .nav-link {
        position: relative;
      }
      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #166534;
        transition: width 0.3s ease;
      }
      .nav-link:hover::after {
        width: 100%;
      }
      .quran-wave {
        position: relative;
        display: inline-block;
      }
      .quran-wave::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border: 2px solid #166534;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: quranRecitation 2s ease-out infinite;
      }
      .quran-wave::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border: 2px solid #ca8a04;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: quranRecitation 2s ease-out infinite 1s;
      }
      .announcement-card {
        animation: announcementPulse 2s ease-in-out infinite;
      }
      .announcement-card.urgent {
        border-left: 4px solid #166534;
      }
      .announcement-card.info {
        border-left: 4px solid #ea580c;
      }
      .announcement-card.general {
        border-left: 4px solid #ca8a04;
      }
      .video-overlay {
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.3) 0%,
          rgba(0, 0, 0, 0.7) 100%
        );
      }
      /* Dropdown menu styles */
      .dropdown {
        position: relative;
      }
      .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
      }
      .dark .dropdown-menu {
        background: #374151;
      }
      .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }
      .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: #4b5563;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f3f4f6;
      }
      .dark .dropdown-menu a {
        color: #e5e7eb;
        border-bottom: 1px solid #4b5563;
      }
      .dropdown-menu a:last-child {
        border-bottom: none;
      }
      .dropdown-menu a:hover {
        background: #f9fafb;
        color: #166534;
        padding-left: 25px;
      }
      .dark .dropdown-menu a:hover {
        background: #4b5563;
        color: #86efac;
      }
      /* Mobile dropdown styles */
      .mobile-dropdown {
        position: relative;
      }
      .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9fafb;
        border-radius: 8px;
        margin-top: 5px;
      }
      .dark .mobile-dropdown-menu {
        background: #4b5563;
      }
      .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 300px;
      }
      .mobile-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }
      .mobile-dropdown-toggle i {
        transition: transform 0.3s ease;
      }
      .mobile-dropdown.active .mobile-dropdown-toggle i {
        transform: rotate(180deg);
      }
      /* Organizational chart styles */
      .org-chart {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .org-level {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 20px 0;
        position: relative;
      }
      .org-level::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        width: 2px;
        height: 20px;
        background: #e5e7eb;
      }
      .dark .org-level::before {
        background: #4b5563;
      }
      .org-level:first-child::before {
        display: none;
      }
      .org-node {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        text-align: center;
        min-width: 200px;
        margin: 0 15px;
        transition: all 0.3s ease;
        position: relative;
      }
      .dark .org-node {
        background: #374151;
        color: white;
      }
      .org-node:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(22, 101, 52, 0.15);
      }
      .org-node.main {
        background: linear-gradient(135deg, #166534 0%, #ca8a04 100%);
        color: white;
      }
      .org-node.secondary {
        background: linear-gradient(135deg, #16a34a 0%, #ca8a04 100%);
        color: white;
      }
      .org-node.tertiary {
        background: linear-gradient(135deg, #22c55e 0%, #eab308 100%);
        color: white;
      }
      .org-node.staff {
        background: linear-gradient(135deg, #4ade80 0%, #facc15 100%);
        color: white;
      }
      .org-node.organization {
        background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
        color: white;
      }
      .org-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
      }
      .org-node:not(.main):not(.secondary):not(.tertiary):not(.staff):not(
          .organization
        )
        .org-icon {
        background: rgba(22, 101, 52, 0.1);
      }
      .dark
        .org-node:not(.main):not(.secondary):not(.tertiary):not(.staff):not(
          .organization
        )
        .org-icon {
        background: rgba(255, 255, 255, 0.1);
      }
      .org-title {
        font-weight: bold;
        margin-bottom: 5px;
      }
      .org-name {
        font-size: 14px;
        opacity: 0.9;
      }
      .org-description {
        font-size: 12px;
        opacity: 0.8;
        margin-top: 5px;
      }
      /* Connection lines */
      .org-connections {
        position: relative;
        height: 40px;
        width: 100%;
      }
      .org-connections::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 2px;
        background: #e5e7eb;
      }
      .dark .org-connections::before {
        background: #4b5563;
      }
      .org-connections::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: #e5e7eb;
      }
      .dark .org-connections::after {
        background: #4b5563;
      }
      /* Vision mission styles */
      .vision-card {
        background: linear-gradient(135deg, #166534 0%, #ca8a04 100%);
        color: white;
        position: relative;
        overflow: hidden;
      }
      .vision-card::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: pulse 4s ease-in-out infinite;
      }
      .mission-card {
        border-left: 4px solid #166534;
        transition: all 0.3s ease;
      }
      .dark .mission-card {
        background: #374151;
        border-left: 4px solid #16a34a;
      }
      .mission-card:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(22, 101, 52, 0.1);
      }
      .mission-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #166534 0%, #ca8a04 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
      }
      .highlight-text {
        background: linear-gradient(135deg, #facc15 0%, #ea580c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
      }
      /* Language switcher styles */
      .language-switcher {
        position: relative;
        display: inline-block;
      }
      .language-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 120px;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
      }
      .dark .language-dropdown {
        background: #374151;
      }
      .language-switcher:hover .language-dropdown {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }
      .language-option {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .language-option:hover {
        background: #f3f4f6;
      }
      .dark .language-option:hover {
        background: #4b5563;
      }
      .language-option.active {
        background: #f0fdf4;
        color: #166534;
      }
      .dark .language-option.active {
        background: #166534;
        color: white;
      }
      .language-flag {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        border-radius: 50%;
        overflow: hidden;
      }
      /* Dark mode styles */
      body.dark {
        background-color: #1f2937;
        color: #f3f4f6;
      }
      .dark .bg-white {
        background-color: #374151;
      }
      .dark .bg-light {
        background-color: #374151;
      }
      .dark .text-gray-800 {
        color: #f3f4f6;
      }
      .dark .text-gray-600 {
        color: #d1d5db;
      }
      .dark .text-gray-700 {
        color: #e5e7eb;
      }
      .dark .border-gray-100 {
        border-color: #4b5563;
      }
      .dark .shadow-md {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
          0 2px 4px -1px rgba(0, 0, 0, 0.2);
      }
      .dark .shadow-lg {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
          0 4px 6px -2px rgba(0, 0, 0, 0.2);
      }
      .dark .bg-gradient-to-br {
        background-image: linear-gradient(
          to bottom right,
          var(--tw-gradient-stops)
        );
      }
      .dark .from-light {
        --tw-gradient-from: #374151;
        --tw-gradient-stops: var(--tw-gradient-from),
          var(--tw-gradient-to, rgba(55, 65, 81, 0));
      }
      .dark .to-white {
        --tw-gradient-to: #1f2937;
      }
      /* Tambahkan di dalam tag <style> yang sudah ada */
      .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      html {
        scroll-behavior: smooth;
      }
    </style>