:root {
    --bg-color: #0d0f14;
    --text-primary: #ffffff;
    --text-secondary: #9ba1a6;
    --accent-blue: #00d2ff;
    --accent-orange: #ff7b00;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem;
}

/* Background animated orbs */
.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    top: -50px;
    left: -50px;
    background-color: rgba(0, 210, 255, 0.15);
}

.orb-2 {
    bottom: -50px;
    right: -50px;
    background-color: rgba(255, 123, 0, 0.12);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.container {
    width: 100%;
    max-width: 800px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Typography styles */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease backwards;
}

.logo-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    display: none;
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #a0a5aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    background: linear-gradient(45deg, var(--accent-blue), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shared Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Main Content Animations */
.hero-section {
    text-align: center;
    animation: fadeInUp 0.8s ease backwards 0.2s;
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Tags */
.materials-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-petg {
    color: #ff3366;
    border-color: rgba(255, 51, 102, 0.3);
}

.tag-pla {
    color: #00ffcc;
    border-color: rgba(0, 255, 204, 0.3);
}

.tag-vsilk {
    color: #cc66ff;
    border-color: rgba(204, 102, 255, 0.3);
}

/* Services Section */
.services-section {
    animation: fadeInUp 0.8s ease backwards 0.4s;
}

.services-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-orange), #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Service Links */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link .service-item {
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.1);
}

.service-link:hover .service-item {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.2);
    border-color: rgba(0, 210, 255, 0.4);
}

/* Projects Page Specific */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.back-btn:hover {
    color: var(--accent-blue);
}

.page-header-section {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease backwards 0.3s;
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Links Section */
.links-section {
    text-align: center;
    animation: fadeInUp 0.8s ease backwards 0.6s;
    margin-top: 2rem;
}

.links-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.email {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.shopee {
    background: linear-gradient(135deg, #ee4d2d, #ff7337);
    box-shadow: 0 4px 15px rgba(238, 77, 45, 0.3);
}

.social-btn i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: fadeIn 1s ease backwards 1s;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .logo-container {
        width: 140px;
        height: 140px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-section h3 {
        font-size: 1.5rem;
    }

    .social-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .social-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .glow-orb {
        width: 200px;
        height: 200px;
        filter: blur(80px);
    }
}