

/* CSS Variables for Design System */


:root {


     --surface: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --muted: #64748b;
    --text: #0f172a;
    --text-muted: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-surface: linear-gradient(135deg, var(--surface), var(--secondary));
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    
    /* Dark Theme Colors */
    --background: hsl(240, 10%, 3.9%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(240, 10%, 3.9%);
    --card-foreground: hsl(0, 0%, 98%);
    --popover: hsl(240, 10%, 3.9%);
    --popover-foreground: hsl(0, 0%, 98%);
    --primary: hsl(201deg 100% 59.95%);
    --primary-foreground: hsl(240, 10%, 3.9%);
    --primary-glow: hsl(200, 100%, 60%);
    --secondary: hsl(240, 3.7%, 15.9%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(240, 3.7%, 15.9%);
    --muted-foreground: hsl(240, 5%, 64.9%);
    --accent: hsl(240, 3.7%, 15.9%);
    --accent-foreground: hsl(0, 0%, 98%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(240, 3.7%, 15.9%);
    --input: hsl(240, 3.7%, 15.9%);
    --ring: hsl(200, 100%, 50%);
    --success: hsl(120, 100%, 40%);
    --warning: hsl(45, 100%, 60%);
    --danger: hsl(0, 84%, 60%);
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(200, 100%, 40%), hsl(240, 100%, 60%));
    --gradient-secondary: linear-gradient(135deg, hsl(240, 10%, 3.9%), hsl(240, 20%, 10%));
    --gradient-cyber: linear-gradient(135deg, hsl(200deg 86.96% 9.69%), hsl(240deg 68.61% 20.55%));
    /* Shadows */
    --shadow-cyber: 0 0 30px hsl(200, 100%, 50%, 0.3);
    --shadow-glow: 0 0 20px hsl(200, 100%, 60%, 0.4);
    /* Border Radius */
    --radius: 0.75rem;
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Light Theme */
.light {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(240, 10%, 3.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(240, 10%, 3.9%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(240, 10%, 3.9%);
    --primary: hsl(0deg 0% 0%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(200, 100%, 60%);
    --secondary: hsl(210, 40%, 96.1%);
    --secondary-foreground: hsl(240, 10%, 3.9%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --accent: hsl(210, 40%, 96.1%);
    --accent-foreground: hsl(240, 10%, 3.9%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(200, 100%, 50%);
    --gradient-primary: linear-gradient(135deg, hsl(200, 100%, 50%), hsl(240, 100%, 70%));
    --gradient-secondary: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(210, 40%, 96%));
    --gradient-cyber: linear-gradient(135deg, hsl(0deg 0% 100%), hsl(0deg 0% 93.23%));
    --shadow-cyber: 0 0 30px hsl(200, 100%, 50%, 0.2);
    --shadow-glow: 0 0 20px hsl(200, 100%, 60%, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




 .news-img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
}


/* تنسيق الحاوية الرئيسية */
.dropdown {
    position: relative;
    display: inline-block;
}

 
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfcfc;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}
 

/* تنسيق محتوى القائمة المنسدلة */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfcfc;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

/* تنسيق الروابط داخل القائمة */
.dropdown-content a {
    color: #4483c2;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

/* تأثير عند المرور على الروابط داخل القائمة */
.dropdown-content a:hover {
    background-color: #bdc3c7;
}

/* عرض القائمة عند المرور */
.dropdown:hover .dropdown-content {
    display: block;
}

/* تأثير خفيف عند الظهور */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}



/* Base Styles */
html {
    scroll-behavior: smooth;
}

    html[lang="ar"] {
        font-family: 'Cairo', sans-serif;
        direction: rtl;
    }

    html[lang="en"] {
        font-family: 'Inter', sans-serif;
        direction: ltr;
    }

body {
    font-family: inherit;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.cyber-glow {
    box-shadow: var(--shadow-cyber);
}

.text-glow {
    text-shadow: 0 0 10px var(--primary-glow);
}

.gradient-primary {
    background: var(--gradient-primary);
}

.gradient-secondary {
    background: var(--gradient-secondary);
}

.gradient-cyber {
    background: var(--gradient-cyber);
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
#mobile-menu-toggle{
      display: none;

}
 
    .mobile-only {
        display: none;
    }
}
/* إظهار عناصر desktop-nav بشكل افتراضي */
.desktop-nav {
  display: block;
}

/* إخفاء desktop-nav في الشاشات الصغيرة (مثل الموبايل) */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
}

/* إخفاء عناصر mobile-nav في الشاشات الكبيرة */
.mobile-nav {
  display: none;
}

/* إظهار mobile-nav في الشاشات الصغيرة */
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}
 
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

    .header.scrolled {
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
    }

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-img {
    height: 4rem;
    width: 4rem;
    animation: cyber-pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

    .nav-link:hover {
        color: var(--primary);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.action-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    background-color: transparent;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-cyber);
}

    .action-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

.consultation-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-cyber);
}

    .consultation-btn:hover {
        opacity: 0.9;
    }

.icon {
    width: 1rem;
    height: 1rem;
}

.sun-icon {
    display: none;
}

.light .sun-icon {
    display: block;
}

.light .moon-icon {
    display: none;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fade-in-up 0.3s ease;
}

    .mobile-menu.open {
        display: block;
    }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

    .mobile-nav-link:hover {
        color: var(--primary);
    }

.consultation-btn-mobile {
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    box-shadow: var(--shadow-cyber);
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-cyber);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background) / 0.1, var(--background) / 0.3);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
}

.floating-2 {
    bottom: 25%;
    right: 25%;
    width: 6rem;
    height: 6rem;
    animation-delay: 2s;
}

.floating-3 {
    top: 50%;
    right: 33%;
    width: 4rem;
    height: 4rem;
    animation-delay: 4s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fade-in-up 0.6s ease;
}

.hero-logo-img {
    height: 8rem;
    width: auto;
    margin: 0 auto;
    box-shadow: var(--shadow-cyber);
    animation: cyber-pulse 2s ease-in-out infinite;
}


.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-foreground);
    margin-bottom: 0.5rem;
    animation: slide-in-left 0.6s ease;
    text-shadow: 0 0 10px var(--primary-glow);
    margin-top: 3em;
    font-family: inherit;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gradient-cyber);
    margin-bottom: 1rem;
    animation: slide-in-right 0.6s ease;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gradient-cyber);
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in-up 0.6s ease 0.3s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fade-in-up 0.6s ease 0.6s both;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 12.5rem;
    justify-content: center;
    box-shadow: var(--shadow-cyber);
}

    .hero-btn.primary {
        background-color: white;
        color: var(--primary);
        border: none;
    }

        .hero-btn.primary:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

    .hero-btn.secondary {
           background-color: white;
    color: var(--primary);
    border: none;
    }

        .hero-btn.secondary:hover {
            background-color: white;
            color: var(--primary);
        }

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    animation: fade-in-up 0.6s ease 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: hsl(201deg 100% 59.95%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}



/* Departments Section */
.departments {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.department-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-cyber);
    animation: fade-in-up 0.6s ease;
    padding: 1rem;
      animation: fade-in-up 0.6s ease;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.dept-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dept-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.dept-header h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  flex: 1;
}

.dept-subdivisions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dept-subdivisions span {
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}



/* Departments Section */
.departments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.department-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-cyber);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-2px);
}

.department-header {
    position: relative;
    padding: 2rem;
}

.department-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.department-card:nth-child(1) .department-header::before {
    background: linear-gradient(135deg, hsl(208, 76%, 45%), hsl(199, 89%, 48%));
}

.department-card:nth-child(2) .department-header::before {
    background: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(314, 100%, 74%));
}

.department-card:nth-child(3) .department-header::before {
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(160, 84%, 39%));
}

.department-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, hsl(208, 76%, 45%), hsl(199, 89%, 48%));
}

.bg-gradient-purple {
    background: linear-gradient(135deg, hsl(262, 83%, 58%), hsl(314, 100%, 74%));
}

.bg-gradient-emerald {
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(160, 84%, 39%));
}

.department-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--card-foreground);
    position: relative;
    z-index: 10;
}

.department-card p {
    padding: 0 2rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.department-features {
    padding: 0 2rem 2rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-item::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Emergency Section */
.emergency-section {
    background-color: var(--muted);
}

.emergency-contact {
    max-width: 32rem;
    margin: 0 auto;
}

.emergency-hotline {
    background: linear-gradient(135deg, hsl(0, 84%, 45%), hsl(0, 84%, 55%));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-elegant);
}

.hotline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.hotline-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotline-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
    margin-bottom: 0.5rem;
}

.hotline-availability {
    font-size: 0.875rem;
    opacity: 0.9;
}



/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-2px);
}

.vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.vision-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}


/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    animation: fade-in-up 0.6s ease;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    animation: fade-in-up 0.6s ease 0.2s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-item {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: var(--transition);
    animation: fade-in-up 0.6s ease;
    box-shadow: var(--shadow-cyber);
}

    .value-item:hover {
        background-color: var(--card) / 0.5;
        border-color: var(--primary) / 0.3;
        transform: translateY(-4px);
    }

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

    .value-icon.blue {
        background-color: hsl(220, 100%, 50%, 0.1);
        color: hsl(220, 100%, 50%);
    }

    .value-icon.green {
        background-color: hsl(120, 100%, 40%, 0.1);
        color: hsl(120, 100%, 40%);
    }

    .value-icon.purple {
        background-color: hsl(280, 100%, 50%, 0.1);
        color: hsl(280, 100%, 50%);
    }

    .value-icon.yellow {
        background-color: hsl(45, 100%, 50%, 0.1);
        color: hsl(45, 100%, 50%);
    }

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.vm-item {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--primary) / 0.2;
    background-color: var(--card);
    box-shadow: var(--shadow-cyber);
    animation: slide-in-left 0.6s ease;
}

    .vm-item:nth-child(2) {
        animation: slide-in-right 0.6s ease;
    }

.vm-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.vm-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary) / 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

    .vm-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: var(--primary);
    }

.vm-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.vm-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 3.75rem;
    }
}

/* Goals Section */
.goals-section {
    padding: 5rem 0;
    background: var(--gradient-secondary);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.goal-item {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card) / 0.5;
    backdrop-filter: blur(4px);
    transition: var(--transition-slow);
    height: 100%;
    box-shadow: var(--shadow-cyber);
    animation: fade-in-up 0.6s ease;
}

    .goal-item:hover {
        background-color: var(--card);
        border-color: var(--primary) / 0.3;
        transform: translateY(-4px);
    }

.goal-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--primary) / 0.2;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.goal-item:hover .goal-number {
    color: var(--primary) / 0.3;
}

.goal-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

    .goal-icon.blue-purple {
        background: linear-gradient(135deg, hsl(220, 100%, 50%), hsl(280, 100%, 60%));
    }

    .goal-icon.green-teal {
        background: linear-gradient(135deg, hsl(120, 100%, 40%), hsl(180, 100%, 40%));
    }

    .goal-icon.orange-red {
        background: linear-gradient(135deg, hsl(30, 100%, 50%), hsl(0, 100%, 50%));
    }

    .goal-icon.purple-pink {
        background: linear-gradient(135deg, hsl(280, 100%, 50%), hsl(320, 100%, 50%));
    }

.goal-item:hover .goal-icon {
    transform: scale(1.1);
}

.goal-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.goal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.goal-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.goal-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary) / 0.05, var(--primary) / 0.1);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.goal-item:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .goals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-cyber);
    animation: fade-in-up 0.6s ease;
}

    .service-item:hover {
        background-color: var(--card) / 0.8;
        border-color: var(--primary) / 0.3;
        transform: translateY(-4px);
    }

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

    .service-icon.blue {
        background-color: hsl(220, 100%, 50%, 0.1);
        color: hsl(220, 100%, 50%);
        border: 1px solid hsl(220, 100%, 50%, 0.2);
    }

    .service-icon.green {
        background-color: hsl(120, 100%, 40%, 0.1);
        color: hsl(120, 100%, 40%);
        border: 1px solid hsl(120, 100%, 40%, 0.2);
    }

    .service-icon.red {
        background-color: hsl(0, 84%, 60%, 0.1);
        color: hsl(0, 84%, 60%);
        border: 1px solid hsl(0, 84%, 60%, 0.2);
    }

    .service-icon.yellow {
        background-color: hsl(45, 100%, 60%, 0.1);
        color: hsl(45, 100%, 60%);
        border: 1px solid hsl(45, 100%, 60%, 0.2);
    }

    .service-icon.purple {
        background-color: hsl(280, 100%, 50%, 0.1);
        color: hsl(280, 100%, 50%);
        border: 1px solid hsl(280, 100%, 50%, 0.2);
    }

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .service-features li {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

        .service-features li::before {
            content: '';
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background-color: var(--primary);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

.service-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--primary) / 0.2;
    background-color: transparent;
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

    .service-btn:hover {
        border-color: var(--primary);
        background-color: var(--primary);
        color: white;
    }

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: var(--gradient-secondary);
}

.news-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.featured-news {
    grid-column: 1;
}

.news-card.featured {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid hsl(0, 84%, 60%, 0.2);
    background-color: var(--card);
    box-shadow: var(--shadow-cyber);
    animation: slide-in-left 0.6s ease;
}

.news-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.news-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .news-icon.red {
        background-color: hsl(0, 84%, 60%, 0.1);
        color: hsl(0, 84%, 60%);
    }

    .news-icon.green {
        background-color: hsl(120, 100%, 40%, 0.1);
        color: hsl(120, 100%, 40%);
    }

    .news-icon.blue {
        background-color: hsl(220, 100%, 50%, 0.1);
        color: hsl(220, 100%, 50%);
    }

    .news-icon.orange {
        background-color: hsl(30, 100%, 50%, 0.1);
        color: hsl(30, 100%, 50%);
    }

    .news-icon.purple {
        background-color: hsl(280, 100%, 50%, 0.1);
        color: hsl(280, 100%, 50%);
    }

    .news-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.news-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

    .news-badge.urgent {
        background-color: hsl(0, 84%, 60%);
    }

.news-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-left: auto;
}

.time-icon {
    width: 1rem;
    height: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.news-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

    .news-btn:hover {
        opacity: 0.9;
    }

.btn-arrow {
    width: 1rem;
    height: 1rem;
}

.recent-news {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: var(--transition);
    box-shadow: var(--shadow-cyber);
    animation: slide-in-right 0.6s ease;
}

    .news-item:hover {
        background-color: var(--card) / 0.8;
        border-color: var(--primary) / 0.3;
    }

.news-content-item {
    flex: 1;
    margin-left: 1rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.news-category {
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

    .news-category.red {
        background-color: hsl(0, 84%, 60%, 0.1);
        color: hsl(0, 84%, 60%);
        border-color: hsl(0, 84%, 60%);
    }

    .news-category.green {
        background-color: hsl(120, 100%, 40%, 0.1);
        color: hsl(120, 100%, 40%);
        border-color: hsl(120, 100%, 40%);
    }

    .news-category.blue {
        background-color: hsl(220, 100%, 50%, 0.1);
        color: hsl(220, 100%, 50%);
        border-color: hsl(220, 100%, 50%);
    }

    .news-category.orange {
        background-color: hsl(30, 100%, 50%, 0.1);
        color: hsl(30, 100%, 50%);
        border-color: hsl(30, 100%, 50%);
    }

    .news-category.purple {
        background-color: hsl(280, 100%, 50%, 0.1);
        color: hsl(280, 100%, 50%);
        border-color: hsl(280, 100%, 50%);
    }

.news-time-small {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

.news-title-small {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
}

    .news-title-small:hover {
        color: var(--primary);
    }

.news-desc-small {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.more-news {
    margin-top: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.news-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--card);
    transition: var(--transition);
    box-shadow: var(--shadow-cyber);
    animation: fade-in-up 0.6s ease;
}

    .news-card:hover {
        background-color: var(--card) / 0.8;
        border-color: var(--primary) / 0.3;
    }

.news-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
}

    .news-card-title:hover {
        color: var(--primary);
    }

.news-card-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-link {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}

    .news-link:hover {
        color: var(--primary) / 0.8;
    }

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary) / 0.2;
    background-color: transparent;
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: var(--shadow-cyber);
}

    .view-all-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-content {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer */
.footer {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 4rem;
    width: 4rem;
    box-shadow: var(--shadow-cyber);
}

.footer-brand-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-brand-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--muted-foreground);
}

.contact-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    color: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.footer-section {
    animation: fade-in-up 0.6s ease;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-link-list a {
        color: var(--muted-foreground);
        text-decoration: none;
        font-size: 0.875rem;
        transition: var(--transition);
    }

        .footer-link-list a:hover {
            color: var(--primary);
        }

.newsletter {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.newsletter-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    align-items: center;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: var(--muted-foreground);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 1rem;
}

    .newsletter-input::placeholder {
        color: var(--muted-foreground);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px var(--primary) / 0.2;
    }

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-cyber);
}

    .newsletter-btn:hover {
        opacity: 0.9;
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--primary) / 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-cyber);
}

    .social-link:hover {
        background-color: var(--primary);
        color: white;
    }

    .social-link svg {
        width: 1rem;
        height: 1rem;
    }

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

    .legal-links a {
        color: var(--muted-foreground);
        text-decoration: none;
        transition: var(--transition);
    }

        .legal-links a:hover {
            color: var(--primary);
        }

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 3fr;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes cyber-pulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary) / 0.5;
    }

    50% {
        box-shadow: 0 0 20px var(--primary) / 0.8;
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
