
/* ===== HERO ILLUSTRATION (CUSTOM) ===== */
.hero-composition {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Organic Blobs */
.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.8;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 209, 102, 0.2); /* Accent Color */
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 40px;
    left: 40px;
    animation-delay: -4s;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0) rotate(0deg); }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: translate(10px, -10px) rotate(10deg); }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: translate(-10px, 10px) rotate(-5deg); }
}

/* Main Image Frame */
.hero-image-frame {
    width: 320px;
    height: 420px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 200px 200px 20px 20px; /* Arch shape */
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

/* Hero Image Overlay */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
    border-radius: 200px 200px 20px 20px;
}

/* Floating Glass Cards */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 5;
    min-width: 180px;
}

.glass-card-1 {
    top: 15%;
    left: -10%;
    transform: rotate(-5deg);
}

.glass-card-2 {
    bottom: 15%;
    right: -5%;
    transform: rotate(5deg);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

