@font-face {
    font-family: 'Inter';
    src: url('../font/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-blue: #455A76;
    --primary-blue-dark: #394D6A;
    --primary-blue-darker: #2C3C55;
    --primary-blue-deep: #121B28;
    --accent-orange: #d79005;
    --accent-orange-light: #F2B006;
    --accent-yellow: #F8D237;

    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

body.dark-mode {
    --primary-blue: #5a7a9e;
    --primary-blue-dark: #4a6a8a;
    --primary-blue-darker: #3a5a7a;
    --primary-blue-deep: #1a2a3a;
    --accent-orange: #e8a015;
    --accent-orange-light: #f8c430;
    --accent-yellow: #fae060;
    
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #1f2a44;
    --text-primary: #f0f0f0;
    --text-secondary: #cbd5e0;
    --text-muted: #a0aec0;
    --border-color: #2d3748;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    transition: all var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Web Root Configuration */
.nav-menu a,
.icon-btn,
.view-all-btn,
.social-icon,
.gallery-item,
.select-selected,
.select-item,
.nav-left a {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Navigation Start */
.navbar {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background-color var(--transition-normal), box-shadow var(--transition-normal);
    backdrop-filter: blur(0px);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.blur-effect {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

body.dark-mode .navbar.blur-effect {
    background: rgba(26, 26, 46, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.site-title {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    justify-content: center;
}

.site-title span:first-child {
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.site-title span:last-child {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dropdown {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--accent-orange);
    background: var(--bg-secondary);
}

.nav-link .dropdown-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .nav-link .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu {
    position: relative;
    width: 100%;
}

.dropdown-submenu > .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    box-shadow: none;
    background: var(--bg-secondary);
    border-radius: 0;
    border: none;
    border-left: 3px solid var(--accent-orange);
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-menu.active {
    display: block;
}

.dropdown-submenu .dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-submenu .dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--accent-orange);
}

.dropdown-submenu .submenu-icon {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
    display: inline-block;
}

.dropdown-submenu:hover > .dropdown-link .submenu-icon {
    transform: rotate(90deg);
}

.dropdown-submenu > .dropdown-link.active .submenu-icon {
    transform: rotate(90deg);
}

.dropdown-submenu .dropdown-menu li {
    width: 100%;
    padding-left: 1.5rem;
}

.dropdown-submenu .dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.dropdown-submenu .dropdown-menu a:hover {
    background: var(--bg-card);
    color: var(--accent-orange);
    padding-left: 1.5rem;
}

.dropdown-menu a,
.dropdown-menu .dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-menu a:hover,
.dropdown-menu .dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--accent-orange);
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    transition: 0.3s;
    border-radius: 0;
}

.theme-switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--bg-primary);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-orange);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger-menu span:nth-child(1),
.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    height: 3px;
    background: var(--text-primary);
}

.mobile-theme-switch {
    display: none;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-left {
        gap: 0.5rem;
    }

    .logo {
        width: 38px;
        height: 38px;
    }

    .site-title span:first-child {
        font-size: 0.75rem;
    }

    .site-title span:last-child {
        font-size: 0.65rem;
    }

    .theme-switch-wrapper {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 70px 0 20px 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 900;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-link {
        padding: 0.65rem 0.75rem;
        font-size: 0.95rem;
        justify-content: space-between;
        width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        display: none;
        border: none;
        padding: 0;
        width: 100%;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li {
        padding-left: 1rem;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static;
        width: 100%;
        padding-left: 0;
        margin: 0;
        background: var(--bg-secondary);
        display: none;
        border-left: 3px solid var(--accent-orange);
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-submenu > .dropdown-menu.active {
        display: block;
    }

    .dropdown-submenu .dropdown-link {
        padding: 0.75rem 1rem 0.75rem 1rem;
        font-size: 1.05rem;
        justify-content: space-between;
    }

    .dropdown-submenu .dropdown-menu li {
        padding-left: 1.5rem;
    }

    .dropdown-submenu .dropdown-menu a {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a,
    .dropdown-menu .dropdown-link {
        padding: 0.7rem 1rem;
    }

    .mobile-theme-switch {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-top: 1px solid var(--border-color);
        margin-top: 8px;
    }

    .mobile-theme-switch span {
        color: var(--text-primary);
        font-size: 0.9rem;
        font-weight: 500;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }
}

body.dark-mode .dropdown-submenu > .dropdown-menu {
    background: var(--bg-secondary);
    border-left-color: var(--accent-orange);
}

body.dark-mode .dropdown-submenu .dropdown-menu a:hover {
    background: var(--bg-card);
}

body.dark-mode .dropdown-menu {
    background: var(--bg-secondary);
}

body.dark-mode .mobile-theme-switch {
    border-top-color: var(--border-color);
}
/* Navigation End */

/* Stars Background Start */
.hero-section,
.articles-section,
.social-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.articles-section::before,
.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(7px 7px at 5% 15%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(6px 6px at 12% 45%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(8px 8px at 18% 75%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 25% 90%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(9px 9px at 35% 25%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 42% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(7px 7px at 48% 85%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 55% 35%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 62% 65%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(9px 9px at 68% 95%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 75% 10%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(7px 7px at 82% 40%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 88% 70%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 95% 20%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),

        radial-gradient(5px 5px at 8% 30%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 22% 60%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 38% 80%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(7px 7px at 45% 20%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 58% 50%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 72% 75%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 85% 55%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 92% 85%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),

        radial-gradient(4px 4px at 15% 25%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 28% 48%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 33% 72%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 48% 38%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 52% 62%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 63% 88%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 77% 42%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 83% 68%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 97% 12%, rgba(33, 77, 38, 0.5) 3px, transparent 4px);

    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after,
.articles-section::after,
.social-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 10% 35%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 20% 55%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 30% 12%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 40% 82%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 50% 45%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 60% 28%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 70% 92%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 80% 15%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 90% 65%, rgba(255, 215, 0, 0.8) 2px, transparent 2px);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.articles-section::before {
    filter: brightness(1.2);
    background-image:
        radial-gradient(8px 8px at 15% 25%, rgba(33, 77, 38, 0.7) 4px, transparent 5px),
        radial-gradient(7px 7px at 35% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(6px 6px at 55% 75%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(9px 9px at 75% 35%, rgba(33, 77, 38, 0.6) 4px, transparent 5px),
        radial-gradient(7px 7px at 90% 15%, rgba(201, 164, 73, 0.8) 3px, transparent 4px);
}

.social-section::before {
    filter: brightness(1.3);
}

.hero-section>*,
.articles-section>*,
.social-section>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section::before,
    .articles-section::before,
    .social-section::before {
        opacity: 0.8;
    }
}

/* Stars Background End */

/* Heading Section Start */
.heading-section {
    margin-top: 70px;
    position: relative;
    height: 75vh;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container .slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 140, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.active::before {
    opacity: 0.5;
    animation: burnEffect 3s infinite alternate;
}

@keyframes burnEffect {
    0% {
        opacity: 0.3;
        background: radial-gradient(circle at 30% 40%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 140, 0, 0.1) 100%);
    }

    50% {
        opacity: 0.5;
        background: radial-gradient(circle at 70% 60%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 100, 0, 0.15) 100%);
    }

    100% {
        opacity: 0.3;
        background: radial-gradient(circle at 40% 70%, transparent 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 120, 0, 0.1) 100%);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.heading-right-content {
    position: absolute;
    right: 10%;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 2rem 0;
    z-index: 2;
}

.pokja-logo {
    transition: opacity 0.3s;
    margin-bottom: 2rem;
}

.pokja-logo.hidden {
    opacity: 0;
    pointer-events: none;
}

.pokja-logo .logo-container img {
    height: 105px;
    width: auto;
    background: var(--bg-primary);
    padding: 3px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
    .pokja-logo {
        margin-bottom: 0;
    }

    .pokja-logo .logo-container img {
        height: 65px;
    }
}
/* Heading Section End */

/* Hero Section Start */
.hero-section {
    position: relative;
    background: var(--bg-primary);
    padding: 4rem 2rem 5rem;
    margin-top: -2px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, transparent 25%, var(--bg-primary) 25%, var(--bg-primary) 50%, transparent 50%, transparent 75%, var(--bg-primary) 75%);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-bg-shape.one {
    background: var(--primary-blue);
    top: -150px;
    right: -100px;
    animation: heroFloatShape 20s ease-in-out infinite;
}

.hero-bg-shape.two {
    background: var(--accent-orange);
    bottom: -150px;
    left: -100px;
    animation: heroFloatShape 25s ease-in-out infinite reverse;
}

.hero-bg-shape.three {
    background: var(--accent-yellow);
    width: 200px;
    height: 200px;
    top: 40%;
    left: 10%;
    animation: heroFloatShape 22s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.3;
}

.hero-bg-shape.four {
    background: var(--primary-blue-dark);
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 15%;
    animation: heroFloatShape 28s ease-in-out infinite reverse;
    animation-delay: 1s;
    opacity: 0.35;
}

@keyframes heroFloatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(69, 90, 118, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue-darker);
    border-radius: 50%;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue-darker);
    letter-spacing: 1px;
}

body.dark-mode .hero-badge .hero-badge-dot {
    color: var(--accent-orange) !important;
    background: var(--accent-orange) !important;
}

body.dark-mode .hero-badge-text {
    color: var(--accent-orange);
}

.hero-title {
    margin-bottom: 0.6;
}

.hero-title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-orange);
    line-height: 1.2;
}

.hero-title-line.accent {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.hero-divider {
    width: 15%;
    height: 3px;
    background: var(--accent-orange);
    margin: 0;
    margin-bottom: 10px;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat-card {
    text-align: left;
    background: rgba(90, 122, 158, 0.15);
    padding: 5px 12px !important;
    border-radius: 12px;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: var(--primary-blue-dark);
    gap: 0.6rem;
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border: 1.5px solid var(--border-color);
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.hero-btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    gap: 0.6rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 5;
    width: 260px;
    height: 260px;
}

.hero-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    .hero-divider {
        margin: 0;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-stat-card {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-logo-container {
        margin: 0 auto;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 1rem 3rem;
    }
    .hero-title-line {
        font-size: 1.8rem;
    }
    .hero-title-line.accent {
        font-size: 2.2rem;
    }
    .hero-stat-number {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-btn-primary, 
    .hero-btn-outline {
        justify-content: center;
    }
    .hero-logo-container {
        width: 180px;
        height: 180px;
    }
}

body:not(.dark-mode) .hero-badge {
    background: rgba(69, 90, 118, 0.07);
}

body.dark-mode .hero-badge {
    background: rgba(90, 122, 158, 0.15);
}

body.dark-mode .hero-logo-container {
    background: var(--bg-card);
}

body.dark-mode .hero-stat-number {
    color: var(--accent-orange);
}
/* Hero Section End */

/* About Section Start */
.about-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 5rem 2rem;
    overflow: hidden;
    width: 100%;
}

.about-texture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg,
            rgba(69, 90, 118, 0.08) 0px,
            rgba(69, 90, 118, 0.08) 1px,
            transparent 1px,
            transparent 20px),
        repeating-linear-gradient(135deg,
            rgba(215, 144, 5, 0.05) 0px,
            rgba(215, 144, 5, 0.05) 1px,
            transparent 1px,
            transparent 25px),
        radial-gradient(circle at 10% 20%, rgba(69, 90, 118, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 45%, rgba(215, 144, 5, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(69, 90, 118, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 70% 25%, rgba(215, 144, 5, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(69, 90, 118, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 95% 40%, rgba(215, 144, 5, 0.06) 1.5px, transparent 1.5px),
        radial-gradient(circle at 15% 60%, rgba(69, 90, 118, 0.05) 3px, transparent 3px),
        radial-gradient(circle at 60% 90%, rgba(215, 144, 5, 0.04) 4px, transparent 4px),
        radial-gradient(circle at 80% 15%, rgba(69, 90, 118, 0.05) 3px, transparent 3px),
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 2px,
            transparent 2px,
            transparent 4px);
    background-size: 
        100% 100%,
        100% 100%,
        50px 50px,
        60px 60px,
        70px 70px,
        80px 80px,
        90px 90px,
        100px 100px,
        120px 120px,
        150px 150px,
        100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

body.dark-mode .about-texture-bg {
    background-image: 
        repeating-linear-gradient(45deg,
            rgba(90, 122, 158, 0.12) 0px,
            rgba(90, 122, 158, 0.12) 1px,
            transparent 1px,
            transparent 20px),
        repeating-linear-gradient(135deg,
            rgba(232, 160, 21, 0.08) 0px,
            rgba(232, 160, 21, 0.08) 1px,
            transparent 1px,
            transparent 25px),
        radial-gradient(circle at 10% 20%, rgba(90, 122, 158, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 30% 45%, rgba(232, 160, 21, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(90, 122, 158, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 25%, rgba(232, 160, 21, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 85% 85%, rgba(90, 122, 158, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 95% 40%, rgba(232, 160, 21, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 15% 60%, rgba(90, 122, 158, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 60% 90%, rgba(232, 160, 21, 0.06) 4px, transparent 4px),
        radial-gradient(circle at 80% 15%, rgba(90, 122, 158, 0.08) 3px, transparent 3px),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 4px);
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 90, 118, 0.2), rgba(215, 144, 5, 0.1));
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge i {
    font-size: 1.5rem;
    color: white;
}

.about-content {
    max-width: 100%;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(69, 90, 118, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.about-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue-darker);
    border-radius: 50%;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue-darker);
    letter-spacing: 1px;
}

body.dark-mode .about-badge {
    background: rgba(90, 122, 158, 0.15);
}

body.dark-mode .about-badge-dot {
    background: var(--accent-orange);
}

body.dark-mode .about-badge-text {
    color: var(--accent-orange);
}

.about-title {
    margin-bottom: 1rem;
}

.about-title-line {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-orange);
    line-height: 1.2;
}

.about-title-line.accent {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

body.dark-mode .about-title-line.accent {
    color: var(--primary-blue);
}

.about-divider {
    width: 15%;
    height: 3px;
    background: var(--accent-orange);
    margin: 0;
    margin-bottom: 10px;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Mission Card - Hover effect sama seperti tombol */
.mission-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mission-card:hover {
    transform: translateX(10px);
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: rgba(215, 144, 5, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.mission-icon i {
    font-size: 1.3rem;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: white;
}

.mission-card:hover .mission-icon i {
    color: var(--accent-orange);
}

.mission-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.mission-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-content h4 {
    color: white;
}

.mission-card:hover .mission-content p {
    color: rgba(255, 255, 255, 0.9);
}

.about-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.about-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-btn i {
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.about-btn span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.about-btn:hover i,
.about-btn:hover span {
    color: white;
}

body.dark-mode .about-btn {
    background: var(--primary-blue-darker);
}

body.dark-mode .about-btn:hover {
    background: var(--primary-blue-deep);
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
    .about-badge {
        margin: 0 auto 1.5rem;
    }
    .about-divider {
        margin: 0;
    }
    .about-mission {
        text-align: left;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 1rem;
    }
    .about-title-line {
        font-size: 1.8rem;
    }
    .about-title-line.accent {
        font-size: 2rem;
    }
    .mission-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .mission-card:hover {
        transform: translateY(-5px);
    }
    .about-buttons {
        gap: 0.5rem;
    }
    .about-btn {
        justify-content: center;
        padding: 0.4rem;
    }
    .about-btn i {
        display: none;
    }
}

/* Dark mode */
body.dark-mode .about-section {
    background: var(--bg-secondary);
}

body.dark-mode .mission-card {
    border: 1px solid var(--primary-blue-deep);
    background: var(--primary-blue-darker);
}

body.dark-mode .mission-card:hover {
    background: var(--bg-card);
    border-color: var(--accent-orange);
}

body.dark-mode .mission-card:hover .mission-icon {
    background: white;
}

body.dark-mode .mission-card:hover .mission-icon i {
    color: var(--accent-orange);
}

body.dark-mode .mission-card:hover .mission-content h4 {
    color: white;
}

body.dark-mode .mission-card:hover .mission-content p {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-mode .about-btn {
    background: var(--primary-blue-darker);
    border-color: var(--primary-blue-deep);
}

body.dark-mode .about-btn i {
    color: var(--accent-orange);
}

body.dark-mode .about-btn span {
    color: var(--text-primary);
}

body.dark-mode .about-btn:hover {
    border-color: var(--accent-orange);
}

body.dark-mode .about-btn:hover i,
body.dark-mode .about-btn:hover span {
    color: white;
}
/* About Section End */

/* Simple Centered Section Titles Start */
.section-title,
.articles-section .section-title,
.gallery-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 0.5rem auto;
    color: var(--primary-blue-deep);
    padding-bottom: 0;
    border-bottom: 3px solid var(--accent-orange);
    width: fit-content;
    max-width: 90%;
}

.articles-section .section-title,
.gallery-section .section-title {
    margin: 0 auto 2.5rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0 auto 3rem auto;
    max-width: 700px;
    width: 90%;
}

.footer h3,
.footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: start;
    color: white;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-orange);
    width: fit-content;
    max-width: 90%;
}

.footer-grid {
    text-align: start;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-contact p {
    gap: 0.5rem;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .section-title,
    .articles-section .section-title,
    .gallery-section .section-title {
        font-size: 2rem;
    }

    .social-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title,
    .articles-section .section-title,
    .gallery-section .section-title {
        font-size: 1.8rem;
    }

    .social-card h3 {
        font-size: 1.5rem;
    }

    .footer h3,
    .footer h4 {
        font-size: 1.3rem;
    }
}

/* Simple Centered Section Titles End */

/* Articles Section Start */
.articles-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.featured-article {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-article .article-content {
    padding: 2rem;
}

.featured-article h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-deep);
    margin-bottom: 1rem;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-article {
    background: #fcfbfb;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.small-article:hover {
    transform: translateX(10px);
    background: var(--primary-blue-darker);
    color: var(--bg-primary);
}

.small-article h4 {
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.small-article:hover .date {
    color: rgba(255, 255, 255, 0.8);
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    background: var(--primary-blue-darker);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, ease-in-out 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-blue-deep);
}

/* Articles Section End */

/* Gallery Section Start */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 164, 73, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(201, 164, 73, 0.03), transparent);
    pointer-events: none;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
    border: 3px solid var(--primary-blue-deep);
    border-radius: 10px;
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg,
            rgba(30, 25, 20, 0.75) 0%,
            rgba(45, 35, 25, 0.80) 50%,
            rgba(35, 30, 22, 0.85) 100%);
    color: #f5e6d3;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 2;
    border-top: 2px solid var(--accent-orange);
    transform: translateY(0);
    transition: background 0.2s ease;
}

.gallery-item:hover .gallery-caption {
    background: linear-gradient(90deg,
            rgba(25, 20, 16, 0.80) 0%,
            rgba(38, 30, 22, 0.85) 50%,
            rgba(30, 25, 19, 0.90) 100%);
    color: #ffe6c7;
    padding: 10px 12px;
}

.gallery-image-container.image-error {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image-container.image-error::after {
    content: '📷';
    font-size: 2rem;
    opacity: 0.5;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-caption {
        font-size: 0.75rem;
        padding: 8px 10px;
    }

    .gallery-item:hover .gallery-caption {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-caption {
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .gallery-item:hover .gallery-caption {
        padding: 8px 10px;
    }
}

/* Gallery Section End */

/* Social Section Start */
.social-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.social-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.social-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-deep);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.social-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    border-radius: 3px;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.social-list-item:hover {
    transform: translateY(-2px);
    border-color: currentColor;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.social-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.social-list-item.instagram .social-icon-container {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-list-item.instagram:hover {
    background: linear-gradient(135deg, #fdf2f8, #fff);
    border-color: #d62976;
}

.social-list-item.facebook .social-icon-container {
    background: #1877f2;
}

.social-list-item.facebook:hover {
    background: #e8f0fe;
    border-color: #1877f2;
}

.social-list-item.tiktok .social-icon-container {
    background: #000000;
}

.social-list-item.tiktok:hover {
    background: #f2f2f2;
    border-color: #000000;
}

.social-list-item.whatsapp .social-icon-container {
    background: #25D366;
}

.social-list-item.whatsapp:hover {
    background: #e0f2e5;
    border-color: #25D366;
}

.social-username {
    flex: 1;
    min-width: 0;
}

.social-platform {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.social-handle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-arrow {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
    flex-shrink: 0;
}

.social-list-item:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
    color: currentColor;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    width: 100%;
}

.iphone-x {
    position: relative;
    height: 650px;
    width: 320px;
    background: #111;
    border: 5px solid #3D3D3D;
    border-radius: 50px;
    box-shadow:
        inset 0 0 3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 1px #999,
        0 30px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.iphone-x:hover {
    transform: scale(0.87);
}

.iphone-x .buttons .silent,
.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down,
.iphone-x .buttons .sleep {
    background: #111;
    position: absolute;
    border-radius: 2px 0 0 2px;
}

.iphone-x .buttons .silent {
    height: 40px;
    width: 3px;
    top: 80px;
    left: -8px;
}

.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down {
    left: -8px;
    height: 60px;
    width: 4px;
}

.iphone-x .buttons .vol-up {
    top: 140px;
}

.iphone-x .buttons .vol-down {
    top: 210px;
}

.iphone-x .buttons .sleep {
    left: auto;
    right: -8px;
    top: 150px;
    height: 100px;
    width: 4px;
    border-radius: 0 2px 2px 0;
}

.iphone-x .top {
    position: absolute;
    top: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 4;
    filter: url('#goo');
}

.iphone-x .top .black-bar {
    position: absolute;
    height: 1px;
    width: 70%;
    padding-top: 2px;
    background: #111;
}

.iphone-x .top .iphone-top {
    position: relative;
    height: 30px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: #111;
    z-index: 2;
}

.iphone-x .components {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.iphone-x .components .speaker {
    height: 6px;
    width: 70px;
    border-radius: 6px;
    border-bottom: 1px solid #333;
    background: #222;
    z-index: 100;
}

.iphone-x .components .camera {
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border-bottom: 1px solid #444;
    background: radial-gradient(black, #333);
    opacity: 0.5;
    z-index: 4;
}

.iphone-x .components .camera .shine-left {
    position: absolute;
    height: 10px;
    width: 10px;
    margin: 2px;
    border-left: 4px solid dodgerblue;
    border-right: transparent;
    background: black;
    border-radius: 50%;
    filter: blur(1.8px);
}

.iphone-x .components .camera .shine-left:before {
    content: '';
    position: absolute;
    right: 0px;
    height: 8px;
    width: 8px;
    border-right: 2px solid var(--bg-primary);
    border-radius: 4px;
}

.iphone-x .top-bar,
.iphone-x .bottom-bar {
    position: absolute;
    left: -5px;
    height: 15px;
    width: 320px;
    border-left: 5px solid #111;
    border-right: 5px solid #111;
}

.iphone-x .top-bar {
    top: 65px;
}

.iphone-x .bottom-bar {
    bottom: 65px;
}

.iphone-x .screen {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(0, 0, 0, 0.9);
    border-radius: 40px;
    overflow: hidden;
    background: var(--bg-primary);
}

.iphone-x .instagram-feed {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0 5px;
    box-sizing: border-box;
}

.iphone-x .instagram-feed::-webkit-scrollbar {
    width: 4px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-thumb {
    background: var(--primary-blue-deep);
    border-radius: 10px;
}

.insta-post {
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.insta-post:hover {
    opacity: 0.9;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0 10px 0;
}

.insta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 20px;
}

.insta-username {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.insta-image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0;
    background: var(--bg-secondary);
}

.insta-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.insta-image:hover {
    transform: scale(1.02);
}

.insta-actions {
    display: flex;
    gap: 15px;
    padding: 10px 0 5px 0;
    font-size: 22px;
}

.insta-actions span {
    cursor: default;
}

.insta-likes {
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 5px 0;
    color: var(--text-primary);
}

.insta-caption {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary);
}

.insta-caption strong {
    margin-right: 5px;
}

.insta-time {
    font-size: 10px;
    color: var(--text-muted);
    padding: 8px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insta-loading,
.insta-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
}

.insta-error {
    color: #ed4956;
}

.insta-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.insta-view-profile {
    text-align: center;
    padding: 15px 0 10px;
}

.insta-view-profile a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.insta-view-profile a:hover {
    transform: scale(1.05);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0095f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.retry-btn {
    margin-top: 15px;
    padding: 8px 20px;
    background: #0095f6;
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .social-section {
        padding: 3rem 1rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-card {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        order: 2;
        padding: 1.5rem;
    }

    .phone-mockup {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .social-list-item {
        padding: 0.8rem;
    }

    .social-icon-container {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .social-handle {
        font-size: 1rem;
    }

    .iphone-x {
        transform: scale(0.8);
        margin: -80px 0;
    }

    .iphone-x:hover {
        transform: scale(0.82);
    }
}

@media (max-width: 480px) {
    .social-section {
        padding: 2rem 1rem;
    }

    .social-card {
        padding: 1.2rem;
    }

    .social-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .social-icon-container {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }

    .social-handle {
        font-size: 0.9rem;
    }

    .social-platform {
        font-size: 0.7rem;
    }

    .social-list-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }

    .iphone-x {
        transform: scale(0.7);
    }

    .iphone-x:hover {
        transform: scale(0.72);
    }
}

@media (max-width: 360px) {
    .social-card {
        padding: 1rem;
    }

    .social-icon-container {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .social-handle {
        font-size: 0.85rem;
    }

    .social-list-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .iphone-x {
        transform: scale(0.65);
    }
}

.social-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ccc;
    transition: all 0.3s ease;
    opacity: 0;
    margin-right: 5px;
}

.social-list-item.instagram:hover .social-arrow {
    opacity: 1;
    border-left-color: #d62976;
}

.social-list-item.facebook:hover .social-arrow {
    opacity: 1;
    border-left-color: #1877f2;
}

.social-list-item.tiktok:hover .social-arrow {
    opacity: 1;
    border-left-color: #000000;
}

/* Social Section End */

/* Footer Start */
.footer {
    background: var(--primary-blue-deep);
    color: var(--bg-primary);
    padding: 4rem 2rem 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),

        linear-gradient(45deg, transparent 60%, rgba(10, 5, 5, 0.2) 100%),
        linear-gradient(135deg, transparent 70%, rgba(0, 0, 0, 0.15) 100%),

        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 25px),
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 2px,
            transparent 2px,
            transparent 35px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 2px,
            transparent 2px,
            transparent 35px),

        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),

        repeating-linear-gradient(15deg,
            rgba(0, 0, 0, 0.03) 0px,
            rgba(0, 0, 0, 0.03) 5px,
            transparent 5px,
            transparent 20px),
        repeating-linear-gradient(105deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 8px,
            transparent 8px,
            transparent 25px);

    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer h3,
.footer h4 {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: var(--bg-primary);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
    color: var(--bg-primary);
}

.footer p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.powered-by {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer End */

/* Mobile Display Start */
@media (max-width: 1140px) {
    .top-bar-container {
        padding: 0 1rem;
        gap: 1rem;
        width: 100%;
    }

    .custom-select {
        width: 100px;
    }

    .selected-text {
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 70px;
        width: 100%;
    }

    .site-title {
        margin-left: 1.2rem;
    }

    .site-title span:first-child {
        font-size: 1.1rem;
    }

    .site-title span:last-child {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 75px 1rem 2rem 1rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 900;
        margin: 0;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        max-width: 400px;
        text-align: left;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
        font-size: 1.05rem;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu a:hover {
        background: var(--primary-blue-deep);
        color: var(--bg-primary);
        border-radius: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .heading-section {
        margin-top: 70px;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .heading-right-content {
        right: 5%;
        padding: 1.5rem 0;
    }

    .heading-buttons {
        gap: 0.5rem;
    }

    .icon-btn {
        width: 55px;
        height: 55px;
    }

    .icon-btn img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }

    .owner-grid,
    .articles-grid,
    .social-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    @keyframes fadeInRegion {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero-section,
    .owner-section,
    .articles-section,
    .gallery-section,
    .social-section {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .articles-grid {
        gap: 2rem;
    }

    .featured-article img {
        height: 200px;
    }

    .small-article {
        padding: 1rem;
    }

    .social-icons {
        margin-bottom: 2rem;
    }

    .iphone-frame {
        width: 280px;
        height: 550px;
        margin: 0 auto;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-section,
    .social-section {
        padding: 2rem 1rem 1rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        gap: 0.5rem;
    }

    .footer {
        padding: 2rem;
    }

    .custom-select {
        width: 140px;
    }

    .site-title {
        margin-left: 5px;
    }

    .site-title span:first-child {
        font-size: 1rem;
    }

    .site-title span:last-child {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .heading-section {
        height: 50vh;
        margin-top: 70px;
    }

    .heading-right-content {
        right: 4%;
        padding: 1rem 0;
    }

    .heading-buttons {
        gap: 0.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .owner-content h2 {
        font-size: 1.8rem;
    }

    .featured-article h3 {
        font-size: 1.3rem;
    }

    .small-article h4 {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .iphone-frame {
        width: 240px;
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .navbar.hidden {
        transform: translateY(-100%);
    }

    .navbar.menu-active {
        transform: none !important;
    }
}

/* Read More Button Styles Start */
.read-more {
    color: var(--primary-blue);
    padding: 0 10px;
    margin-left: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(145deg, var(--primary-blue), var(--primary-blue-darker));
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.read-more:hover::before {
    opacity: 0.5;
}

.read-more:hover {
    transform: translateX(2px);
    border-color: var(--primary-blue-darker);
    color: var(--primary-blue-deep);
}

.read-more:active {
    transform: translateX(0);
}

.read-more::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover::after {
    transform: translateX(5px);
    color: var(--primary-blue-deep);
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.featured-article .read-more {
    margin-top: 10px;
}

/* Read More Button Styles End */

.gtg-search-container {
    margin: 20px 0;
    max-width: 500px;
}

.gtg-search-input {
    width: 100%;
    height: 38px;
    padding: 0 16px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 16px;
    background: var(--bg-primary);
    transition: all 0.3s ease;
    outline: none;
}

.gtg-search-input:focus {
    border-color: var(--gold-accent, var(--accent-orange));
    box-shadow: 0 0 0 3px rgba(201, 164, 73, 0.1);
}

.gtg-search-input::placeholder {
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .gtg-search-container {
        margin-bottom: 20px;
    }

    .gtg-search-input {
        height: 40px;
        font-size: 14px;
    }
}

.gtg-categories-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.gtg-categories-title {
    font-size: 1.8rem;
    color: var(--dark-brown, var(--primary-blue-deep));
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.gtg-categories-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-accent, var(--accent-orange));
}

.gtg-categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.gtg-category-card {
    display: block;
    background: var(--bg-primary);
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 15px;
}

.gtg-category-card:hover {
    border-color: var(--gold-accent, var(--accent-orange));
}

.gtg-category-header {
    background: var(--light-brown, var(--primary-blue-deep));
    padding: 14px;
    border: 2px solid var(--border-color);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.gtg-category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-primary);
    margin: 0;
}

.gtg-category-count {
    font-size: 0.9rem;
    color: #222;
    background: var(--bg-card);
    font-weight: normal;
    margin-left: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.gtg-category-content {
    padding: 12px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.gtg-category-description {
    color: #222222;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtg-view-all-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.gtg-btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark-brown, var(--primary-blue-deep));
    color: var(--bg-primary);
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.gtg-btn-view-all:hover {
    background: var(--dark-green, var(--primary-blue));
    transform: translateY(-2px);
}

.gtg-btn-view-all:active {
    transform: translateY(0);
}

.gtg-no-data {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 16px;
}

@media (max-width: 768px) {
    .gtg-categories-container {
        padding: 15px;
    }

    .gtg-categories-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .gtg-categories-list {
        gap: 12px;
    }

    .gtg-category-header {
        padding: 10px;
    }

    .gtg-category-name {
        font-size: 0.95rem;
    }

    .gtg-category-count {
        font-size: 0.85rem;
    }

    .gtg-category-content {
        padding: 10px;
    }

    .gtg-category-description {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        font-size: 0.8rem;
    }

    .gtg-btn-view-all {
        padding: 6px 20px;
        font-size: 0.8rem;
    }
}

/* Gallery View All Button Start */
.gallery-view-all-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.gallery-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark-brown, var(--primary-blue-deep));
    color: var(--bg-primary);
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(58, 44, 30, 0.2);
}

.gallery-view-all-btn:hover {
    background: var(--dark-green, var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 77, 38, 0.3);
}

.gallery-view-all-btn:active {
    transform: translateY(0);
}

.gallery-view-all-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gallery-view-all-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .gallery-view-all-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-view-all-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
/* Gallery View All Button End */

/* Dark Mode Start */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body.dark-mode .hero-content h1 {
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.dark-mode .hero-subtitle {
    color: var(--text-secondary);
    border-left-color: var(--accent-orange);
}

body.dark-mode .story-container {
    background: var(--bg-card);
    border-color: rgba(232, 160, 21, 0.3);
}

body.dark-mode .story-part p {
    color: var(--text-secondary);
}

body.dark-mode .story-part {
    border-bottom-color: rgba(232, 160, 21, 0.2);
}

body.dark-mode .story-part:first-child p::first-letter {
    color: var(--accent-orange);
}

body.dark-mode .keyword-badge-gold {
    background: var(--accent-orange);
    color: var(--primary-blue-deep);
    border-color: var(--accent-orange-light);
}

body.dark-mode .quote-box {
    background: var(--bg-secondary);
    border-left-color: var(--accent-orange);
}

body.dark-mode .quote-box p {
    color: var(--text-primary);
}

body.dark-mode .owner-section {
    background: var(--primary-blue-deep);
}

body.dark-mode .owner-content h2 {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    border-left-color: var(--accent-orange);
}

body.dark-mode .owner-story {
    color: var(--text-secondary);
}

body.dark-mode .section-title,
body.dark-mode .articles-section .section-title,
body.dark-mode .gallery-section .section-title {
    color: var(--text-primary);
    border-bottom-color: var(--accent-orange);
}

body.dark-mode .section-subtitle {
    color: var(--text-muted);
}

body.dark-mode .articles-section {
    background-color: var(--bg-primary);
}

body.dark-mode .featured-article {
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}

body.dark-mode .featured-article h3 {
    color: var(--text-primary);
}

body.dark-mode .featured-article h3 a {
    color: var(--text-primary);
}

body.dark-mode .featured-article h3 a:hover {
    color: var(--accent-orange);
}

body.dark-mode .article-content p {
    color: var(--text-secondary);
}

body.dark-mode .small-article {
    background: var(--bg-secondary);
}

body.dark-mode .small-article h4 {
    color: var(--text-primary);
}

body.dark-mode .small-article h4 a {
    color: var(--text-primary);
}

body.dark-mode .small-article:hover {
    background: var(--primary-blue-deep);
}

body.dark-mode .small-article:hover h4 {
    color: var(--bg-primary);
}

body.dark-mode .date {
    color: var(--text-muted);
}

body.dark-mode .small-article:hover .date {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .view-all-btn {
    background: var(--primary-blue);
    color: var(--bg-primary);
}

body.dark-mode .view-all-btn:hover {
    background: var(--accent-orange);
}

body.dark-mode .read-more {
    color: var(--accent-orange-light);
    border-bottom-color: var(--accent-orange);
}

body.dark-mode .read-more:hover {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

body.dark-mode .gallery-section {
    background: var(--bg-secondary);
}

body.dark-mode .gallery-section::before {
    background: radial-gradient(circle, rgba(232, 160, 21, 0.08) 0%, transparent 70%);
}

body.dark-mode .gallery-item {
    background: var(--bg-card);
    border-color: var(--primary-blue);
}

body.dark-mode .gallery-caption {
    background: linear-gradient(90deg,
            rgba(26, 26, 46, 0.85) 0%,
            rgba(31, 42, 68, 0.90) 50%,
            rgba(26, 26, 46, 0.95) 100%);
    border-top-color: var(--accent-orange);
    color: var(--text-secondary);
}

body.dark-mode .gallery-item:hover .gallery-caption {
    background: linear-gradient(90deg,
            rgba(31, 42, 68, 0.95) 0%,
            rgba(26, 26, 46, 0.95) 50%,
            rgba(31, 42, 68, 0.98) 100%);
    color: white;
}

body.dark-mode .gallery-view-all-btn {
    background: var(--primary-blue);
}

body.dark-mode .gallery-view-all-btn:hover {
    background: var(--accent-orange);
}

body.dark-mode .social-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.dark-mode .social-card h3 {
    color: var(--text-primary);
}

body.dark-mode .social-card h3:after {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
}

body.dark-mode .social-list-item {
    background: var(--bg-secondary);
}

body.dark-mode .social-handle {
    color: var(--text-primary);
}

body.dark-mode .social-platform {
    color: var(--text-muted);
}

body.dark-mode .social-list-item:hover {
    box-shadow: var(--shadow-md);
}

body.dark-mode .instagram-feed {
    background: var(--bg-primary);
}

body.dark-mode .insta-username {
    color: var(--text-primary);
}

body.dark-mode .insta-caption {
    color: var(--text-secondary);
}

body.dark-mode .insta-likes {
    color: var(--text-primary);
}

body.dark-mode .insta-time {
    color: var(--text-muted);
}

body.dark-mode .insta-post {
    border-bottom-color: var(--border-color);
}

body.dark-mode .footer {
    background: var(--primary-blue-deep);
}

body.dark-mode .footer h3,
body.dark-mode .footer h4 {
    border-bottom-color: var(--accent-orange);
}

body.dark-mode .footer-links a {
    color: white;
}

body.dark-mode .footer-links a:hover {
    color: var(--accent-orange);
}

body.dark-mode .footer p {
    color: white;
}

body.dark-mode .powered-by {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .pokja-logo .logo-container img {
    background: var(--bg-card);
}

body.dark-mode .gallery-image-container.image-error {
    background: var(--bg-secondary);
}

body.dark-mode .gallery-image-container.image-error::after {
    color: var(--text-muted);
}

body.dark-mode .gtg-categories-title {
    color: var(--text-primary);
}

body.dark-mode .gtg-category-card {
    background: var(--bg-card);
}

body.dark-mode .gtg-category-header {
    background: var(--primary-blue);
    border-color: var(--border-color);
}

body.dark-mode .gtg-category-name {
    color: var(--bg-primary);
}

body.dark-mode .gtg-category-count {
    background: var(--bg-primary);
    color: var(--text-primary);
}

body.dark-mode .gtg-category-content {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.dark-mode .gtg-category-description {
    color: var(--text-secondary);
}

body.dark-mode .gtg-search-input {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.dark-mode .gtg-search-input:focus {
    border-color: var(--accent-orange);
}

body.dark-mode .gtg-btn-view-all {
    background: var(--primary-blue);
}

body.dark-mode .gtg-btn-view-all:hover {
    background: var(--accent-orange);
}

body.dark-mode .gtg-no-data {
    color: var(--text-muted);
}

body.dark-mode .iphone-x .screen {
    background: var(--bg-primary);
}

body.dark-mode .iphone-x .instagram-feed::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

body.dark-mode .iphone-x .instagram-feed::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
}

body.dark-mode .insta-loading {
    color: var(--text-muted);
}

body.dark-mode .insta-error {
    color: var(--accent-orange);
}

body.dark-mode .hero-section::before,
body.dark-mode .articles-section::before,
body.dark-mode .social-section::before {
    opacity: 0.3;
}

body.dark-mode .hero-section::after,
body.dark-mode .articles-section::after,
body.dark-mode .social-section::after {
    opacity: 0.2;
}

body.dark-mode .select-selected {
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.dark-mode .select-items {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.dark-mode .select-item {
    color: var(--text-primary);
}

body.dark-mode .select-item:hover {
    background: var(--bg-secondary);
}

body.dark-mode .story-container::after {
    color: rgba(232, 160, 21, 0.15);
}

body.dark-mode .hero-title-wrapper::before {
    background: radial-gradient(circle, rgba(232, 160, 21, 0.15) 0%, transparent 70%);
}

body.dark-mode .hero-title-wrapper::after {
    background: radial-gradient(circle, rgba(90, 122, 158, 0.1) 0%, transparent 70%);
}

body.dark-mode .no-transition {
    transition: none !important;
}

a:not(.nav-link):not(.dropdown-link):not(.footer-links a) {
    color: inherit;
}

body:not(.dark-mode) .hero-btn-primary {
    background: var(--primary-blue) !important;
    color: white !important;
}

body:not(.dark-mode) .hero-btn-primary:hover {
    background: var(--primary-blue-dark) !important;
    color: white !important;
}

body.dark-mode .hero-image-caption {
    color: var(--accent-orange);
}

body.dark-mode .dropdown-menu {
    background: var(--bg-secondary);
}

body.dark-mode .mobile-theme-switch {
    border-top-color: var(--border-color);
}

.nav-menu {
    -webkit-overflow-scrolling: touch;
}

.nav-menu::-webkit-scrollbar {
    width: 3px;
}

.nav-menu::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}

body.dark-mode .small-article:hover h4,
body.dark-mode .small-article:hover h4 a {
    color: var(--accent-orange) !important;
}

body.dark-mode .social-list-item:hover .social-platform,
body.dark-mode .social-list-item:hover .social-handle {
    color: var(--primary-blue-deep) !important;
}
/* Dark Mode End */

/* Fix Navigation Start */
@media (max-width: 768px) {
    .dropdown-submenu > .dropdown-menu {
        display: block !important;
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s ease !important;
    }
    
    .dropdown-submenu > .dropdown-menu.active {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
        visibility: visible;
        overflow-y: auto;
    }
    
    .dropdown > .dropdown-menu {
        display: block !important;
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s ease !important;
    }
    
    .dropdown > .dropdown-menu.active {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
        visibility: visible;
        overflow-y: auto;
    }
    
    .dropdown-submenu .dropdown-link {
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.2s ease, color 0.2s ease !important;
    }
    
    .dropdown-submenu .dropdown-link:active {
        background: var(--bg-secondary);
    }
    
    .dropdown-icon,
    .submenu-icon {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .dropdown.active > .nav-link .dropdown-icon,
    .dropdown-submenu.active > .dropdown-link .submenu-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-menu.active li,
    .dropdown-submenu > .dropdown-menu.active li {
        animation: fadeInItem 0.25s ease forwards;
        opacity: 0;
    }
    
    .dropdown-menu.active li:nth-child(1) { animation-delay: 0.02s; }
    .dropdown-menu.active li:nth-child(2) { animation-delay: 0.04s; }
    .dropdown-menu.active li:nth-child(3) { animation-delay: 0.06s; }
    .dropdown-menu.active li:nth-child(4) { animation-delay: 0.08s; }
    .dropdown-menu.active li:nth-child(5) { animation-delay: 0.10s; }
    .dropdown-menu.active li:nth-child(6) { animation-delay: 0.12s; }
    .dropdown-menu.active li:nth-child(7) { animation-delay: 0.14s; }
    .dropdown-menu.active li:nth-child(8) { animation-delay: 0.16s; }
    
    @keyframes fadeInItem {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu {
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .hamburger-menu span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}

@media (min-width: 769px) {
    .dropdown-menu {
        transition: opacity 0.25s ease, 
                    visibility 0.25s ease, 
                    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .dropdown-submenu > .dropdown-menu {
        transition: opacity 0.25s ease, 
                    visibility 0.25s ease, 
                    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .dropdown-icon,
    .submenu-icon {
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .dropdown:hover .dropdown-icon,
    .dropdown-submenu:hover .submenu-icon {
        transform: rotate(180deg);
    }
}

body.dark-mode .dropdown-submenu .dropdown-link:active {
    background: var(--bg-card);
}

.nav-menu {
    scroll-behavior: smooth;
}

.dropdown-submenu .dropdown-link {
    background: rgba(0, 0, 0, 0.04) !important;
    border-left: 3px solid var(--accent-orange) !important;
    font-weight: 500 !important;
}

.dropdown-submenu .dropdown-link:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: var(--accent-orange) !important;
}

body.dark-mode .dropdown-submenu .dropdown-link {
    background: rgba(255, 255, 255, 0.08) !important;
    border-left: 3px solid var(--accent-orange) !important;
}

body.dark-mode .dropdown-submenu .dropdown-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--accent-orange) !important;
}

.dropdown-submenu.active > .dropdown-link {
    background: rgba(0, 0, 0, 0.06) !important;
}

body.dark-mode .dropdown-submenu.active > .dropdown-link {
    background: rgba(255, 255, 255, 0.12) !important;
}

.dropdown-submenu .dropdown-link {
    transition: background 0.2s ease, color 0.2s ease !important;
}

@media (max-width: 768px) {
    .dropdown-submenu .dropdown-link {
        background: rgba(0, 0, 0, 0.04) !important;
    }
    
    body.dark-mode .dropdown-submenu .dropdown-link {
        background: rgba(255, 255, 255, 0.08) !important;
    }
    
    .dropdown-submenu .dropdown-link:active {
        background: rgba(0, 0, 0, 0.1) !important;
    }
    
    body.dark-mode .dropdown-submenu .dropdown-link:active {
        background: rgba(255, 255, 255, 0.15) !important;
    }
}
/* Fix Navigation End */

/* Theme Switch Styling Start */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    background: var(--bg-secondary);
    padding: 0;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.theme-switch-wrapper:hover {
    background: var(--bg-card);
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    transition: 0.3s;
    border-radius: 34px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.theme-switch .slider:before {
    position: absolute;
    content: "☀️";
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--bg-primary);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked + .slider:before {
    content: "🌙";
    transform: translateX(26px);
}

input:checked + .slider {
    background-color: var(--accent-orange);
}

.mobile-theme-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    margin-top: 8px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin: 8px 12px;
}

.mobile-theme-switch span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-theme-switch .theme-switch {
    transform: scale(0.9);
}

body.dark-mode .theme-switch-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .theme-switch-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .mobile-theme-switch {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .theme-switch-wrapper {
        display: none !important;
    }
    
    .mobile-theme-switch {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .mobile-theme-switch {
        display: none !important;
    }
}
/* Theme Switch Styling End */

/* Supervisor Section Start */
.supervisor-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 5rem 2rem;
    overflow: hidden;
    width: 100%;
}

.supervisor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.supervisor-bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.supervisor-bg-shape.one {
    background: var(--primary-blue);
    top: -150px;
    right: -100px;
    animation: supervisorFloatShape 20s ease-in-out infinite;
}

.supervisor-bg-shape.two {
    background: var(--accent-orange);
    bottom: -150px;
    left: -100px;
    animation: supervisorFloatShape 25s ease-in-out infinite reverse;
}

.supervisor-bg-shape.three {
    background: var(--primary-blue-darker);
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: supervisorFloatShape 22s ease-in-out infinite;
    animation-delay: 1s;
    opacity: 0.2;
}

@keyframes supervisorFloatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.supervisor-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.supervisor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.supervisor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(69, 90, 118, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.supervisor-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.supervisor-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue);;
    letter-spacing: 1px;
}

.supervisor-title {
    margin-bottom: 0.5rem;
}

.supervisor-title-line {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-orange);
    line-height: 1.2;
}

.supervisor-title-line.accent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.supervisor-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 1rem auto;
}

.supervisor-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.supervisor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.supervisor-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.supervisor-card.leader {
    border-top: 4px solid var(--accent-orange);
}

.supervisor-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-lg);
}

.supervisor-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.supervisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-orange);
    padding: 3px;
    background: var(--primary-blue-deep);
}

.supervisor-role-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.supervisor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.supervisor-position {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 1rem;
}

.supervisor-desc {
    margin-bottom: 1.25rem;
}

.supervisor-desc p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.supervisor-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.supervisor-social-link {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.supervisor-social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .supervisor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .supervisor-section {
        padding: 3rem 1rem;
    }
    .supervisor-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .supervisor-title-line {
        font-size: 1.8rem;
    }
    .supervisor-title-line.accent {
        font-size: 1.5rem;
    }
    .supervisor-card {
        padding: 1.5rem;
    }
    .supervisor-avatar {
        width: 100px;
        height: 100px;
    }
}

body.dark-mode .supervisor-section {
    background: var(--bg-secondary);
}

body.dark-mode .supervisor-badge {
    background: rgba(90, 122, 158, 0.15);
}

body.dark-mode .supervisor-badge .supervisor-badge-dot {
    background: var(--accent-orange) !important;
}

body.dark-mode .supervisor-badge .supervisor-badge-text {
    color: var(--accent-orange) !important;
}

body.dark-mode .supervisor-title-line.accent {
    color: var(--primary-blue) !important;
}

body.dark-mode .supervisor-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}

body.dark-mode .supervisor-card:hover {
    border-color: var(--accent-orange);
}

body.dark-mode .supervisor-social-link {
    background: var(--bg-secondary);
}

body.dark-mode .supervisor-social-link:hover {
    background: var(--accent-orange);
    color: white;
}
/* Supervisor Section End */