/* =========================================
   Base & CSS Variables
   ========================================= */
:root {
    /* Brand Colors */
    --bg-main: #374253;         /* New Background */
    --bg-darker: #2b3341;       /* Slightly darker for contrast areas */
    --bg-card: rgba(43, 51, 65, 0.7); /* Glass effect */
    
    --primary: #D39932;         /* Brand Lettering/Accents (Gold) */
    --primary-glow: rgba(211, 153, 50, 0.4);
    
    --secondary: #c5cfd6;       /* Brand Other things (Silver/Gray) */
    --text-main: #c5cfd6;       /* Using secondary for main reading text */
    --text-heading: #D39932;    /* Using primary for headings */
    --text-muted: rgba(197, 207, 214, 0.7);
    
    /* Typography */
    --font-heading: 'Calibri', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-heading);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px; /* Slightly sharp for tech feel */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow) inset;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(43, 51, 65, 0.85); /* Adjusted for new dark tone */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(211, 153, 50, 0.1); /* Subtle gold border */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 48px;
    width: auto;
    background-color: #f5f5f5; /* Light gray background for logo */
    padding: 6px 12px;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.header .logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1.5rem;
    border-left: 1px solid rgba(197, 207, 214, 0.2);
    padding-left: 1.5rem;
}

.lang-switcher a {
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    line-height: 1;
    filter: grayscale(100%);
}

.lang-switcher a:hover,
.lang-switcher a.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .lang-switcher {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* offset header */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(211, 153, 50, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(197, 207, 214, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-glow);
    z-index: -1;
    filter: blur(8px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary);
    background: rgba(197, 207, 214, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(211, 153, 50, 0.2);
}

.badge i {
    color: var(--primary);
}

/* Hero "Image" - Tech Shape CSS art for premium feel */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-shape {
    position: relative;
    width: 350px;
    height: 350px;
    background: #f5f5f5; /* Light gray background */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 1px solid rgba(211, 153, 50, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(211, 153, 50, 0.1);
    animation: morph 8s ease-in-out infinite alternate;
}

.hero-icon-img {
    width: 400px; /* Increased from 200px */
    max-width: 90vw; /* Prevent it from overflowing on very small screens */
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(211, 153, 50, 0.4));
}

.glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary); /* Changed from primary (gold) to secondary (light gray) */
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

/* Animations */
@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg) translate(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(20px) rotate(-360deg); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 2.5rem auto; }
    .hero-actions { justify-content: center; }
    .trust-badges { justify-content: center; }
    .hero-image { margin-top: 2rem; }
}

@media (max-width: 576px) {
    .hero-actions { 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .tech-shape {
        width: 260px;
        height: 260px;
    }
    .hero-text h1 {
        font-size: 2.3rem;
    }
}

/* =========================================
   Section Utility Classes
   ========================================= */
section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.text-center { text-align: center; }

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    /* Fix the broken ::after absolute positioning glow when text wraps on mobile */
    .section-header h2 .highlight::after {
        display: none;
    }
    .section-header h2 .highlight {
        text-shadow: 0 0 15px rgba(211, 153, 50, 0.6);
    }
}

/* =========================================
   Services Section
   ========================================= */
.services { background-color: var(--bg-main); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card {
        padding: 1.5rem 1rem; /* Reduced padding to fit 2 columns on small screens */
    }
    .service-card h3 {
        font-size: 1.1rem; /* Smaller text for fit */
    }
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(211, 153, 50, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(211, 153, 50, 0.05), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(211, 153, 50, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(211, 153, 50, 0.1);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 153, 50, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(211, 153, 50, 0.2);
    transition: all 0.4s ease;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 0 15px var(--primary-glow);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================
   Detailed Services Section (In-Depth Solutions)
   ========================================= */
.detailed-services {
    background-color: var(--bg-darker);
    position: relative;
    padding-top: 2rem; /* Reduce top padding since it follows About section */
}

.detailed-service-block {
    margin-bottom: 6rem;
}

.detailed-service-block:last-child {
    margin-bottom: 0;
}

.detailed-service-block.reverse .about-image {
    order: 1; /* By default in Grid, items appear in source order. */
}

.detailed-service-block.reverse .about-content {
    order: 2;
}

@media (min-width: 993px) {
    /* For desktop, reverse the layout visually */
    .detailed-service-block.reverse .about-image {
        order: 2;
    }
    .detailed-service-block.reverse .about-content {
        order: 1;
    }
}

@media (max-width: 992px) {
     /* On mobile, all blocks should be grid with consistent image-first ordering */
    .detailed-service-block {
        margin-bottom: 4rem;
    }
    .detailed-service-block.reverse {
        /* Keep it as grid from .about-container, removing the flex override */
        display: grid;
    }
    /* Force Image to always be on top for mobile across all blocks */
    .detailed-service-block .about-image,
    .detailed-service-block.reverse .about-image,
    .about-container .about-image {
        order: -1 !important;
        margin-bottom: 0 !important; 
    }
    .detailed-service-block .about-content,
    .detailed-service-block.reverse .about-content,
    .about-container .about-content {
        order: 1 !important;
    }
}

/* =========================================
   About Section
   ========================================= */
.about {
    background-color: var(--bg-darker);
    position: relative;
}
.about::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 153, 50, 0.2), transparent);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.image-wrapper { position: relative; }
.rounded-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(211, 153, 50, 0.1);
}
.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}
.experience-badge {
    background: linear-gradient(135deg, var(--bg-main), var(--bg-darker));
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px var(--primary-glow);
}
.experience-badge .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.2;
}
.about-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-content .lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.features-list { list-style: none; margin-bottom: 2rem; margin-top: 1.5rem; }
.features-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 1rem; }
.features-list i { color: var(--primary); margin-top: 5px; }
.mt-4 { margin-top: 1rem; }

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { margin-bottom: 0; display: flex; justify-content: center; width: 100%; }
    .about-content { width: 100%; }
    .about-content .btn {
        display: block;
        margin: 2rem auto 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .company-concept-content { text-align: center; }
}

/* =========================================
   Contact Section
   ========================================= */
.contact { background-color: var(--bg-main); }
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.detail-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(211, 153, 50, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.detail-item h4 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.detail-item p { color: var(--text-muted); }

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(211, 153, 50, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(43, 51, 65, 0.5);
    border: 1px solid rgba(197, 207, 214, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(211, 153, 50, 0.2);
    background: rgba(43, 51, 65, 0.8);
}
.submit-btn { width: 100%; padding: 1rem; margin-top: 1rem; }
.form-success-msg { color: #4ade80; margin-top: 1rem; text-align: center; font-weight: 500; }
.hidden { display: none; }

@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #2b3341;
    padding-top: 5rem;
    border-top: 1px solid rgba(211, 153, 50, 0.1);
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-col .logo { display: block; margin-bottom: 1.5rem; }
.footer-logo { width: 200px; height: auto; }
.footer-col p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(197, 207, 214, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--secondary);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--primary);
    color: var(--bg-main);
    transform: translateY(-3px);
}
.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 30px; height: 2px;
    background: var(--primary);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(211, 153, 50, 0.1);
    background-color: #242b36;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================
   Reveal Animations (Scroll)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Tech Morph Animation (Company Concept)
   ========================================= */
.tech-anim-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer rotating tech ring */
.tech-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    animation: tech-spin 10s linear infinite;
    opacity: 0.8;
}

/* Gray tech ring */
.tech-ring-gray {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid rgba(197, 207, 214, 0.15);
    border-left: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    animation: tech-spin-reverse 20s linear infinite;
}

/* Inner counter-rotating ring */
.tech-ring-inner {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 2px dotted rgba(211, 153, 50, 0.6);
    animation: tech-spin-reverse 15s linear infinite;
}

/* Center Glowing Pulse */
.tech-pulse {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 153, 50, 0.25) 0%, transparent 70%);
    animation: tech-pulse-anim 2s ease-in-out infinite alternate;
}

/* Morphing Icons inside the tech ring */
.tech-icons {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-icon {
    position: absolute;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0;
    animation: tech-icon-morph 15s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(211, 153, 50, 0.5));
}

.tech-icon:nth-child(1) { animation-delay: 0s; }  /* CCTV */
.tech-icon:nth-child(2) { animation-delay: 3s; }  /* Microchip */
.tech-icon:nth-child(3) { animation-delay: 6s; }  /* Shield */
.tech-icon:nth-child(4) { animation-delay: 9s; }  /* Connectivity */
.tech-icon:nth-child(5) { animation-delay: 12s; } /* Fingerprint */

@keyframes tech-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes tech-spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes tech-pulse-anim {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

@keyframes tech-icon-morph {
  0% { opacity: 0; transform: scale(0.8); filter: blur(4px); }
  6% { opacity: 1; transform: scale(1); filter: blur(0px) drop-shadow(0 0 12px rgba(211, 153, 50, 0.9)); }
  14% { opacity: 1; transform: scale(1); filter: blur(0px) drop-shadow(0 0 12px rgba(211, 153, 50, 0.9)); }
  20% { opacity: 0; transform: scale(1.2); filter: blur(4px); }
  100% { opacity: 0; transform: scale(0.8); filter: blur(4px); }
}
