/* Custom CSS with Purple Theme */
:root {
    --primary: #7b29cc;
    --primary-dark: #5e1c9d;
    --primary-light: #9d57e8;
    --secondary: #ff7e5f;
    --accent: #ffc857;
    --light: #f8f9fa;
    --dark: #343a40;
}

/* Override Bootstrap primary color */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Gradient Backgrounds */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 87, 232, 0.3) 0%, rgba(157, 87, 232, 0) 70%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 41, 204, 0.2) 0%, rgba(123, 41, 204, 0) 70%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .rounded-lg {
    border-radius: 1.5rem!important;
}

/* Card Styling */
.card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Custom Section Styling */
.swot-card {
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

.swot-card:hover {
    box-shadow: 0 10px 20px rgba(123, 41, 204, 0.2);
}

.audience-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

/* Navigation Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Enhanced Navigation Styling */
.nav-glow {
    position: relative;
    transition: all 0.3s ease;
}

.nav-glow:hover, 
.nav-glow.active {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    color: white !important;
}

.nav-glow:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-glow:hover:after,
.nav-glow.active:after {
    width: 80%;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Syllabus Module Styling */
.module-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(123, 41, 204, 0.2);
}

.module-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Budget Section Styling */
.budget-item {
    border-bottom: 1px dashed rgba(123, 41, 204, 0.3);
    padding: 0.75rem 0;
}

/* General Spacing and Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 4rem 0;
}

.section-heading {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-heading:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto;
}

/* Why Now Section Styling */
.why-now-section {
    padding: 5rem 0;
}

.why-now-section .audience-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(123, 41, 204, 0.2);
}

.why-now-section .card {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

.why-now-section .card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(123, 41, 204, 0.15) !important;
}

.why-now-section .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-now-section .card-text {
    color: #555;
    margin-bottom: 1rem;
} 