/*Import Jakarta Sans font*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');
@import "tailwindcss";

/*Page structure starts here*/

:root /*Colours*/
{ 
    --primary: #3b82f6;
    --bg-dark: #050505;
}

body 
{
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}


.glass-card /*Glassmorphism*/
{
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

 /*BG Effects start here*/
.animated-bg
{
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #111827 0%, #050505 100%);
    z-index: -2;
}

.blob 
{
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    animation: float 15s infinite alternate;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(50vw, 30vh); }
}
/*BG Effects end here*/


/*Page content starts here*/
.gradient-glow 
{
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.btn-primary {
    background: white;
    color: black;
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.input-field {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-field:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.btn-submit {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    padding: 20px;
    border-radius: 16px;
    font-weight: 800;
    transition: 0.3s;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}
/*Page content ends here*/