﻿/* Custom CSS for JSCCC Website */
:root {
    --primary-green: #2c7a2c;
    --secondary-green: #4caf50;
    --light-green: #e8f5e8;
    --dark-green: #1b5e20;
    --accent-blue: #2196f3;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--primary-green));
}

/* Social Top Bar */
.social-top-bar {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 8px 0;
    font-size: 14px;
}

.social-link {
    color: var(--white);
    margin-left: 10px;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, var(--light-green), var(--white));
    border-bottom: 3px solid var(--secondary-green);
}

.logo {
    max-height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(44, 122, 44, 0.2);
}

.site-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.site-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Navigation */
.navbar-dark.bg-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
    box-shadow: 0 2px 10px rgba(44, 122, 44, 0.3);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 2px;
    color: var(--white) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Banner Section */
.banner-section {
    height: 550px;
    min-height: 350px;
    position: relative;
}
.banner-section .carousel-item img {
    height: 550px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background: rgba(44, 122, 44, 0.8);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.carousel-caption h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.carousel-pause-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(44, 122, 44, 0.8);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-pause-btn:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

/* Quick Links Section */
.quick-links-section {
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.quick-link-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.2);
    border-color: var(--secondary-green);
}

.quick-link-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.quick-link-card h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

/* About & Officials Section */
.about-officials-section {
    background: var(--light-gray);
}

.about-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.7;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
}

.official-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.official-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 122, 44, 0.15);
}

.official-photo {
    width: 80px;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid var(--secondary-green);
}

.official-card h6 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}

.official-post {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 0;
}

/* News Section */
.latest-news-section {
    background: var(--white);
}

.news-item {
    background: var(--light-green);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-green);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
}

.news-title a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--secondary-green);
}

.news-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}

/* Activities Section */
.recent-activities-section {
    background: var(--light-gray);
}

.activity-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-content h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Publications Section */
.publications-section {
    background: var(--white);
}

.publication-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.15);
    border-color: var(--secondary-green);
}

.publication-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.publication-content {
    padding: 20px;
}

.publication-content h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.publication-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Partners Section */
.partners-section {
    background: var(--light-gray);
}

.partner-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 122, 44, 0.15);
}

.partner-logo img {
    max-height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-section h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-section .social-links .social-link {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .quick-link-card {
        margin-bottom: 20px;
    }
    
    .official-photo {
        width: 60px;
        height: 75px;
    }
    
    .official-card h6 {
        font-size: 11px;
    }
    
    .official-post {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .social-top-bar {
        text-align: center;
    }
    
    .social-top-bar .col-md-6:first-child {
        margin-bottom: 10px;
    }
    
    .header-section .row {
        text-align: center;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .carousel-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.intro-section {
    background: var(--white);
}

.intro-content .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.vision-section, .mission-section {
    overflow: hidden;
}

.vision-content, .mission-content {
    padding: 20px 0;
}

.vision-text, .mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.mission-points {
    margin-top: 25px;
}

.mission-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mission-point i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
}

.objective-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.2);
    border-color: var(--secondary-green);
}

.objective-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.objective-card h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.nmskcc-section {
    background: var(--white);
}

.nmskcc-content {
    margin-top: 30px;
}

.nmskcc-item {
    background: var(--light-green);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-green);
    height: 100%;
}

.nmskcc-item h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.nmskcc-item h5 i {
    margin-right: 10px;
}

.nmskcc-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.focus-area-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.focus-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.2);
    border-color: var(--secondary-green);
}

.focus-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.focus-area-card h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.focus-area-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .intro-content .lead {
        font-size: 1.1rem;
    }
    
    .vision-text, .mission-text {
        font-size: 1rem;
    }
    
    .mission-point {
        font-size: 1rem;
    }
    
    .objective-card, .focus-area-card {
        margin-bottom: 20px;
    }
}

/* Climate Data Page Styles */
.data-system-section {
    background: var(--white);
}

.data-system-intro {
    margin-bottom: 30px;
}

.intro-card {
    background: var(--light-green);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--secondary-green);
}

.data-system-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 3rem;
    color: var(--primary-green);
}

.data-system-icon i {
    background: var(--white);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.2);
    transition: all 0.3s ease;
}

.data-system-icon i:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 122, 44, 0.3);
}

.component-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.2);
    border-color: var(--secondary-green);
}

.component-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.component-card h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.component-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.component-badge {
    margin-top: auto;
}

.component-badge .badge {
    font-size: 12px;
    padding: 8px 12px;
}

.capability-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 122, 44, 0.2);
    border-color: var(--secondary-green);
}

.capability-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.capability-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
}

.capability-card h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.capability-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.commitment-section {
    background: var(--light-gray);
}

.commitment-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.1);
    border: 2px solid var(--secondary-green);
}

.commitment-highlights {
    background: var(--light-green);
    padding: 25px;
    border-radius: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary-green);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    margin-right: 10px;
    font-size: 16px;
}

.data-access-section {
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.access-buttons {
    margin-top: 30px;
}

.access-buttons .btn {
    margin-bottom: 15px;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
}

.access-buttons .btn i {
    margin-right: 8px;
}

/* Climate Data Page Responsive */
@media (max-width: 768px) {
    .data-system-icon {
        font-size: 2rem;
        gap: 15px;
    }
    
    .data-system-icon i {
        padding: 15px;
    }
    
    .intro-card {
        padding: 25px;
    }
    
    .component-card, .capability-card {
        margin-bottom: 20px;
    }
    
    .capability-header {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .commitment-card {
        padding: 25px;
    }
    
    .access-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .data-system-icon {
        flex-direction: column;
        font-size: 1.5rem;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Utility Classes */
.text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.border-primary-green {
    border-color: var(--primary-green) !important;
}

/* mysapcc.html custom styles */
.custom-content-section {
    background: #f8fafb;
    padding: 48px 0 40px 0;
}
.custom-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.08);
    padding: 32px 28px;
    margin-bottom: 32px;
}
.department-list {
    list-style: none;
    padding-left: 0;
    columns: 2;
    column-gap: 40px;
    margin-top: 18px;
    margin-bottom: 0;
}
.department-list li {
    padding: 8px 0 8px 18px;
    position: relative;
    font-size: 1.08rem;
    color: #205e5e;
}
.department-list li::before {
    content: '\2022';
    color: #2196f3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.timeline-box {
    background: #e3f0fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.07);
    padding: 24px 18px;
    min-height: 180px;
    margin-bottom: 0;
    border-left: 4px solid #2196f3;
}
.timeline-box h4 {
    color: #2196f3;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.timeline-date {
    color: #1565c0;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .department-list {
        columns: 1;
    }
    .custom-content-section {
        padding: 28px 0 20px 0;
    }
}

/* mynafcc.html custom styles */
.impact-goal-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.impact-goal-label {
    font-size: 1.08rem;
    color: #205e5e;
    font-weight: 500;
    margin-bottom: 8px;
}
.impact-metric-card {
    background: #e3f0fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.07);
    padding: 24px 12px 18px 12px;
    margin-bottom: 0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.impact-metric-icon {
    font-size: 2rem;
    color: #2196f3;
    margin-bottom: 8px;
}
.impact-metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 4px;
}
.impact-metric-label {
    font-size: 1.02rem;
    color: #205e5e;
    font-weight: 500;
}
@media (max-width: 900px) {
    .impact-metric-card {
        min-height: 120px;
        padding: 18px 8px 12px 8px;
    }
    .impact-goal-icon {
        font-size: 1.5rem;
    }
}

/* mytraining.html custom styles */
a.target-card {
    text-decoration: none !important;
    color: inherit !important;
}
a.target-card:hover, a.target-card:focus {
    text-decoration: none !important;
    color: #1565c0 !important;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.13);
}
.target-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.target-card {
    background: #e3f0fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.07);
    padding: 24px 12px 18px 12px;
    margin-bottom: 0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}
@media (max-width: 900px) {
    .target-card {
        min-height: 120px;
        padding: 18px 8px 12px 8px;
    }
    .target-icon {
        font-size: 1.5rem;
    }
    .impact-grid .col-md-2, .impact-grid .col-md-3, .impact-grid .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.quick-link-full {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
}
.quick-link-full:hover, .quick-link-full:focus {
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.13);
    background: #e3f0fa;
    color: #1565c0 !important;
    text-decoration: none;
}

/* research.html custom styles */
.custom-card .section-title .fa-flask {
    color: #2196f3 !important;
}
.custom-content-section {
    background: #f8fafb;
    padding: 48px 0 40px 0;
}
.custom-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.08);
    padding: 32px 28px;
    margin-bottom: 32px;
}

/* community.html custom styles */
.custom-card .section-title .fa-users {
    color: #27ae60 !important;
}
.custom-card .fa-hand-holding-heart {
    color: #2196f3 !important;
}

/* Community photo and video gallery styles */
.community-photo {
    object-fit: cover;
    width: 100%;
    height: 180px;
    transition: transform 0.2s;
}
.community-photo:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.13);
}
.video-card {
    overflow: hidden;
    border-radius: 10px;
    background: #e3f0fa;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.07);
    min-height: 220px;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2196f3;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
    text-decoration: none;
}
.video-play-btn:hover, .video-play-btn:focus {
    color: #1565c0;
    opacity: 1;
    text-decoration: none;
}
@media (max-width: 900px) {
    .community-photo {
        height: 120px;
    }
    .video-card {
        min-height: 140px;
    }
}

/* Latest News (Reports/Documents) Section Styling for index.html */
.reports-documents-section {
    background: #f8fafb;
    padding: 48px 0 40px 0;
}
.reports-documents-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.08);
    padding: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.reports-documents-header {
    padding: 20px 30px 10px 30px;
    border-bottom: 1px solid #e0e0e0;
}
.reports-documents-header h2 {
    font-size: 2rem;
    color: #2196f3;
    margin: 0;
    font-weight: 600;
}
.reports-documents-content {
    padding: 24px 30px 16px 30px;
}
.reports-documents-columns {
    display: flex;
    gap: 32px;
}
.reports-documents-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.report-link {
    background: #f3f3f3;
    color: #222;
    padding: 16px 18px;
    border-radius: 4px;
    font-size: 1.08rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    display: block;
}
.report-link:hover {
    background: #e0e0e0;
    color: #2196f3;
}
.reports-documents-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}
.more-link {
    color: #2196f3;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.2s;
}
.more-link:hover {
    color: #1565c0;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .reports-documents-content {
        padding: 18px 10px 10px 10px;
    }
    .reports-documents-header {
        padding: 14px 10px 6px 10px;
    }
    .reports-documents-columns {
        flex-direction: column;
        gap: 18px;
    }
}

/* mysapcc.html department clickable card styles */
.department-card {
    background: #f8fafb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.07);
    border: 1px solid #e0e0e0;
    color: #205e5e;
    font-size: 1.08rem;
    font-weight: 500;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
    text-decoration: none !important;
    min-height: 120px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.department-card:hover, .department-card:focus {
    background: #e3f0fa;
    color: #1565c0 !important;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.13);
    text-decoration: none;
}
.department-card i {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .department-card {
        min-height: 90px;
        font-size: 1rem;
    }
}

.btn-theme-more {
    background: linear-gradient(90deg, #2196f3, #6ec6ff);
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}
.btn-theme-more:hover, .btn-theme-more:focus {
    background: linear-gradient(90deg, #1565c0, #2196f3);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(33, 150, 243, 0.18);
    text-decoration: none;
}

/* Contact Us Page Styles */
.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-name {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-title {
    color: var(--text-light);
    font-style: italic;
    margin: 0.5rem 0;
    text-align: center;
}

.contact-address p,
.contact-email p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-address i,
.contact-email i {
    color: var(--primary-green);
    width: 20px;
}

.contact-email a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Feedback Form Styles */
.feedback-form {
    margin-top: 1.5rem;
}

.feedback-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feedback-form .form-control,
.feedback-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.feedback-form .form-control:focus,
.feedback-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 44, 0.25);
}

.feedback-form .form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.feedback-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feedback-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 122, 44, 0.3);
}

/* Map Container Styles */
.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-name {
        font-size: 1rem;
    }
    
    .contact-address p,
    .contact-email p {
        font-size: 0.9rem;
    }
    
    .feedback-form .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info {
        margin-top: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Research Area Links */
.research-area-link {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.research-area-link:hover {
    color: var(--primary-green);
    text-decoration: none;
}