/* Combined CSS for Benue State College of Nursing Sciences Website */
/* Styles from all pages including contact.html, vision-mission.html, history.html, and login.html */

/* CSS Variables for consistent theming */
:root {
    --primary: #1a472a; /* Deep Green */
    --primary-dark: #0d2e1a;
    --primary-light: #2d5e3f;
    --secondary: #6b8e6d; /* Grey Green */
    --accent: #3a7d5a;
    --light: #f5f9f6;
    --dark: #2c3e2d;
    --text: #2d3b2e;
    --text-light: #5a6b5c;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #5a7a5c;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--primary);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 5px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    color: var(--white);
    transition: var(--transition);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary);
    background-color: var(--white);
    transform: translateY(-3px);
}

.main-header {
    padding: 20px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Fixed Logo Styling */
.logo-text {
    display: flex;
    align-items: center;
}

.logo-text img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 75px;
    width: 75px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Navigation */
.nav-container {
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary);
    background-color: rgba(26, 71, 42, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: rgba(26, 71, 42, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 25px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
}

/* Hero Sections */
.hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.8)), url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.hero-stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.8)), url('../images/contact-img.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Principles Hero Section */
.principles-hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.8)), url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principles-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.principles-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.principles-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* History Hero Section */
.history-hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.history-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.history-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.history-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Login Hero Section */
.login-hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.8)), url('https://images.unsplash.com/photo-1584467735871-8db9ac8dcc13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.login-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.login-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Login Section - From First Block */
.login-section {
    background: linear-gradient(rgba(26, 71, 42, 0.05), rgba(26, 71, 42, 0.05)), url('../images/form_bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.login-container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.login-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-info p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.features-list i {
    margin-right: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--primary-dark);
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.divider span {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.create-account {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.create-account a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.create-account a:hover {
    color: var(--primary-dark);
}

/* Principles Section */
.principles-section {
    background-color: var(--light);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.principle-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.principle-card h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.principle-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.principle-list {
    margin-bottom: 20px;
}

.principle-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--text-light);
}

.principle-list i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

/* Mission, Vision, Values Section - Equal Height Cards */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.mvp-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mvp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mvp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.mvp-card h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.mvp-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.mvp-list {
    margin-bottom: 20px;
}

.mvp-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--text-light);
}

.mvp-list i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.objectives-content, .values-content {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
    flex-grow: 1;
}

.objectives-content::after, .values-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, var(--white));
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

/* Detailed Sections */
.detailed-section {
    padding: 80px 0;
}

.detailed-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.detailed-content h2 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.detailed-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.detailed-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.detailed-content ul, .detailed-content ol {
    margin-bottom: 25px;
}

.detailed-content li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.content-highlight {
    background: linear-gradient(135deg, var(--light), #e8f5e9);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 30px 0;
}

.content-highlight p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

/* History Timeline Section */
.timeline-section {
    background-color: var(--light);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Founders Section */
.founders-section {
    padding: 80px 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.founder-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-img {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.founder-content {
    padding: 25px;
}

.founder-content h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.4rem;
}

.founder-position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.founder-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Location Section */
.location-section {
    background-color: var(--light);
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.location-info {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.location-details {
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.location-text p {
    color: var(--text-light);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Motto Section */
.motto-section {
    padding: 80px 0;
    text-align: center;
}

.motto-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.motto-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.motto-content h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
}

.motto-content p {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-body {
    color: var(--text-light);
    line-height: 1.7;
}

.modal-body ol, .modal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-body li {
    margin-bottom: 10px;
}

/* Principal Officers Carousel Section */
.officers-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.officers-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.officers-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    cursor: grab;
    user-select: none;
}

.officers-carousel::-webkit-scrollbar {
    display: none;
}

.officers-carousel.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

.officer-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.officer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.officer-img {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    position: relative;
}

.officer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.officer-card:hover .officer-img img {
    transform: scale(1.08);
    filter: brightness(1);
}

.officer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.officer-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to bottom, var(--white) 85%, rgba(245, 249, 246, 0.8));
}

.officer-header {
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
}

.officer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.officer-card:hover .officer-header::after {
    width: 80px;
}

.officer-header h3 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.officer-qualifications {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.08), rgba(107, 142, 109, 0.08));
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 5px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(26, 71, 42, 0.1);
    transition: all 0.3s ease;
}

.officer-card:hover .officer-qualifications {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.12), rgba(107, 142, 109, 0.12));
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.officer-tagline {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    padding: 5px 0;
}

.officer-tagline::before {
    content: '» ';
    color: var(--primary);
    font-weight: bold;
}

.officer-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.officer-content .btn {
    align-self: center;
    margin-top: 10px;
    padding: 10px 25px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.officer-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.officer-content .btn:hover::before {
    left: 100%;
}

.officer-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 71, 42, 0.2);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Professional Badge Styles */
.officer-qualifications {
    position: relative;
}

.officer-qualifications::before {
    content: '🎓';
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0a2313);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: linear-gradient(135deg, var(--text-light), #8a9a8b);
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.carousel-indicator:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.carousel-indicator.active {
    opacity: 1;
    background-color: var(--primary);
    transform: scale(1.3);
    border-color: rgba(26, 71, 42, 0.3);
}

.carousel-indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Autoplay Progress Bar */
.autoplay-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(26, 71, 42, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.autoplay-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    transition: width 20s linear;
}

.autoplay-progress-bar.active {
    width: 100%;
}

/* Decorative Elements for Officer Cards */
.officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.officer-card:hover::before {
    opacity: 1;
}

.officer-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(26, 71, 42, 0.1);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.officer-card:hover::after {
    opacity: 1;
}

/* Features Section */
.features-section {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Programs Section */
.programs-section {
    padding-bottom: 70px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.4rem;
}

.program-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.program-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.program-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

.program-feature i {
    color: var(--accent);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.3rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    background: linear-gradient(rgba(26, 71, 42, 0.9), rgba(26, 71, 42, 0.9)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: var(--white);
    color: var(--text);
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-section .btn {
    box-shadow: 0 4px 10px rgba(26, 71, 42, 0.2);
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-text p {
    color: var(--text-light);
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links-contact a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.faq-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.faq-text p {
    color: var(--text-light);
}

/* Departments Section */
.departments-section {
    padding: 80px 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.department-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.department-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.department-card h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark), #1a2a1a);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links a i {
    width: 20px;
    color: var(--secondary);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-list i {
    margin-right: 12px;
    color: var(--secondary);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer Social Media Styles */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Registration Page Styles */
.registration-section {
    background: linear-gradient(rgba(26, 71, 42, 0.05), rgba(26, 71, 42, 0.05)), url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.registration-container {
    max-width: 1000px;
    width: 90%;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.registration-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 30px 50px;
    text-align: center;
}

.registration-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.registration-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.registration-form-container {
    padding: 50px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .step-number {
    background-color: var(--primary);
    color: var(--white);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background-color: var(--secondary);
    color: var(--white);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.password-strength {
    margin-top: 8px;
    height: 5px;
    border-radius: 3px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: var(--transition);
}

.password-strength.weak .password-strength-bar {
    background-color: #e74c3c;
    width: 25%;
}

.password-strength.fair .password-strength-bar {
    background-color: #f39c12;
    width: 50%;
}

.password-strength.good .password-strength-bar {
    background-color: #3498db;
    width: 75%;
}

.password-strength.strong .password-strength-bar {
    background-color: #2ecc71;
    width: 100%;
}

.password-requirements {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.requirement {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.requirement i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.requirement.met {
    color: var(--primary);
}

.requirement.met i {
    color: var(--primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-back {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-back:hover {
    background-color: #f0f0f0;
}

.terms-agreement {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.terms-agreement input {
    margin-right: 10px;
    margin-top: 3px;
}

.terms-agreement label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.terms-agreement a {
    color: var(--primary);
    font-weight: 500;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.login-link a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.login-link a:hover {
    color: var(--primary-dark);
}

/* Login Card Styles - From Second Block */
.login-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 450px;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.login-header h2 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.8rem;
}

.login-header p {
    color: var(--text-light);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-btn {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
}

.login-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
}

.login-divider span {
    background-color: var(--white);
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.alternative-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.alt-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text);
    transition: var(--transition);
    font-weight: 500;
}

.alt-login-btn:hover {
    background-color: #f9f9f9;
    border-color: var(--primary-light);
}

.alt-login-btn.google {
    color: #DB4437;
}

.alt-login-btn.microsoft {
    color: #0078D4;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.signup-link a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.signup-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Carousel Responsive Styles */
@media (max-width: 1200px) {
    .officers-carousel-container {
        padding: 0 40px;
    }
    
    .officer-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .hero h1, .contact-hero h1, .principles-hero h1, .history-hero h1, .login-hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .registration-container {
        width: 95%;
    }
    
    .registration-header, .registration-form-container {
        padding: 40px 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .login-hero h1 {
        font-size: 2.5rem;
    }
    
    .principles-hero h1, .history-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Principal Officers Carousel Responsive */
    .officer-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .officers-carousel-container {
        padding: 0 35px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    /* Login Section Responsive */
    .login-container {
        flex-direction: column;
    }
    
    .login-info, .login-form-container {
        padding: 40px 30px;
    }
    
    .login-info {
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-container {
        position: static;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        justify-content: space-between;
        border-radius: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background-color: rgba(26, 71, 42, 0.03);
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .nav-item.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding-left: 30px;
    }
    
    .hero, .contact-hero, .principles-hero, .history-hero, .login-hero {
        padding: 140px 0 100px;
    }
    
    .hero h1, .contact-hero h1, .principles-hero h1, .history-hero h1, .login-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p, .contact-hero p, .principles-hero p, .history-hero p, .login-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 350px;
    }
    
    /* Logo adjustment for mobile */
    .logo-text img {
        height: 55px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .registration-header h2 {
        font-size: 1.8rem;
    }
    
    .form-section h3 {
        font-size: 1.6rem;
    }
    
    .form-progress {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .progress-step {
        flex: 1;
        min-width: 100px;
    }
    
    .login-hero {
        padding: 100px 0 60px;
    }
    
    .login-hero h1 {
        font-size: 2.2rem;
    }
    
    .login-card {
        padding: 40px 30px;
    }
    
    .principles-hero, .history-hero {
        padding: 100px 0 60px;
    }
    
    .principles-hero h1, .history-hero h1 {
        font-size: 2.2rem;
    }
    
    .detailed-content {
        padding: 30px 20px;
    }
    
    /* Principal Officers Carousel Responsive */
    .officer-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .officers-carousel-container {
        padding: 0 30px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: -5px;
    }
    
    .carousel-next {
        right: -5px;
    }
    
    .officer-header h3 {
        font-size: 1.3rem;
    }
    
    .officer-tagline {
        font-size: 1rem;
    }
    
    /* Timeline responsive */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 18px;
        right: auto;
    }
    
    .left, .right {
        left: 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map {
        height: 300px;
    }
    
    /* Login Section Mobile Styles */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .login-info h2 {
        font-size: 1.8rem;
    }
    
    .login-form-container h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-text img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero h1, .contact-hero h1, .principles-hero h1, .history-hero h1, .login-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .mvp-grid, .faq-grid, .departments-grid, .principles-grid, .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-container {
        width: 98%;
    }
    
    .registration-header, .registration-form-container {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .remember-forgot {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .login-hero h1 {
        font-size: 2rem;
    }
    
    .principles-hero h1, .history-hero h1 {
        font-size: 2rem;
    }
    
    .motto-content {
        padding: 40px 25px;
    }
    
    .motto-content h2 {
        font-size: 1.8rem;
    }
    
    .motto-content p {
        font-size: 1.1rem;
    }
    
    .alternative-login {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Principal Officers Carousel Responsive */
    .officers-carousel-container {
        padding: 0 20px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav i {
        font-size: 0.9rem;
    }
    
    .officer-qualifications {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    /* Login Section Mobile Styles */
    .login-container {
        width: 95%;
    }
    
    .login-info, .login-form-container {
        padding: 30px 20px;
    }
    
    .remember-forgot {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}