/* CSS Custom Properties for Theme Variables */
:root {
    /* Light Theme Colors */
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-secondary: #666666;
    --header-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --drawer-bg: #ffffff;
    --drawer-overlay: rgba(0, 0, 0, 0.5);
    --button-bg: #007bff;
    --button-hover: #0056b3;
    --accent-color: #007bff;
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --header-bg: #2d2d2d;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.4);
    --drawer-bg: #2d2d2d;
    --drawer-overlay: rgba(0, 0, 0, 0.7);
    --button-bg: #0d6efd;
    --button-hover: #0b5ed7;
    --accent-color: #0d6efd;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styles */
.header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Logo Styles */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-icon {
    background: linear-gradient(135deg, var(--accent-color), #17a2b8);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.brand-logo:hover .brand-icon::before {
    transform: rotate(45deg) translateY(100%);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.menu-toggle,
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.theme-toggle:hover {
    background-color: var(--border-color);
    transform: scale(1.1);
}

.menu-toggle:focus,
.theme-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Drawer Styles */
.drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--drawer-bg);
    box-shadow: var(--shadow);
    z-index: 1100;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(300px);
}

.drawer-content {
    padding: 1rem;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.drawer-header h2 {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.drawer-close:hover {
    background-color: var(--border-color);
}

.drawer-menu {
    list-style: none;
}

.drawer-menu li {
    margin-bottom: 0.5rem;
}

.drawer-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.drawer-menu a:hover {
    background-color: var(--border-color);
    color: var(--accent-color);
}

.drawer-menu i {
    margin-right: 0.75rem;
    width: 1.2rem;
    text-align: center;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--drawer-overlay);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Two Column Layout Section */
.two-column-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.two-column-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: left;
}

.image-column {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.03);
}

.purpose-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0.9;
}

.content-column {
    padding-left: 1rem;
}

.purpose-content {
    max-width: 100%;
}

.purpose-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.purpose-subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.purpose-text {
    margin-bottom: 2rem;
}

.main-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.commitment-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.point-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.point-item span {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Content Section */
.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.demo-content {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.demo-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.demo-content ul {
    list-style: none;
    padding-left: 0;
}

.demo-content li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .brand-logo {
        gap: 0.5rem;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    /* Two Column Layout Mobile Styles */
    .two-column-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-column {
        padding-left: 0;
    }

    .purpose-title {
        font-size: 2rem;
    }

    .purpose-subtitle {
        font-size: 1.1rem;
    }

    .purpose-image {
        height: 300px;
    }

    .key-points {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Mobile drawer adjustments */
    .drawer {
        width: 280px;
        left: -280px;
    }

    .drawer.open {
        transform: translateX(280px);
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: none;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .card {
        padding: 1rem;
    }

    .demo-content {
        padding: 1.5rem;
    }

    /* Two Column Layout Small Mobile */
    .purpose-title {
        font-size: 1.75rem;
    }

    .purpose-subtitle {
        font-size: 1rem;
    }

    .main-description,
    .commitment-text {
        font-size: 1rem;
    }

    .purpose-image {
        height: 250px;
    }

    .point-item {
        padding: 0.5rem 0.75rem;
    }

    .point-item span {
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Animation for theme transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Contact Section Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Wrapper Styles */
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-overlay:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-item i {
        font-size: 1.25rem;
        margin-top: 0.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .map-overlay {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-map {
        height: 250px;
    }
}

/* Careers Section Styles */
.careers-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.career-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #17a2b8);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.career-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.career-type {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.career-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.career-requirements h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: var(--button-hover);
    transform: scale(1.05);
}

.apply-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.apply-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

.apply-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Careers Section */
@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .career-card {
        padding: 1.5rem;
    }
    
    .career-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .career-title {
        font-size: 1.1rem;
    }
    
    .careers-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .careers-container {
        gap: 1.5rem;
    }
    
    .career-card {
        padding: 1.25rem;
    }
    
    .career-title {
        font-size: 1rem;
    }
    
    .career-description {
        font-size: 0.9rem;
    }
    
    .tech-tags {
        gap: 0.4rem;
    }
    
    .tech-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .apply-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mission & Vision Section Styles */
.mission-vision-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.mission-vision-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mission-vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #28a745);
    border-radius: 12px 12px 0 0;
}

.mission-vision-item .purpose-subtitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.mission-vision-item .purpose-subtitle i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.mission-vision-item .main-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: justify;
}

/* Community Impact Goals Styling */
.key-points h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.key-points h4 i {
    font-size: 1rem;
}

.key-points .point-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.key-points .point-item:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.key-points .point-item:hover i {
    color: white;
}

.key-points .point-item i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    margin-right: 0.5rem;
}

.key-points .point-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-item {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .mission-vision-item .purpose-subtitle {
        font-size: 1.15rem;
        flex-direction: row;
        align-items: center;
    }
    
    .mission-vision-item .main-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .key-points h4 {
        font-size: 1.05rem;
        flex-direction: row;
        align-items: center;
    }
    
    .key-points .point-item {
        padding: 0.6rem 0.85rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-vision-item .purpose-subtitle {
        font-size: 1.05rem;
        gap: 0.5rem;
    }
    
    .mission-vision-item .main-description {
        font-size: 0.95rem;
    }
    
    .key-points h4 {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .key-points .point-item {
        padding: 0.5rem 0.75rem;
    }
    
    .key-points .point-item span {
        font-size: 0.9rem;
    }
}

/* Services Section Styles */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #28a745);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-icon {
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.service-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card:first-child .service-status {
    background: #28a745;
    color: white;
}

.service-card:last-child .service-status {
    background: #ffc107;
    color: #000;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.feature-tag i {
    color: var(--accent-color);
    font-size: 0.8rem;
    width: 16px;
    transition: color 0.3s ease;
}

.feature-tag:hover i {
    color: white;
}

.service-impact {
    padding: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.service-impact p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-impact .text-red {
    color: #dc3545;
}

.service-impact .text-blue {
    color: #007bff;
}

.service-impact .text-green {
    color: #28a745;
}

.service-impact strong {
    color: var(--accent-color);
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--accent-color), #17a2b8);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.cta-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: var(--accent-color);
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--accent-color);
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .services-container {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .services-cta {
        padding: 1.5rem;
    }
    
    .cta-content h4 {
        font-size: 1.25rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
