/* Home Section */
#home {
    min-height: 91vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 10%;
    background: linear-gradient(135deg, #f8f9fd 0%, #d4d5e8 100%);
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(75, 92, 251, 0.15), transparent 70%);
    animation: pulse 6s infinite;
    z-index: 0;
}

#home::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.1), rgba(108, 127, 242, 0.1));
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    animation: float 8s infinite ease-in-out;
    z-index: 0;
}

.about-3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 1500;
    color: #4b5cfb;
}

/* Floating Bubbles */
.bubble-2 {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.08), rgba(75, 92, 251, 0.08));
    border-radius: 50%;
    top: 5%;
    left: 2%;
    animation: float 10s infinite ease-in-out;
    animation-delay: -2s;
    z-index: 0;
}

.bubble-3 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.12), rgba(50, 71, 142, 0.1));
    border-radius: 50%;
    top: 8%;
    right: 3%;
    animation: float 12s infinite ease-in-out;
    animation-delay: -4s;
    z-index: 0;
}

.bubble-4 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.1), rgba(75, 92, 251, 0.08));
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: float 9s infinite ease-in-out;
    animation-delay: -6s;
    z-index: 0;
}

.bubble-5 {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.1), rgba(108, 127, 242, 0.08));
    border-radius: 50%;
    top: 60%;
    right: 8%;
    animation: float 11s infinite ease-in-out;
    animation-delay: -3s;
    z-index: 0;
}

.bubble-6 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.09), rgba(108, 127, 242, 0.09));
    border-radius: 50%;
    top: 40%;
    left: 3%;
    animation: float 10.5s infinite ease-in-out;
    animation-delay: -5s;
    z-index: 0;
}

.bubble-7 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.1), rgba(75, 92, 251, 0.1));
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    animation: float 8.5s infinite ease-in-out;
    animation-delay: -1s;
    z-index: 0;
}

.bubble-8 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.09), rgba(108, 127, 242, 0.08));
    border-radius: 50%;
    top: 15%;
    left: 17%;
    animation: float 9.5s infinite ease-in-out;
    animation-delay: -7s;
    z-index: 0;
}

/* Hero Content */
.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out;
}

#home h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

#home p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}
