/*

TemplateMo 593 personal shape

https://templatemo.com/tm-593-personal-shape

*/

@charset "utf-8";
/* CSS Document */

html {
  overflow-x: hidden; }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body{
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.8;
            font-size: 15px;
            overflow-x: hidden; 
            }
            body:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                z-index: 99;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.2);
                opacity: 0;
                visibility: hidden;
                -webkit-transition: .3s all ease;
                -o-transition: .3s all ease;
                transition: .3s all ease; }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
            opacity: 0.4;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .footer-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-right {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-right a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-right a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        .footer-right a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .footer-right a:hover::after {
            width: 100%;
        }

        /* Footer Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-right {
                justify-content: center;
                gap: 1.5rem;
            }

            .footer-right a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .footer-right {
                flex-direction: column;
                gap: 1rem;
            }
        }

        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #f59e0b;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #332534;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --bg-card: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-elegant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            scroll-behavior: smooth;
            overflow-x: hidden;
            background: var(--bg-primary);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            padding: 0.75rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(38, 15, 42, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 2rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-nav-links a {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            background: white;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-nav-links a:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: var(--gradient-elegant); */
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); */
            /* animation: float 25s ease-in-out infinite; */
            /* opacity: 0.7; */
            /* background: #eeceae;
background: radial-gradient(circle, rgba(238, 206, 174, 0.7) 0%, rgba(208, 148, 233, 1) 100%); */

background: #c495e8;
background: linear-gradient(191deg, rgba(196, 149, 232, 1) 0%, rgba(255, 251, 235, 1) 74%, rgba(255, 255, 255, 1) 100%);


        }

        

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: floatShape1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            background: rgba(255, 255, 255, 0.08);
            animation: floatShape2 25s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 25%;
            background: rgba(255, 255, 255, 0.12);
            animation: floatShape3 18s ease-in-out infinite;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 25%;
            left: 20%;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            animation: floatShape4 22s ease-in-out infinite;
        }

        .shape-5 {
            width: 40px;
            height: 40px;
            top: 15%;
            right: 40%;
            background: rgba(255, 255, 255, 0.15);
            animation: floatShape5 16s ease-in-out infinite reverse;
        }

        .shape-6 {
            width: 140px;
            height: 140px;
            bottom: 15%;
            right: 10%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 30px;
            animation: floatShape6 28s ease-in-out infinite;
        }

        @keyframes floatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
            50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
            75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
        }

        @keyframes floatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
            66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
        }

        @keyframes floatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
        }

        @keyframes floatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
            50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
            75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
        }

        @keyframes floatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
        }

        @keyframes floatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
            66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            color: #332534;
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
            margin-bottom: 1rem;
            color: #332534cc;
        }

        .hero h1 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
           color: #332534;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(138, 38, 158, 0.3);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover {
            border-color: rgba(255, 255, 255, 0.9);
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(-50%) translateY(0); opacity: 1; }
            100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
        }

        /* Section Styles */
        section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 4rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* About Section */
        .about {
            /* background: var(--bg-secondary); */
            position: relative;
        }

        /* .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        } */

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('../img/hero.png') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

        .about-image::after {

        }

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .skills {
            /* display: flex; */
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .skill-tag {
            padding: 0.75rem 1.5rem;
            /* background: var(--bg-card); */
            color: var(--primary-color);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .skill-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Portfolio Section */
        .portfolio {
            background: var(--bg-primary);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .portfolio-item {
            background: var(--bg-card);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .portfolio-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-2xl);
        }

        .portfolio-image {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .portfolio-image .img{
            width: 100%;
            /* height: 180px; */
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }


        /* .portfolio-item:nth-child(1) .portfolio-image {
            background-image: url('images/person.png');
        }

        .portfolio-item:nth-child(2) .portfolio-image {
            background-image: url('images/person.png');
        }

        .portfolio-item:nth-child(3) .portfolio-image {
            background-image: url('images/person.png');
        }

        .portfolio-item:nth-child(4) .portfolio-image {
            background-image: url('images/person.png');
        }

        .portfolio-item:nth-child(5) .portfolio-image {
            background-image: url('images/person.png');
        }

        .portfolio-item:nth-child(6) .portfolio-image {
            background-image: url('images/person.png');
        } */

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .portfolio-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .portfolio-tech {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .tech-tag {
            padding: 0.4rem 1rem;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
        }

                /* Portfolio new Section */
        .healer {
            background: var(--bg-primary);
        }


        .healer-item {
            background: var(--bg-card);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            /* opacity: 0; */
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px); 
            padding: 0;
        }

        .healer-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .healer-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-2xl);
        }

        .healer-image {
            width: 100%;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        
        }

        .healer-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            transition: all 0.3s ease;
        }

        .healer-item:hover .healer-image::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
        }

        .healer-content {
            padding: 2rem;
        }

        .healer-content h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .healer-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .healer-tech {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }



        /* Contact Section */
        .contact {
background: #56128a;
background: linear-gradient(188deg, rgba(86, 18, 138, 1) 0%, rgba(255, 251, 235, 1) 100%, rgba(248, 250, 252, 1) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
            animation: contactFloat 30s ease-in-out infinite;
            opacity: 0.6;
        }

        .contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: contactPulse 6s ease-in-out infinite alternate;
        }

        /* Contact Floating Shapes */
        .contact-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .contact-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .contact-shape-1 {
            width: 70px;
            height: 70px;
            top: 15%;
            left: 8%;
            animation: contactFloatShape1 24s ease-in-out infinite;
        }

        .contact-shape-2 {
            width: 110px;
            height: 110px;
            top: 65%;
            right: 12%;
            background: rgba(255, 255, 255, 0.06);
            animation: contactFloatShape2 28s ease-in-out infinite reverse;
        }

        .contact-shape-3 {
            width: 55px;
            height: 55px;
            top: 25%;
            right: 30%;
            background: rgba(255, 255, 255, 0.1);
            animation: contactFloatShape3 20s ease-in-out infinite;
        }

        .contact-shape-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            left: 18%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            animation: contactFloatShape4 26s ease-in-out infinite;
        }

        .contact-shape-5 {
            width: 35px;
            height: 35px;
            top: 12%;
            right: 45%;
            background: rgba(255, 255, 255, 0.12);
            animation: contactFloatShape5 18s ease-in-out infinite reverse;
        }

        .contact-shape-6 {
            width: 130px;
            height: 130px;
            bottom: 12%;
            right: 8%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 35px;
            animation: contactFloatShape6 32s ease-in-out infinite;
        }

        @keyframes contactFloatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-25px) translateX(15px) rotate(90deg); }
            50% { transform: translateY(-10px) translateX(-8px) rotate(180deg); }
            75% { transform: translateY(-35px) translateX(12px) rotate(270deg); }
        }

        @keyframes contactFloatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(20px) translateX(-15px) scale(1.05); }
            66% { transform: translateY(-15px) translateX(20px) scale(0.95); }
        }

        @keyframes contactFloatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-20px) translateX(-25px) rotate(180deg); }
        }

        @keyframes contactFloatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(15px) translateX(-12px) rotate(30deg); }
            50% { transform: translateY(-8px) translateX(25px) rotate(60deg); }
            75% { transform: translateY(12px) translateX(-18px) rotate(90deg); }
        }

        @keyframes contactFloatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-30px) translateX(15px) scale(1.15); }
        }

        @keyframes contactFloatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-12px) translateX(8px) rotate(45deg); }
            66% { transform: translateY(8px) translateX(-20px) rotate(90deg); }
        }

        @keyframes contactFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(0.5deg); }
            66% { transform: translateY(-10px) rotate(-0.5deg); }
        }

        @keyframes contactPulse {
            0% { opacity: 0.4; }
            100% { opacity: 0.7; }
        }

        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
background: #e3eeae;
background: radial-gradient(circle, rgba(227, 238, 174, 0.28) 0%, rgba(188, 148, 233, 0.14) 100%);
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            /* color: white; */
            padding: 1rem;
        }

        .contact .section-title {
            /* color: white; */
            /* background: white; */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-form {
            
            display: grid;
            /* gap: 1rem; */
            /* margin-top: 2rem; */
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .form-group {
            display: grid;
            /* gap: 0.75rem; */
            text-align: left;
        }

        .form-group label {
            font-weight: 500;
            /* color: var(--text-light); */
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.75rem;
            border: 1px solid rgba(36, 11, 48, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(106, 83, 122, 0.5);
        }

        .submit-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 5rem 0;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-text h3 {
                font-size: 2rem;
            }

            .skills {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }
        }

        .text-center {
            text-align: center;
        }

        /* .pranic-healing{
            background: #c495e8;background: linear-gradient(36deg, rgba(196, 149, 232, 1) 0%, rgba(255, 251, 235, 1) 74%, rgba(248, 250, 252, 1) 100%);
        } */
.pranic-healing {
  background: linear-gradient(
    36deg,
    rgba(196, 149, 232, 1) 0%,
    rgba(255, 251, 235, 1) 74%,
    rgba(248, 250, 252, 1) 100%
  );
  padding: 60px 20px;
}

.healing-text {
  max-width: 900px;
  margin: 0 auto;
  color: #2d2d2d;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* Checklist minimalist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 14px 16px 14px 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checklist li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Icon cek hijau minimalist */
/* .checklist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #9b87b8; 
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
} */

.checklist li::after {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(-50%, -52%); 
  font-size: 14px;
  font-weight: bold;
  color: #6b4ea0;
}

/* Responsive grid */
@media (min-width: 600px) {
  .checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonials {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-item {
  display: none;
  flex-direction: column;
  /* align-items: center; */
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease;
}
/* Tanda petik dekoratif */
.testimonial-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f10d"; /* fa-quote-left */
  font-size: 2rem;
  color: #5c9ded;
  opacity: 0.3;
}

.testimonial-item.active {
  display: flex;
}



.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #c495e8;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #444;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #777;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: #c495e8;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 8px;
  padding: 8px 16px;
  /* border-radius: 50%; */
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-controls button:hover {
  background: #9b87b8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

    .widget {
    margin-bottom: 30px; }
    .widget h3 {
      font-size: 14px;
      margin-bottom: 20px;
      color: #ffffff;
      font-family: "Inter", sans-serif; }

      .widget a {
        color: white;
      }
    .widget .social li {
      display: inline-block; }
        .widget .social li a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #1A374D;
        display: inline-block;
        position: relative;
        color: #ffffff;
        -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2); }
        .widget .social li a span {
          font-size: 14px;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
        .widget .social li a:hover {
          background-color: #1A374D;
          color: #ffffff; }
    .widget .links li {
      display: block;
      margin-bottom: 10px; }
        .widget .links li a {
        color: #ffffff; }
        .widget .links li a:hover {
          color: #000000;
          text-decoration: underline; }


    .floating-logo {
      position: fixed;
      bottom: 10px; 
      right: 20px;
      width: 60px; 
      height: 60px;
      z-index: 1000; /* Pastikan z-index tidak terlalu tinggi jika tidak diperlukan */
      transition: opacity 0.3s ease; 
      background-color: white;
      display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;

    }
    
    .floating-logo span {
      font-size: 60px; /* Adjust size to fit within the container */
      color: #25D366;
    }   

    .pranic-page{
        /* background: #e8e7dc;        background: radial-gradient(circle, rgba(232, 231, 220, 0.78) 0%, rgba(142, 16, 173, 0.75) 100%); */
        text-align: justify;
    }

    .pranic-page .sub-headline{
        font-style: italic;
        text-align: center;
    }

    .pranic-page .pranic-card{
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.721) ;
        padding: 15px;
        backdrop-filter: blur(6px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }
    
  .img-pranic {
    width: 100vw; /* Lebar penuh viewport */
    height: 40vh; /* Tinggi yang tetap */
    overflow: hidden; /* Potong bagian yang melampaui batas */ 
  }
  
  .img-pranic img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Menjaga proporsi gambar */
    object-position: center; /* Menempatkan gambar di tengah */
    display: block; /* Menghapus spasi bawah default gambar */
  }
  /* Responsif untuk tampilan tablet */
  @media (max-width: 768px) {
    .img-pranic {
        height: 30vh; /* Menurunkan tinggi untuk tampilan tablet */
    }
  }

  /* Responsif untuk tampilan smartphone */
  @media (max-width: 576px) {
    .img-pranic {
        height: 30vh; /* Menurunkan tinggi untuk tampilan smartphone */
    }
  }

  .section-end {
  position: relative; /* penting untuk kontrol layering */
  background-image: url("../img/location.png");
  background-repeat: no-repeat;     /* biar gambar tidak berulang */
  background-position: center;      /* posisi gambar di tengah */
  background-size: cover;           /* gambar memenuhi area */
  color: white;
  text-align: center;
  padding: 5rem 0;
  
}


.section-end.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1; /* overlay tetap di bawah teks */
}

.section-end * {
  position: relative;
  z-index: 2; /* pastikan semua teks dan tombol muncul di atas overlay */
}

.section-end a.submit-btn {
  display: inline-block;   /* pastikan margin bisa jalan */
  margin-top: 1.5rem;      /* jarak atas tombol */
  z-index: 2;              /* biar di atas overlay */
  position: relative;      /* biar ikut alur dokumen */
}



.location-icon {
  font-size: 1.5rem;   /* ukuran sedang */
  margin-right: 0.5rem; /* jarak ikon ke teks */
  color: #ffffff;      /* pastikan putih */
  vertical-align: middle; /* sejajar dengan teks */
}


.cta-end{
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;  
    z-index: 10;
    /* background: #fff; */
    border-radius: 16px;
    color: white;
    padding: 1rem;
}

.cta-end a.submit-btn {
  display: inline-block;   /* pastikan margin bisa jalan */
  margin-top: 1.5rem;      /* jarak atas tombol */
  z-index: 2;              /* biar di atas overlay */
  position: relative;      /* biar ikut alur dokumen */
}

.submit-btn-form {
    padding: 1.2rem 3rem;
    background:rgb(199, 166, 228);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* .location-card {
            padding: 2rem;
        }

        .location-card h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .location-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .location-card li {
            text-decoration: none;
        }

        
.location-card ul {
  list-style: none;  
  padding: 0;
  margin: 0;
}

.location-card li {
  font-size: 0.95rem;
  color: #555;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #eee;
}

.location-card li:last-child {
  border-bottom: none;
}


.location-card li::before {
  content: "📍";  
  font-size: 1rem;
  color: #5c9ded;
}
.location-card li:nth-child(2)::before {
  content: "📞"; 
} */
.healer-item {
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.healer-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-card {
  padding: 20px;
}

.location-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
}

.location-card h4 i {
  margin-right: 10px;
  color: #7600b6;
}

.location-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-card li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
}

.location-card li i {
  margin-right: 10px;
  color: #7600b6;
  font-size: 1rem;
  flex-shrink: 0;
}

.location-card a {
  text-decoration: none;
  color:#7600b6;
  transition: color 0.2s ease;
}

.location-card a:hover {
  color: #7600b6;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .healer-item {
    margin: 10px auto;
  }
  .location-card h4 {
    font-size: 1rem;
  }
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; 
  padding: 1rem;
}


.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Tanda petik dekoratif */
.testimonial-card::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f10d"; /* fa-quote-left */
  font-size: 2rem;
  color: #5c9ded;
  opacity: 0.3;
}


/* Text */
.testimonial-text {
  font-style: italic;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Name & Role */
.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #888;
}

.table-container {
  width: 100%;
  overflow-x: auto; /* jaga kalau ada kasus tabel tetap kepanjangan */
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* penting biar kolom ikut lebar tabel */
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* penting */
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  white-space: normal; 
  word-wrap: break-word; 
  word-break: break-word; /* tambahin ini */
}

th:nth-child(1), td:nth-child(1) { width: 5%; }   /* No */
th:nth-child(2), td:nth-child(2) { width: 15%; }  /* Tanggal */
th:nth-child(3), td:nth-child(3) { width: 15%; }  /* Nama */
th:nth-child(4), td:nth-child(4) { width: 20%; }  /* Email */
th:nth-child(5), td:nth-child(5) { width: 25%; }  /* Isi Review */
th:nth-child(6), td:nth-child(6) { width: 10%; }  /* Status */
th:nth-child(7), td:nth-child(7) { width: 10%; }  /* Aksi */


.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.responsive-table thead {
  background: #4a6cf7;
  color: #fff;
  text-align: left;
}

.responsive-table th,
.responsive-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.responsive-table tbody tr:hover {
  background: #f9f9ff;
}

.responsive-table .actions {
  /* display: flex; */
  gap: 6px;
  padding: 10px;
}

.btn {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease-in-out;
}
.btn-primary { background: #4a6cf7; }
.btn-warning { background: #f0ad4e; }
.btn-danger { background: #e74c3c; }
.btn-primary:hover { background: #3b5ad8; }
.btn-warning:hover { background: #d9902e; }
.btn-danger:hover { background: #c0392b; }

.status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}
.status.pending { background: #fff3cd; color: #856404; }
.status.approved { background: #d4daed; color: #151c57; }
.status.rejected { background: #f8d7da; color: #721c24; }
/* Responsive untuk tablet & HP */
@media (max-width: 992px) { /* tablet ke bawah */
  .responsive-table {
    border: 0;
  }

  .responsive-table thead {
    display: none; /* sembunyikan header */
  }

  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6px 8px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    word-wrap: break-word;
    word-break: break-word;
  }

  .responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    flex: 0 0 40%; /* label tetap rata kiri */
    color: #4a6cf7;
    padding-right: 10px;
  }

  .responsive-table td:last-child {
    border-bottom: none;
  }
}

/* Extra small device (HP <480px) → biar label & isi stack */
@media (max-width: 480px) {
  .responsive-table td {
    flex-direction: column;
    align-items: flex-start;
  }

  .responsive-table td::before {
    margin-bottom: 4px;
    flex: unset;
  }
}

/* Style umum untuk badge-button */
.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Variasi warna */
.badge-success {
  background: #28a745; /* hijau */
  color: #fff;
}
.badge-success:hover:not(:disabled) {
  background: #218838;
}

/* Warna pending */
.badge-warning {
  background: #ffc107; /* kuning */
  color: #212529;
}
.badge-warning:hover:not(:disabled) {
  background: #e0a800;
}

/* Warna rejected */
.badge-danger {
  background: #dc3545; /* merah */
  color: #fff;
}
.badge-danger:hover:not(:disabled) {
  background: #c82333;
}

/* Disabled state */
.badge:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* === Admin Dashboard Layout === */
.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Admin Card === */
.admin-card {
  background: #520b707f;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* === Card Content === */
.admin-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.admin-card-content {
  padding: 2rem;
  text-align: center;
}

.admin-card-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Optional: Warna berbeda untuk heading secondary */
.text-secondary {
  color: #6c757d;
}

/* === Logout Section === */
.logout {
  margin-top: 3rem;
}

.logout .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.logout .btn-danger {
  background-color: #dc3545;
  border: none;
}

.logout .btn-danger:hover {
  background-color: #bb2d3b;
  transform: scale(1.05);
}


.gal-item {
  display: block;
  margin-bottom: 8px; }
  .gal-item img {
    border-radius: 4px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 1; }
  .gal-item:hover img {
    opacity: .5; }


    .ilmiah-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ilmiah-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.ilmiah-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ilmiah-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ilmiah-source {
  font-size: 0.9rem;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.ilmiah-source a {
  color: #0077b6;
  font-weight: 500;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.2s ease;
}

.ilmiah-source a:hover {
  color: #023e8a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ilmiah-card {
    padding: 15px;
  }
  .ilmiah-card h6 {
    font-size: 0.95rem;
  }
  .ilmiah-card p {
    font-size: 0.9rem;
  }
}

