/* department-applied.css - Applied/Technical Department Page Styles for Pangani Girls' High School */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4c8c;
    --secondary-blue: #2c6cb0;
    --accent-red: #e74c3c;
    --light-blue: #e8f1ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --applied-color: #f39c12;
    --computer-color: #3498db;
    --business-color: #2ecc71;
    --home-color: #9b59b6;
    --technical-color: #e74c3c;
    --project-color: #1abc9c;
    --career-color: #34495e;
    --status-completed: #27ae60;
    --status-ongoing: #f39c12;
    --status-award: #9b59b6;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    flex: 0 0 100px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-item a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
}

.nav-item a:hover {
    color: var(--primary-blue);
}

.nav-item.active a {
    color: var(--primary-blue);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.admin-btn a {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
}

.admin-btn a:hover {
    background-color: var(--secondary-blue);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Page Header */
.page-header {
    height: 450px;
    background-image: url('../assets/applied-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.9) 0%, rgba(26, 76, 140, 0.9) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span {
    color: var(--white);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--applied-color);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Overview Section */
.overview-section {
    background-color: var(--light-gray);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text {
    padding-right: 20px;
}

.overview-text .section-title {
    text-align: left;
}

.overview-text .section-line {
    margin: 0 0 20px;
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--applied-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--applied-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Programs Section */
.programs-section {
    background-color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 35px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.computer-card {
    border-top-color: var(--computer-color);
}

.business-card {
    border-top-color: var(--business-color);
}

.home-card {
    border-top-color: var(--home-color);
}

.technical-card {
    border-top-color: var(--technical-color);
}

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

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.computer-card .program-icon {
    color: var(--computer-color);
}

.business-card .program-icon {
    color: var(--business-color);
}

.home-card .program-icon {
    color: var(--home-color);
}

.technical-card .program-icon {
    color: var(--technical-color);
}

.program-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.program-description {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.program-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.module {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.computer-card .module {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--computer-color);
}

.business-card .module {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--business-color);
}

.home-card .module {
    background-color: rgba(155, 89, 182, 0.1);
    color: var(--home-color);
}

.technical-card .module {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--technical-color);
}

.program-skills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.skill i {
    color: var(--applied-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Labs Section */
.labs-section {
    background-color: var(--light-gray);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.lab-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.lab-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.lab-card:hover .lab-image img {
    transform: scale(1.1);
}

.lab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 156, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.lab-card:hover .lab-overlay {
    opacity: 1;
}

.lab-overlay h4 {
    color: white;
    font-size: 1.3rem;
    text-align: center;
}

.lab-content {
    padding: 25px;
}

.lab-name {
    font-size: 1.3rem;
    color: var(--applied-color);
    margin-bottom: 10px;
}

.lab-description {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.lab-equipment {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.equipment {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.equipment i {
    color: var(--applied-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Methodology Section */
.methodology-section {
    background-color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.methodology-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--applied-color);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.methodology-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--applied-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0;
}

.methodology-description {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.methodology-example {
    background-color: var(--light-gray);
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--applied-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.methodology-example i {
    color: var(--applied-color);
    margin-top: 3px;
}

.methodology-example span {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Faculty Section */
.faculty-section {
    background-color: var(--light-gray);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faculty-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--applied-color);
}

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

.faculty-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--applied-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.faculty-content {
    padding: 25px;
}

.faculty-name {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.faculty-title {
    color: var(--applied-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.faculty-qualification {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-style: italic;
}

.faculty-specialization {
    color: var(--accent-red);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.faculty-experience {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.faculty-experience i {
    color: var(--applied-color);
}

.faculty-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Projects Section */
.projects-section {
    background-color: var(--white);
}

.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 300px;
    position: relative;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--project-color);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-content {
    padding: 25px;
    flex-grow: 1;
}

.project-title {
    font-size: 1.4rem;
    color: var(--project-color);
    margin-bottom: 10px;
}

.project-description {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-tag {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-team {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-team i {
    color: var(--project-color);
}

.project-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.status-badge.completed {
    background-color: var(--status-completed);
}

.status-badge.ongoing {
    background-color: var(--status-ongoing);
}

.status-badge.award {
    background-color: var(--status-award);
}

.status-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.projects-gallery {
    margin-top: 30px;
}

.gallery-title {
    font-size: 1.3rem;
    color: var(--applied-color);
    margin-bottom: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 180px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Partnerships Section */
.partnerships-section {
    background-color: var(--light-gray);
}

.partnerships-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--applied-color);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.partner-logo {
    font-size: 2.5rem;
    color: var(--applied-color);
    margin-bottom: 15px;
}

.partner-name {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.partner-role {
    color: var(--applied-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.partner-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.internship-program {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--project-color);
}

.internship-title {
    font-size: 1.2rem;
    color: var(--project-color);
    margin-bottom: 20px;
    text-align: center;
}

.internship-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--project-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.internship-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--project-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.internship-link:hover {
    gap: 12px;
    color: var(--applied-color);
}

/* Competitions Section */
.competitions-section {
    background-color: var(--white);
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.competition-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--applied-color);
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.competition-header {
    background-color: var(--light-blue);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competition-name {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0;
}

.competition-year {
    background-color: var(--applied-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.competition-content {
    padding: 25px;
}

.achievement {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.achievement:last-child {
    margin-bottom: 0;
}

.achievement i {
    font-size: 1.5rem;
    color: var(--applied-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.achievement-details {
    display: flex;
    flex-direction: column;
}

.achievement-title {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.achievement-description {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Career Section */
.career-section {
    background-color: var(--light-gray);
}

.career-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.track-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--career-color);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.track-icon {
    font-size: 2rem;
    color: var(--career-color);
}

.track-title {
    font-size: 1.2rem;
    color: var(--career-color);
    margin-bottom: 0;
}

.track-careers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.career {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.career:hover {
    background-color: var(--career-color);
    color: white;
    transform: translateX(5px);
}

.track-requirements {
    background-color: var(--light-gray);
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--career-color);
}

.req-title {
    font-weight: 600;
    color: var(--career-color);
    font-size: 0.85rem;
    margin-right: 5px;
}

.req-detail {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--applied-color) 0%, var(--computer-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-motto {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-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);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-red);
    margin-top: 3px;
}

.vision-text, .mission-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 1s ease-out 0.6s both;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-text {
        padding-right: 0;
    }
    
    .overview-text .section-title {
        text-align: center;
    }
    
    .overview-text .section-line {
        margin: 0 auto 20px;
    }
    
    .overview-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        max-width: 200px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnerships-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-card {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .page-header {
        height: 350px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        max-width: 100%;
        width: 100%;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .labs-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-showcase {
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .competitions-grid {
        grid-template-columns: 1fr;
    }
    
    .career-tracks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .career-tracks {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}