:root {
    --primary-color: #8A2BE2; /* Purple */
    --secondary-color: #fbae40;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    /*line-height: 1.6;*/
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    background-image: url('https://goready.in/wp-content/uploads/2025/11/Event-Background-Image.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 5rem;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
}

.hero-title .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 25px rgba(251, 174, 64, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1rem 0 2.5rem;
    animation: slideInUp 1s ease-out 0.5s backwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: slideInUp 1s ease-out 1s backwards;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
}

.hero-btn.secondary {
    background-image: none;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.hero-btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

#main-content {
    background-color: var(--dark-bg);
    background-image: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a24 100%);
    position: relative;
    z-index: 2;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.main-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4.5rem;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.main-title .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(251, 174, 64, 0.6);
}

.purple-highlight {
    color: var(--primary-color);
   
    
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 400;
    text-decoration: none;
}

.talent-icons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
}

.talent-icons span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.talent-icons span:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.talent-icons .fas {
    color: var(--primary-color);
}

.about-us {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.company-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    width: 45%;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.card-logo {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.card-logo img {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.event-logo {
    text-align: center;
}
.event-logo img {
   
    max-height: 31.5vw;
    min-height: 7rem;
    width: auto;
    
}

.card-header {
    background-image: linear-gradient(90deg, var(--primary-color) 0%, #c328ff 100%);
    padding: 1rem 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

.card-body {
    padding: 1.5rem;
    color: var(--text-muted);
}

.cta-section {
    text-align: center;
    margin: 2rem 0;
}
.know-more-con {
             text-align: center;
    margin: 5% 5%;
}
.know-more-btn {
    text-align: center;        
    display: inline-block;
            text-decoration: none;
            color: #c2c2c2;
            border: 1px solid #c328ff;
             border-radius: 10px;
            padding: 12px 25px;
           
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-image: linear-gradient(90deg, var(--primary-color) 0%, #c328ff 100%);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    border: none;
    
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(251, 174, 64, 0.5);
    background-image: linear-gradient(90deg, var(--secondary-color) 0%, #ffc96f 100%);
    color: var(--dark-bg);
}

.cta-btn .fas {
    transition: transform 0.3s ease;
}

.cta-btn:hover .fas {
    transform: translateX(5px);
}

.back-button-container {
    padding: 1rem 0 0;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--text-muted);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--text-light);
    background-color: rgba(138, 43, 226, 0.2); 
    border-color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    color: var(--text-muted);
    background-color: var(--dark-bg);
}
.whatsapp-sticky-icon {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    text-decoration: none;

    
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease; 
}

.whatsapp-sticky-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


.whatsapp-sticky-icon.is-hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none; 
}


.whatsapp-sticky-icon:hover {
    transform: scale(1.1); 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 768px) {
   
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .main-title {
        font-size: 2.8rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }


    .main-container {
        padding: 1rem;
    }

    header {
        padding: 3rem 1rem;
    }

    .hero-buttons {
        flex-direction: column; 
        align-items: center;
    }
    
    .hero-btn {
        width: 80%; 
        justify-content: center;
    }
    
    .about-us {
        flex-direction: column; 
        gap: 1.5rem;
        margin: 3rem 0;
        text-align: center;
        align-items: center;
    }
    
    .company-card {
        width: 95%; 
        min-width: unset;
    }

    .talent-icons {
        gap: 1rem;
    }
    
    .talent-icons span {
        font-size: 0.9rem;
    }
}