:root {
    --primary: #3FC1C9;
    --secondary: #778DA9;
    --dark: #0D1B2A;
    --light: #E0E1DD;
    --accent: #FF6B6B;
    --success: #4ECDC4;
    --warning: #FFD93D;
    --info: #6C63FF;
    --bg-dark: #1B263B;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E1DD;
    --text-muted: #91BAD6;
    --text-accent: #3FC1C9;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-accent);
    font-size: 1rem;
    opacity: 1;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.text-accent {
    color: var(--accent);
}

.text-highlight {
    color: #FFD700;
}

.card {
    background-color: var(--bg-dark);
    border: 1px solid var(--primary);
    padding: 1.5rem;
}

.form-control {
    background-color: var(--bg-dark);
    border: 1px solid var(--primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.form-control:focus {
    background-color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(63, 193, 201, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

// ...existing code...

/* Remove or comment out any existing hero section styles */
/* Hero Section styles moved to components/hero/hero.css */

// ...existing code...

/* Services Section */
.service-card {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.95), rgba(13, 27, 42, 0.9));
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(63, 193, 201, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    animation: slideUpFade 0.5s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    animation: glowPulse 2s infinite;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: floatY 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* Button Animations */
.btn-gradient {
    background: linear-gradient(45deg, var(--primary), var(--success));
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(45deg, var(--accent), #FFA07A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(27, 38, 59, 0.5);
}

/* Testimonial Cards */
.testimonial-card {
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
    padding: 1.5rem;
}

/* Resource Cards */
.resource-card {
    opacity: 0;
    animation: slideUpFade 0.5s ease-out forwards;
    padding: 1.5rem;
}

/* Add more section styles as needed */

/* Compact spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}

/* Button adjustments */
.btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Container width adjustment */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

p {
    color: var(--text-secondary);
    opacity: 0.9;
}

.lead {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.text-muted {
    color: var(--text-muted) !important;
}
