@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MuseoModerno", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary: #0a0c85;
    --secondary: #2e3192;
    --accent: #00aeff;
    --light: #ffffff;
    --dark: #0c0f30;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #0c0f30, #1a1f5e, #2e3192);
    color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 10px;
}

/* Background Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.bg-element-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 168, 241, 0.3) 0%, rgba(0, 195, 255, 0) 70%);
    top: -200px;
    left: -200px;
    animation: float 15s infinite ease-in-out;
}

.bg-element-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 9, 247, 0.4) 0%, rgba(10, 12, 133, 0) 70%);
    bottom: -150px;
    right: -100px;
    animation: float 18s infinite ease-in-out;
}

.bg-element-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 20, 71, 0.4) 0%, rgba(46, 49, 146, 0) 70%);
    top: 50%;
    left: 80%;
    animation: float 12s infinite ease-in-out;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

/* Main Container */
.container {
    max-width: 600px;
    width: 100%;
    background: rgba(10, 12, 30, 0.048);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.411),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 10px 30px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* Header Styling */
header {
    text-align: center;
    padding: 30px 10px 5px;
    position: relative;
}

.logo-container {
    position: relative;
    width: 150px;
    max-height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite ease-in-out;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--light), #a8b1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.highlight {
    color: var(--accent);
    font-weight: 500;
}

/* Buttons Styling */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 40px 50px;
    justify-content: center;
    align-items: center;
}

.buttons a{
    text-decoration: none;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 20px rgba(10, 12, 133, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    width: 350px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #07024d);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(10, 12, 133, 0.6),
        0 0 25px rgba(0, 225, 255, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

.btn i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.btn-1 {
    background: linear-gradient(90deg, #2a0d8f, #6a11cb);
}

.btn-2 {
    background: linear-gradient(90deg, #0c3483, #2a75d1);
}

.btn-3 {
    background: linear-gradient(90deg, #00b09b, #96c93d);
}

.btn span {
    position: relative;
    z-index: 2;
}

/* Animation Effects */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes floatParticle {
    to {
        transform: translateY(-100vh);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .buttons {
        padding: 20px;
    }

    .btn {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 22px;
    }

    header {
        padding: 30px 20px 15px;
    }
    body{
        height: 100dvh;
    }
}

.fa-phone-alt{
    rotate: 100deg;
}

