/* Hero Section & Logo Styling */

/* Logo Section */
.logo-section {
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    border-radius: 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-frame {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.2) 0%,
        rgba(0, 210, 255, 0.2) 50%,
        rgba(157, 80, 187, 0.2) 100%);
    padding: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: 
        drop-shadow(0 10px 20px rgba(255, 0, 128, 0.3))
        drop-shadow(0 0 30px rgba(0, 210, 255, 0.2))
        brightness(1.1)
        contrast(1.05);
    transition: transform 0.5s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

/* Logo Glow Effect */
.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 40px;
    background: radial-gradient(circle at center,
        rgba(255, 0, 128, 0.3) 0%,
        rgba(0, 210, 255, 0.2) 40%,
        transparent 70%);
    filter: blur(25px);
    z-index: -1;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

/* Logo Sparkle */
.logo-sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.logo-sparkle::before,
.logo-sparkle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FF0080, #00D2FF);
    border-radius: 50%;
    filter: blur(2px);
    animation: sparkleMove 4s linear infinite;
}

.logo-sparkle::before {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.logo-sparkle::after {
    bottom: 10px;
    left: 10px;
    animation-delay: 2s;
}

/* Company Title */
.company-title {
    text-align: center;
    margin: 20px 0 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.title-gradient {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, 
        #FF0080 0%,
        #FF8C00 25%,
        #00D2FF 50%,
        #9D50BB 75%,
        #FF512F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 5px 30px rgba(255, 0, 128, 0.4),
        0 0 60px rgba(0, 210, 255, 0.3);
    display: inline-block;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.title-glint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transform: translateX(-100%);
    animation: glintMove 3s ease-in-out infinite;
    z-index: 1;
    border-radius: 10px;
}

/* Company Tagline */
.company-tagline {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-tagline::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF0080 50%, 
        transparent 100%);
    border-radius: 3px;
}

/* Description Section */
.description-section {
    max-width: 800px;
    margin: 60px auto 50px;
    text-align: center;
    position: relative;
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 0, 128, 0.1);
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        #FF0080 0%, 
        #FF8C00 33%, 
        #00D2FF 66%, 
        #9D50BB 100%);
}

/* Hindi Text Styling */
.hindi-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hindi-text p {
    margin: 0;
    padding: 0;
}

/* Decorative Elements */
.description-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center,
        rgba(255, 0, 128, 0.1) 0%,
        rgba(0, 210, 255, 0.05) 40%,
        transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Keyframe Animations */
@keyframes logoGlow {
    0% {
        opacity: 0.6;
        filter: blur(25px);
    }
    100% {
        opacity: 0.9;
        filter: blur(30px);
    }
}

@keyframes sparkleMove {
    0%, 100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

@keyframes glintMove {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Background Pattern */
.description-section .hindi-text::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF0080, #00D2FF);
    border-radius: 20px;
    opacity: 0.1;
    filter: blur(15px);
    z-index: 1;
}

.description-section .hindi-text::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9D50BB, #FF8C00);
    border-radius: 15px;
    opacity: 0.1;
    filter: blur(15px);
    z-index: 1;
}