/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #1f1f1f, #27293d);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

/* Animation base */
.fade-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}
.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00d4ff;
    text-shadow: 0px 0px 10px rgba(0, 212, 255, 0.5);
}

/* Subtitle */
.subtitle {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-interview {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}

.btn-practice {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

/* Button hover effects */
.btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* Animation base */
.fade-slide-up {
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotateX(10deg);
    animation: fadeSlideUpBounce 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}
.delay-2 {
    animation-delay: 0.6s;
}

/* Bounce + scale effect */
@keyframes fadeSlideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotateX(10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05) rotateX(0deg);
    }
    80% {
        opacity: 1;
        transform: translateY(3px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }

}

/* Heading */
h1 {
    font-size: 4.2rem; /* Bigger title */
    margin-bottom: 15px;
    color: #00d4ff;
    text-shadow: 0px 0px 15px rgba(0, 212, 255, 0.6);
    line-height: 1.2;
}

/* Subtitle */
.subtitle {
    font-size: 1.4rem; /* Bigger subtitle */
    color: #ccc;
    margin-bottom: 35px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
