/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #1a237e;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.8rem;
    color: white;
}

nav h1 i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

nav ul li a:hover {
    color: #64b5f6;
}

.cta-button {
    background-color: #2196f3;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #1976d2;
    color: white;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(26,35,126,0.9), rgba(26,35,126,0.9)), url('../images/tech-bg.jpg');
    background-size: cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits section */
.benefits {
    padding: 4rem 0;
    text-align: center;
}

.benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a237e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2196f3;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    color: #1a237e;
}

/* CTA section */
.cta {
    text-align: center;
    padding: 4rem 0;
    background-color: #f5f5f5;
    margin: 2rem 0;
}

.cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a237e;
}

.cta .cta-button {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Footer styles */
footer {
    background-color: #1a237e;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Styles */
body {
    background-color: #f8f9fa;
}

/* Card Styles */
.booking-card {
    background-color: #fff;
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Dashboard Stats */
.stats-card {
    border-left: 4px solid #0d6efd;
    background-color: #fff;
}

/* Calendar Customization */
.fc-event {
    cursor: pointer;
}

.fc-today {
    background-color: #e8f4ff !important;
}

/* Profile Section */
.profile-picture {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

/* Custom Button Styles */
.btn-action {
    min-width: 120px;
}

/* Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.875rem;
}

/* Form Styles */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}