/* Global Variables & Body Styling */
:root {
    --primary-color: #007bff; /* A vibrant blue for interactive elements */
    --secondary-color: #6c757d; /* A neutral gray for secondary text */
    --light-gray: #f8f9fa; /* For backgrounds of cards/panels */
    --dark-text: #212529; /* For primary text */
    --body-bg: #fdfdff; /* A very light, almost white background */
    --secondary-gradient: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--body-bg);
  background-image: linear-gradient(180deg, var(--body-bg) 0%, var(--light-gray) 100%);
  color: var(--dark-text);
}

/* General Reusable Components */
.content-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease-in-out;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Interactive Elements (Buttons) */
.btn {
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Home Page Specific Styles */
.home-vision-panel {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-about-panel {
    background: var(--secondary-gradient);
    padding: 3rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.intro-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.intro-text {
    color: #2c3e50;
}
