/* Start custom CSS for html, class: .elementor-element-bc54e51 */.elementor-section .elementor-container {
        display: flex;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        width: 100vw !important;
        max-width: 100vw !important;
      }

      .elementor-section {
        position: relative;
        padding: 0;
      }

      .elementor-column-gap-default
        > .elementor-column
        > .elementor-element-populated {
        padding: 0;
      }

      :root {
        --upsi-blue: #0b61a4;
        --upsi-red: #b91c1c;
        --upsi-yellow: #f0b429;
        --dark: #0f172a;
        --light: #f8fafc;
        --gray: #64748b;
        --success: #10b981;
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
        --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Plus Jakarta Sans", sans-serif;
        color: var(--dark);
        line-height: 1.7;
        overflow-x: hidden;
        background: var(--light);
      }

      .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(147, 197, 253, 0.3) 20%, rgba(139, 92, 246, 0.4) 50%, rgba(147, 197, 253, 0.3) 80%, transparent 100%);
            margin: 2rem auto;
            max-width: 800px;
            position: relative;
        }

        .section-divider::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
            border-radius: 50px;
            filter: blur(1px);
        }

      h1,
      h2,
      h3 {
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        line-height: 1.2;
      }

      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* MODERN NAVBAR */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-md);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        max-width: 1280px;
        margin: 0 auto;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        letter-spacing: -0.5px;
      }

      .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
        transition: color 0.3s;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--upsi-red);
        transition: width 0.3s;
      }

      .nav-links a:hover {
        color: var(--upsi-red);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .mobile-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
      }

      /* HERO SECTION - MODERN */
      #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #0072ff 0%, #091a45 50%, #a30000 100%);

        /* background: linear-gradient(
          135deg,
          #0f2027 0%,
          #203a43 50%,
          #2c5364 100%
        ); */
        position: relative;
        padding: 120px 0 80px;
        overflow: hidden;
      }

      .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .particle {
        position: absolute;
        background: rgba(240, 180, 41, 0.2);
        border-radius: 50%;
        animation: float 20s infinite;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
          opacity: 0;
        }
        25% {
          opacity: 0.5;
        }
        50% {
          transform: translateY(-100vh) rotate(360deg);
          opacity: 0.3;
        }
        75% {
          opacity: 0.2;
        }
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .hero-content {
        color: white;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(240, 180, 41, 0.2);
        border: 1px solid rgba(240, 180, 41, 0.3);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--upsi-yellow);
        margin-bottom: 24px;
        backdrop-filter: blur(10px);
      }

      .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        color: white;
        margin-bottom: 20px;
        line-height: 1.1;
      }

      .hero-title .highlight {
        background: linear-gradient(135deg, var(--upsi-yellow), #fbbf24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 16px;
        font-weight: 500;
      }

      .hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        line-height: 1.8;
        max-width: 600px;
      }

      .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .btn-primary {
        background: linear-gradient(135deg, var(--upsi-red), #dc2626);
        color: white;
        box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(185, 28, 28, 0.5);
      }

      .btn-secondary {
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
      }

      .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(185, 28, 28, 0.5);
      }

      .hero-visual {
        position: relative;
        height: 500px;
      }

      .hero-image-card {
        position: relative;
        height: 100%;
        border-radius: 24px;
        overflow: hidden;
        /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); */
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.6s;
      }

      .hero-image-card:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
      }

      .hero-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        animation: floatCard 3s ease-in-out infinite;
      }

      @keyframes floatCard {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .floating-card-1 {
        top: 20px;
        right: -20px;
        width: 200px;
      }

      .floating-card-2 {
        bottom: 40px;
        left: -30px;
        width: 180px;
      }

      .floating-card i {
        font-size: 2rem;
        color: var(--upsi-blue);
        margin-bottom: 8px;
      }

      .floating-card h4 {
        font-size: 1rem;
        color: var(--dark);
        margin-bottom: 4px;
      }

      .floating-card p {
        font-size: 0.85rem;
        color: var(--gray);
      }

      /* SECTION STYLES */
      section {
        padding: 100px 0;
        position: relative;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(11, 97, 164, 0.1);
        color: var(--upsi-blue);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--dark);
        margin-bottom: 16px;
      }

      .section-description {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
      }

      /* STORY BLOCK */
      .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .story-image-wrapper {
        position: relative;
      }

      .story-image {
        width: 100%;
        border-radius: 24px !important;
        box-shadow: var(--shadow-xl) !important;
        transition: transform 0.4s;
      }

      .story-image:hover {
        transform: scale(1.02);
      }

      .story-text h3 {
        font-size: 2.5rem;
        color: var(--upsi-red);
        margin-bottom: 24px;
      }

      .story-text p {
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 32px;
        line-height: 1.8;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 40px;
      }

      .stat-card {
        text-align: center;
        padding: 24px;
        background: white;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s;
      }

      .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 8px;
      }

      .stat-label {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 600;
      }

      /* NILAI TERAS - MODERN CARDS */
      #nilai-teras {
        background: var(--light);
      }

      .nilai-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
      }

      .nilai-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
      }

      .nilai-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--upsi-blue), var(--upsi-red));
        transform: scaleX(0);
        transition: transform 0.4s;
      }

      .nilai-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--upsi-blue);
      }

      .nilai-card:hover::before {
        transform: scaleX(1);
      }

      .nilai-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(
          135deg,
          rgba(11, 97, 164, 0.1),
          rgba(185, 28, 28, 0.1)
        );
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--upsi-blue);
        transition: all 0.4s;
      }

      .nilai-card:hover .nilai-icon {
        transform: rotateY(360deg);
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        color: white;
      }

      .nilai-card h4 {
        font-size: 1.4rem;
        color: var(--dark);
        margin-bottom: 12px;
      }

      .nilai-card p {
        font-size: 0.95rem;
        color: var(--gray);
        font-style: italic;
      }

      /* MEDIA SECTION */
      #media-pusat {
        background: linear-gradient(135deg, var(--upsi-blue) 0%, #094b82 100%);
        color: white;
      }

      #media-pusat .section-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
      }

      #media-pusat .section-title {
        color: white;
      }

      #media-pusat .section-description {
        color: rgba(255, 255, 255, 0.9);
      }

      .media-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
      }

      .video-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        aspect-ratio: 16/9;
      }

      .video-wrapper iframe {
        width: 100%;
        height: 100%;
      }

      .poster-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .poster-card h3 {
        color: var(--upsi-yellow);
        font-size: 1.8rem;
        margin-bottom: 20px;
      }

      .poster-card p {
        line-height: 1.8;
        margin-bottom: 16px;
      }

      /* PANDUAN - TIMELINE */
      .panduan-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
      }

      .timeline {
        position: relative;
      }

      .timeline-item {
        position: relative;
        padding-left: 60px;
        margin-bottom: 50px;
      }

      .timeline-item::before {
        content: attr(data-step);
        position: absolute;
        left: 0;
        top: 0;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.2rem;
        box-shadow: var(--shadow-md);
      }

      .timeline-item::after {
        content: "";
        position: absolute;
        left: 22px;
        top: 55px;
        width: 2px;
        height: calc(100% + 30px);
        background: linear-gradient(180deg, var(--upsi-blue), transparent);
      }

      .timeline-item:last-child::after {
        display: none;
      }

      .timeline-item h4 {
        color: var(--upsi-blue);
        font-size: 1.3rem;
        margin-bottom: 12px;
      }

      .timeline-item p {
        color: var(--gray);
        line-height: 1.8;
      }

      .aduan-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
        position: sticky;
        top: 100px;
      }

      .aduan-card h4 {
        color: var(--upsi-blue);
        font-size: 1.5rem;
        margin-bottom: 24px;
      }

      .qr-code {
        width: 250px;
        height: 250px;
        margin: 20px auto;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
      }

      /* INTERACTIVE QUIZ */
      .quiz-container {
        max-width: 900px;
        margin: 0 auto;
      }

      .quiz-card {
        background: white;
        padding: 50px;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        margin-bottom: 40px;
        border-left: 6px solid var(--upsi-red);
      }

      .quiz-header {
        color: var(--upsi-blue);
        font-size: 1.6rem;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #e5e7eb;
      }

      .quiz-question {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 32px;
        line-height: 1.7;
      }

      .quiz-options {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .quiz-option {
        padding: 20px 24px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        color: var(--dark);
        font-weight: 500;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        text-align: left;
      }

      .quiz-option:hover:not(:disabled) {
        border-color: var(--upsi-blue);
        background: rgba(11, 97, 164, 0.05);
        transform: translateX(5px);
      }

      .quiz-option:disabled {
        cursor: not-allowed;
        opacity: 0.7;
      }

      .quiz-option.correct {
        background: #d1fae5;
        border-color: var(--success);
        color: #065f46;
      }

      .quiz-option.wrong {
        background: #fee2e2;
        border-color: var(--upsi-red);
        color: #991b1b;
      }

      .quiz-feedback {
        margin-top: 24px;
        padding: 20px;
        border-radius: 12px;
        display: none;
        animation: slideDown 0.3s ease;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .quiz-feedback.correct {
        background: #d1fae5;
        color: #065f46;
        border-left: 5px solid var(--success);
      }

      .quiz-feedback.wrong {
        background: #fee2e2;
        color: #991b1b;
        border-left: 5px solid var(--upsi-red);
      }

      .quiz-feedback h4 {
        margin-bottom: 8px;
        font-size: 1.1rem;
      }

      /* INTEGRITY METER */
      .integrity-meter {
        position: fixed;
        top: 120px;
        right: 30px;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        border-radius: 20px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-xl);
        z-index: 999;
        transition: all 0.3s;
      }

      .meter-score {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--upsi-yellow);
      }

      .meter-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
      }

      /* FOOTER */
      footer {
        background: var(--dark);
        color: white;
        padding: 60px 0 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-section h4 {
        margin-bottom: 20px;
        color: var(--upsi-yellow);
      }

      .footer-section p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 12px;
        font-size: 0.95rem;
      }

      .social-links {
        display: flex;
        gap: 16px;
        margin-top: 20px;
      }

      .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s;
      }

      .social-link:hover {
        background: var(--upsi-yellow);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
      }

      /* MODAL */
      .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        backdrop-filter: blur(10px);
      }

      .modal-content {
        background: white;
        padding: 60px;
        border-radius: 24px;
        max-width: 600px;
        text-align: center;
        transform: scale(0.9);
        animation: modalPop 0.4s forwards;
      }

      @keyframes modalPop {
        to {
          transform: scale(1);
        }
      }

      .modal-icon {
        font-size: 4rem;
        margin-bottom: 24px;
      }

      .modal-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
      }

      .modal-score {
        font-size: 4rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 20px 0;
      }

      /* RESPONSIVE */
      @media (max-width: 968px) {
        .nav-links {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background: white;
          flex-direction: column;
          justify-content: flex-start;
          padding: 40px;
          transition: left 0.3s;
          box-shadow: var(--shadow-lg);
        }

        .nav-links.active {
          left: 0;
        }

        .mobile-toggle {
          display: block;
        }

        .hero-grid,
        .story-grid,
        .media-container,
        .panduan-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .hero-visual {
          height: 400px;
        }

        .floating-card {
          display: none;
        }

        .stats-grid {
          grid-template-columns: 1fr;
        }

        .nilai-grid {
          grid-template-columns: 1fr;
        }

        .quiz-card {
          padding: 30px 20px;
        }

        .integrity-meter {
          width: 80px;
          height: 80px;
          right: 16px;
          top: 90px;
        }

        .meter-score {
          font-size: 2rem;
        }

        .meter-label {
          font-size: 0.65rem;
        }

        .modal-content {
          padding: 40px 24px;
          margin: 20px;
        }

        section {
          padding: 60px 0;
        }
      }

      @media (max-width: 640px) {
        .hero-title {
          font-size: 2.5rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .hero-actions {
          flex-direction: column;
        }

        .btn {
          width: 100%;
          justify-content: center;
        }
      }

      /* Sebab & Akibat Section - Enhanced */
      #sebab-akibat {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
      }
      
      #sebab-akibat::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(11, 97, 164, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 20s infinite ease-in-out;
      }
      
      #sebab-akibat::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 25s infinite ease-in-out reverse;
      }
      
      .sebab-akibat-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
        margin-top: 60px;
        position: relative;
        z-index: 2;
      }
      
      .sebab-card,
      .akibat-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
        padding: 2.5rem;
        border-radius: 24px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
      }
      
      .sebab-card::before,
      .akibat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--upsi-blue), var(--upsi-red));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      
      .sebab-card::after {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        transition: transform 0.6s ease;
      }
      
      .akibat-card::after {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        transition: transform 0.6s ease;
      }
      
      .sebab-card:hover,
      .akibat-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        border-color: rgba(11, 97, 164, 0.2);
      }
      
      .sebab-card:hover::before,
      .akibat-card:hover::before {
        transform: scaleX(1);
      }
      
      .sebab-card:hover::after,
      .akibat-card:hover::after {
        transform: translate(-50px, 50px) scale(1.5);
      }
      
      .card-title {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 1;
      }
      
      .sebab-card .card-title {
        color: var(--upsi-red);
      }
      
      .akibat-card .card-title {
        color: #dc2626;
      }
      
      .card-title i {
        font-size: 2rem;
        padding: 12px;
        background: linear-gradient(135deg, rgba(185, 28, 28, 0.1), rgba(220, 38, 38, 0.1));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }
      
      .sebab-card:hover .card-title i,
      .akibat-card:hover .card-title i {
        transform: rotate(360deg) scale(1.1);
        background: linear-gradient(135deg, var(--upsi-red), #dc2626);
        color: white;
      }
      
      .card-list {
        list-style: none;
        padding: 0;
        position: relative;
        z-index: 1;
      }
      
      .card-list li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        line-height: 1.8;
        color: #475569;
        font-size: 1.05rem;
        position: relative;
        transition: all 0.3s ease;
      }
      
      .card-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--upsi-blue), var(--upsi-red));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.85rem;
        transition: all 0.3s ease;
      }
      
      .card-list li:hover {
        color: var(--dark);
        padding-left: 2.5rem;
      }
      
      .card-list li:hover::before {
        transform: scale(1.2) rotate(360deg);
        box-shadow: 0 4px 12px rgba(11, 97, 164, 0.3);
      }
      
      .impact-quote {
        margin-top: 60px;
        text-align: center;
        font-style: italic;
        color: #1e293b;
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
        padding: 2.5rem;
        border-left: 6px solid var(--upsi-blue);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
        font-size: 1.15rem;
        line-height: 1.9;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .impact-quote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 30px;
        font-size: 6rem;
        color: var(--upsi-blue);
        opacity: 0.1;
        font-family: Georgia, serif;
      }
      /* --- NEW QUOTE SLIDER STYLES --- */
      .quote-track {
            top: 30px;
            position: relative;
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 3rem;
        }
      .quote-card {
        flex: 0 0 70%;
        min-width: 70%;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .slider-wrapper {
        overflow: visible;
        position: relative;
        padding: 3rem 0;
        overflow: hidden;
      }

      /* Default state for all cards - side cards */
      .quote-card .quote-card-inner {
        transform: scale(0.85) rotateY(15deg);
        opacity: 0.4;
        filter: blur(3px);
        min-height: 440px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Active center card */
      .quote-card.active .quote-card-inner {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
        filter: blur(0);
        z-index: 10;
      }

      /* Left side card - rotated right */
      .quote-card.prev .quote-card-inner {
        transform: scale(0.85) rotateY(15deg) translateX(20px);
      }

      /* Right side card - rotated left */
      .quote-card.next .quote-card-inner {
        transform: scale(0.85) rotateY(-15deg) translateX(-20px);
      }

      /* Modern card layout with horizontal split */
      .quote-card-inner {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        align-items: center;
        min-height: 320px;
        perspective: 1000px;
        transform-style: preserve-3d;
      }

      .quote-image-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
      }

      .quote-image {
        bottom: 10px;
        width: 400px;
        position: absolute;
        z-index: 1;
        /* height: 200px; */
        /* object-fit: cover; */
        /* border-radius: 1rem; */
        /* box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25); */
        /* border: 4px solid #ffffff; */
        transition: transform 0.3s ease;
      }

      .quote-card-inner:hover .quote-image {
        transform: scale(1.05);
      }

      .quote-content {
        display: flex;
        flex-col;
        justify-content: center;
        padding: 2rem;
        padding-left: 0;
      }

      /* Navigation buttons positioned on sides */
      .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 50%;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }

      .nav-button:hover:not(:disabled) {
        background: #3b82f6;
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 15px 40px -5px rgba(59, 130, 246, 0.4);
      }

      .nav-button:disabled {
        opacity: 0.3;
        cursor: not-allowed;
      }

      .nav-button-prev {
        left: 0px;
      }

      .nav-button-next {
        right:0px;
      }

      /* Responsive design */
      @media (max-width: 768px) {
        .quote-track {
          padding: 0 5%;
        }

        .quote-card {
          flex: 0 0 90%;
          min-width: 90%;
        }

        .quote-card-inner {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          min-height: auto;
        }

        /* Disable 3D effects on mobile */
        .quote-card .quote-card-inner {
          transform: scale(0.9);
          filter: blur(2px);
        }

        .quote-card.active .quote-card-inner {
          transform: scale(1);
          filter: blur(0);
        }

        .quote-card.prev .quote-card-inner,
        .quote-card.next .quote-card-inner {
          transform: scale(0.9);
        }

        .quote-image-container {
          padding: 1rem;
        }

        .quote-image {
          /* width: 150px;
          height: 150px; */
          width: 400px;
        position: relative;
        z-index: 1;
        }

        .quote-content {
          padding: 1.5rem;
          text-align: center;
        }

        .nav-button {
          width: 48px;
          height: 48px;
        }

        .nav-button-prev {
          left: 10px;
        }

        .nav-button-next {
          right: 10px;
        }
      }

      /* Tablet view */
      @media (min-width: 769px) and (max-width: 1024px) {
        .quote-card-inner {
          grid-template-columns: 220px 1fr;
        }

        .quote-image {
          /* width: 160px;
          height: 160px; */
          width: 400px;
        position: absolute;
        z-index: 1;
        }
      }

      /* Progress dots */
      .progress-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
      }

      .progress-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e1;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .progress-dot.active {
        background: #3b82f6;
        width: 32px;
        border-radius: 5px;
      }

      .progress-dot:hover {
        background: #94a3b8;
      }

      /* Smooth animations */
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

    .quote-card {
        animation: fadeIn 0.6s ease-out;
    }
    
    .btn-success {
        background: linear-gradient(135deg, var(--success), #059669) !important;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    }

    .btn-success:hover {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5) !important;
    }
           
    
    /* Video Section Styles */
.video-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-info {
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.video-info h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.video-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background: rgba(255, 255, 255, 0.1);
}

.video-thumb.active {
  border-color: var(--upsi-yellow);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.5);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-thumb:hover img {
  transform: scale(1.1);
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb:hover .thumb-overlay {
  opacity: 1;
}

.video-thumb.active .thumb-overlay {
  opacity: 1;
  background: rgba(240, 180, 41, 0.3);
}

.thumb-overlay i {
  color: white;
  font-size: 2rem;
  animation: playPulse 1.5s infinite;
}

.video-thumb.active .thumb-overlay i {
  color: var(--upsi-yellow);
}

@keyframes playPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.thumb-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Video Section */
@media (max-width: 768px) {
  .video-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .thumb-title {
    font-size: 0.7rem;
    padding: 6px;
  }
  
  .video-info h4 {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
}
    /* Poster Gallery Styles */
.poster-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.poster-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.poster-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.poster-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.poster-thumbnail:hover img {
  transform: scale(1.1);
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 97, 164, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.poster-thumbnail:hover .poster-overlay {
  opacity: 1;
}

.poster-overlay i {
  color: white;
  font-size: 2.5rem;
  animation: zoomPulse 1.5s infinite;
}

@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Poster Modal */
.poster-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.poster-modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.poster-modal-close:hover {
  color: var(--upsi-yellow);
  transform: rotate(90deg);
}

.poster-modal-content {
  position: relative;
  margin: auto;
  padding: 40px 20px;
  width: 90%;
  max-width: 800px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.poster-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.poster-modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.poster-modal-actions .btn {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poster-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .poster-thumbnail {
    aspect-ratio: 16/9;
  }
  
  .poster-modal-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }
  
  .poster-modal-content {
    padding: 60px 15px 20px;
  }
  
  .poster-modal-content img {
    max-height: 70vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .poster-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}/* End custom CSS */