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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: #4B0082;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: #4B0082;
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-custom {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

/* Pricing Cards */
.pricing-card {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
}

.pricing-card.popular {
    background: #4B0082;
    color: white;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.07);
}

.price {
    font-size: 3rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #4B0082;
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
}
