/* Homepage Spectacular Styles */

/* Hero Background with Animated Shapes */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(85, 221, 255, 0.1), rgba(74, 163, 255, 0.1));
    backdrop-filter: blur(20px);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 28s;
    animation-direction: reverse;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    animation-delay: -20s;
    animation-duration: 22s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 25%;
    animation-delay: -8s;
    animation-duration: 26s;
    animation-direction: reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translateY(30px) rotate(240deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.7;
    }
}

/* Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #55ddff;
    border-radius: 50%;
    box-shadow: 0 0 6px #55ddff;
    animation: particleFloat 15s infinite linear;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
}

/* Logo with Glow Effect */
.hero-logo {
    position: relative;
    display: inline-block;
}

.logo-container {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(85, 221, 255, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(85, 221, 255, 0.5));
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(85, 221, 255, 0.3);
    transition: all 0.3s ease;
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(85, 221, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(85, 221, 255, 0.6);
    }
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(85, 221, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Title */
.hero-title-container {
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #55ddff, #ffffff, #4aa3ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Typewriter Effect */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.typing-text {
    color: #55ddff;
    font-weight: 600;
}

.cursor {
    color: #55ddff;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Hero Description */
.hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.hero-description .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-text {
    color: #55ddff;
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #55ddff, transparent);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.hero-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0;
}

.hero-location i {
    color: #55ddff;
}

/* CTA Buttons */
.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #55ddff, #4aa3ff);
    color: white;
    box-shadow: 0 8px 25px rgba(85, 221, 255, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #4aa3ff, #3d8bff);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(85, 221, 255, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #55ddff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon,
.btn-hero-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #55ddff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tech Icons Floating */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(85, 221, 255, 0.3);
    animation: techFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    color: rgba(85, 221, 255, 0.8);
    transform: scale(1.2);
}

/* Left side icons */
.tech-icon-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 25%;
    left: 12%;
    animation-delay: -1s;
}

.tech-icon-3 {
    top: 40%;
    left: 6%;
    animation-delay: -2s;
}

.tech-icon-4 {
    top: 55%;
    left: 14%;
    animation-delay: -0.5s;
}

.tech-icon-5 {
    top: 70%;
    left: 9%;
    animation-delay: -1.5s;
}

.tech-icon-6 {
    top: 85%;
    left: 13%;
    animation-delay: -2.5s;
}

/* Right side icons */
.tech-icon-7 {
    top: 12%;
    right: 10%;
    animation-delay: -0.3s;
}

.tech-icon-8 {
    top: 28%;
    right: 14%;
    animation-delay: -1.3s;
}

.tech-icon-9 {
    top: 44%;
    right: 8%;
    animation-delay: -2.3s;
}

.tech-icon-10 {
    top: 60%;
    right: 12%;
    animation-delay: -0.8s;
}

.tech-icon-11 {
    top: 76%;
    right: 15%;
    animation-delay: -1.8s;
}

.tech-icon-12 {
    top: 88%;
    right: 9%;
    animation-delay: -2.8s;
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Tech Icons Mobile Grid */
.tech-icons-mobile {
    position: relative;
    z-index: 1;
    background: rgb(var(--bs-dark-rgb));
    padding: 4rem 0;
    margin-top: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(85, 221, 255, 0.3);
    transition: all 0.3s ease;
    animation: techMobileFloat 4s ease-in-out infinite;
}

.tech-icon-mobile:nth-child(odd) {
    animation-delay: -1s;
}

.tech-icon-mobile:nth-child(even) {
    animation-delay: -2s;
}

.tech-icon-mobile i {
    font-size: 2.5rem;
    color: rgba(85, 221, 255, 0.8);
    transition: all 0.3s ease;
}

.tech-icon-mobile:hover {
    background: rgba(85, 221, 255, 0.1);
    border-color: rgba(85, 221, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(85, 221, 255, 0.2);
}

.tech-icon-mobile:hover i {
    color: rgba(85, 221, 255, 1);
    transform: scale(1.1);
}

@keyframes techMobileFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description .lead {
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description .lead {
        font-size: 1rem;
    }
    
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .hero-cta .d-flex {
        gap: 15px !important;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 280px;
    }
    
    .tech-icon-mobile {
        width: 70px;
        height: 70px;
    }
    
    .tech-icon-mobile i {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-name {
        font-size: 1.8rem;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .shape {
        display: none;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 250px;
    }
    
    .tech-icon-mobile {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon-mobile i {
        font-size: 1.8rem;
    }
    
    .tech-icons-mobile {
        padding: 3rem 0;
    }
}