/* General Styles */
body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.nav-spacer {
    height: 70px;
}

.modern-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.modern-navbar .navbar-brand {
    font-weight: 700;
    color: #2c3e50;
}

.modern-navbar .brand-text {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.modern-navbar .navbar-toggler {
    border: none;
    color: #2c3e50;
}

.modern-navbar .nav-link {
    color: #2c3e50;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.modern-navbar .nav-link:hover {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    transform: translateY(-2px);
}

.modern-navbar .nav-link i {
    margin-right: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 100px 0 70px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-10px);
}

.hero-image {
    width: 100%;
    height: auto;
}

.apply-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* Section Title */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3498db;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Modern Cards */
.modern-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-card .card-header {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    border: none;
    padding: 15px 20px;
}

.modern-card .card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modern-card .card-header h2 i {
    margin-right: 10px;
}

.modern-card .card-body {
    padding: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: #3498db;
    margin-right: 10px;
    margin-top: 5px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Social Links */
.social-links {
    font-size: 1.5rem;
}

.social-links a {
    margin: 0 10px;
    color: #3498db;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
    margin-top: 2rem;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #3498db;
    text-decoration: none;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

/* Admin Panel Styles */
.admin-sidebar {
    background-color: #2c3e50;
    min-height: calc(100vh - 56px);
    padding-top: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateX(5px);
}

.admin-sidebar .nav-link.active {
    color: #fff;
    background-color: #3498db;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.4);
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.admin-content {
    padding: 20px;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    max-height: 80px;
}

/* Animation Helpers */
.animate__animated--triggered {
    visibility: visible !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-image-container {
        margin-top: 30px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .modern-card {
        margin-bottom: 20px;
    }
}