/* Existing CSS code */


.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, #0a0a2e, #1a1a3a);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stars-background, .stars-midground, .stars-foreground {
    position: absolute;
    inset: 0;
}

.stars-background {
    background-image: 
        radial-gradient(1px 1px at 25% 25%, white 1px, transparent 0),
        radial-gradient(1px 1px at 50% 50%, white 1px, transparent 0),
        radial-gradient(1px 1px at 75% 75%, white 1px, transparent 0);
    background-size: 550px 550px;
    animation: drift 240s linear infinite;
}

.star {
    position: absolute;
    border-radius: 50%;
    animation: twinkle var(--twinkle-duration) infinite;
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%);
    animation: shoot 3s linear infinite;
    opacity: 0;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100%, -100%); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes shoot {
    0% { transform: translateX(0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 300px)); opacity: 0; }
}

.company-logo-area {
    position: absolute;
    top: 13%;
    left: 50%;
    width: 195px;
    height: 195px;
    background: url('../images/transparentlogo.png') no-repeat center/contain;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}
.company-logo-area img {
    max-width: 100%;
    height: auto;
}


.content {
    background: rgba(1, 33, 74, 0.6);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    border: 1px solid rgba(76, 33, 247, 0.4);
    box-shadow: 0 8px 32px 0 rgba(47, 134, 233, 0.3);
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeIn 1s ease-out;
    max-width: 800px;
    margin-top: 220px; /* Added margin-top to create space for the logo */
}

.tech-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    transition: transform 1s ease-in-out;
    z-index: 2;
}

.tech-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.nebula {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.2),
        transparent,
        rgba(59, 130, 246, 0.2));
    animation: pulse 8s infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: #2563eb;
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f2e4f0;
    color: white;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
}

/* Media queries for smaller devices */
@media (max-width: 768px) {
    .hero {
        padding: 2rem;
    }

    .company-logo-area {
        width: 180px;
        height: 180px;
        top: 13%;
    }
    .company-logo-area img {
      max-width: 100%;
        height: auto;
    }




    .content {
        padding: 1.5rem;
        margin-top: 180px;
        max-width: 90%;
    }

    h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .subtitle {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        max-width: 90%;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* Media queries for smallest devices */
@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }

    .company-logo-area {
        width: 180px;
        height: 180px;
     top: 20%;
      
        left: 50%;
        transform: translateX(-50%);
    }

    .company-logo-area img {
       max-width: 100%;
        height: auto;
    }

    .content {
        padding: 1rem;
        margin-top: 150px;
        max-width: 100%;
    }

 
   
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width : 390px) {
    .hero {
        padding: 1rem;
    }

    .company-logo-area {
        width: 160px;
        height: 160px;
        top: 16%;
      
        left: 50%;
        transform: translateX(-50%);
    }

    .company-logo-area img {
       max-width: 100%;
        height: auto;
    }

    .content {
        padding: 1rem;
        margin-top: 150px;
        max-width: 100%;
    }

 
   
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}