/* Premium Awwwards Style Hero Widget CSS */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

.aww-hero-container-8c4ec13f {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #050505;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Texture Overlays */
.aww-noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
}

.aww-particles-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Particle dots */
.aww-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #D8FF25;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

.aww-hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    z-index: 3;
}

/* Left side content */
.aww-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.aww-small-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.aww-small-label .neon-line {
    width: 32px;
    height: 1px;
    background-color: #FC761B;
}

.aww-small-label .label-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
/*     color: #D8FF25; */
	color: #FC761B !important;
}

/* Hero Heading */
.aww-hero-heading {
    display: flex;
    flex-direction: column;
    margin: 0 0 32px 0;
    line-height: 0.95;
}

.aww-hero-heading .line-outline {
    font-family: 'Italiana', serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.aww-hero-heading .line-solid {
    font-weight: 800;
    font-size: clamp(3.5rem, 7vw, 6rem);
    letter-spacing: -0.03em;
    color: #ffffff;
    text-transform: uppercase;
}

.aww-hero-heading .neon-text {
    color: #FC761B !important;
}

/* Paragraph spacing & style */
.aww-hero-paragraph {
    max-width: 520px;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: #A5A5A5;
    margin-bottom: 40px;
}

.aww-hero-paragraph strong {
    color: #ffffff;
    font-weight: 600;
}

/* Buttons style */
.aww-button-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.aww-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FC761B !important;
    color: #050505;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 rgba(216, 255, 37, 0);
    cursor: pointer;
}

.aww-primary-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #e5ff54;
    box-shadow: 0 4px 30px rgba(216, 255, 37, 0.35);
}

.aww-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.aww-secondary-btn:hover {
    background-color: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

/* Right Side Interaction Area */
.aww-interactive-right {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Planet Wrapper */
.aww-planet-wrapper {
    position: absolute;
    width: var(--circle-size, 100px);
    height: var(--circle-size, 100px);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

/* Active and Dimming interactions */
.aww-interactive-right.has-active .aww-planet-wrapper {
    opacity: 0.35;
}

.aww-interactive-right.has-active .aww-planet-wrapper.active {
    opacity: 1;
    z-index: 99;
}

/* Specific theme glow coloring */
.aww-planet-wrapper.theme-blue {
    --planet-glow: rgba(0, 149, 255, 0.45);
    --planet-grad-1: #004b93;
    --planet-grad-2: #0095ff;
}

.aww-planet-wrapper.theme-pink {
    --planet-glow: rgba(255, 0, 115, 0.45);
    --planet-grad-1: #8f0043;
    --planet-grad-2: #ff0073;
}

.aww-planet-wrapper.theme-gold {
    --planet-glow: rgba(235, 169, 0, 0.45);
    --planet-grad-1: #7c5000;
    --planet-grad-2: #eba900;
}

.aww-planet-wrapper.theme-purple {
    --planet-glow: rgba(144, 0, 255, 0.45);
    --planet-grad-1: #490085;
    --planet-grad-2: #9000ff;
}

/* Floating animation details */
.aww-planet-wrapper:nth-child(1) { animation: planetFloat1 12s infinite ease-in-out; }
.aww-planet-wrapper:nth-child(2) { animation: planetFloat2 10s infinite ease-in-out; }
.aww-planet-wrapper:nth-child(3) { animation: planetFloat3 14s infinite ease-in-out; }
.aww-planet-wrapper:nth-child(4) { animation: planetFloat4 11s infinite ease-in-out; }

@keyframes planetFloat1 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-15px) rotate(4deg); }
}
@keyframes planetFloat2 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(12px) rotate(-5deg); }
}
@keyframes planetFloat3 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-18px) rotate(6deg); }
}
@keyframes planetFloat4 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(14px) rotate(-3deg); }
}

/* Planet Sphere Graphic */
.planet-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--planet-grad-2) 0%, var(--planet-grad-1) 60%, #000000 100%);
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.85),\n                0 0 25px var(--planet-glow);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.planet-sphere::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23f)' opacity='0.15'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Planet Hover Styling */
.aww-planet-wrapper:hover .planet-sphere,
.aww-planet-wrapper.active .planet-sphere {
    transform: scale(1.15);
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.7),\n                0 0 45px var(--planet-glow);
}

/* Labels placed beautifully right side of planet */
.planet-label {
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.4s ease;
}

.aww-planet-wrapper:hover .planet-label,
.aww-planet-wrapper.active .planet-label {
    color: #ffffff;
    letter-spacing: 0.25em;
    transform: translateY(-50%) translateX(5px);
}

/* Visit circular button overlapping the planet */
.planet-visit-btn {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 15;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.visit-btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #D8FF25;
    color: #050505;
    font-weight: 800;
    font-size: 8px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(216, 255, 37, 0.4);
}

.aww-planet-wrapper:hover .planet-visit-btn,
.aww-planet-wrapper.active .planet-visit-btn {
    opacity: 1;
    transform: scale(1);
}

.planet-visit-btn:hover {
    transform: scale(1.15) !important;
}

/* Glassmorphism Project Card Details */
.planet-project-card {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 25px);
    width: 250px;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aww-planet-wrapper.active .planet-project-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0px);
}

/* Dark glass panel styling */
.card-content-wrapper {
    background: var(--custom-card-bg, rgba(10, 10, 10, 0.75));
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--custom-card-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 22px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6),\n                inset 0 1px 1px rgba(255,255,255,0.1);
}

/* Subtle border glow */
.card-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
    z-index: 4;
}

.planet-project-card .card-category {
    font-size: 8px;
    font-weight: 700;
    color: var(--custom-card-category-color, #A5A5A5);
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.planet-project-card .card-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--custom-eq-color, #D8FF25);
    box-shadow: 0 0 6px var(--custom-eq-color, #D8FF25);
}

.planet-project-card .card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--custom-card-title-color, #ffffff);
    margin: 0 0 18px 0;
}

/* Animated Equalizer Visualizer */
.equalizer-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.eq-bar {
    width: 3px;
    background-color: var(--custom-eq-color, #D8FF25);
    border-radius: 10px;
    height: 3px;
}

.aww-planet-wrapper.active .eq-bar {
    animation: eqAnimate 1s infinite alternate ease-in-out;
}

.aww-planet-wrapper.active .eq-bar.bar1 { animation-delay: 0.1s; animation-duration: 0.8s; }
.aww-planet-wrapper.active .eq-bar.bar2 { animation-delay: 0.3s; animation-duration: 1.1s; }
.aww-planet-wrapper.active .eq-bar.bar3 { animation-delay: 0s;   animation-duration: 0.7s; }
.aww-planet-wrapper.active .eq-bar.bar4 { animation-delay: 0.4s; animation-duration: 0.9s; }

@keyframes eqAnimate {
    0% { height: 3px; }
    100% { height: 18px; }
}

/* Scroll Bottom Centered Indicator */
.aww-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    pointer-events: none;
}

.scroll-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-dot {
    width: 1px;
    height: 25px;
    background: linear-gradient(to bottom, #D8FF25, transparent);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .aww-hero-wrapper {
        grid-template-columns: 1fr;
        padding-top: 120px;
        gap: 60px;
    }
    .aww-content-left {
        align-items: center;
        text-align: center;
    }
    .aww-hero-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    .aww-button-group {
        justify-content: center;
    }
    .aww-interactive-right {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .aww-interactive-right {
        display: none; /* Hide interactive planets system on small devices to guarantee responsive UX */
    }
    .aww-hero-wrapper {
        grid-template-columns: 1fr;
        padding: 100px 20px;
    }
}
