body {
  font-family: "Courier New", monospace;
  margin: 0;
  background: #0f172a;
  color: #e5e7eb;
}
* {
    font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee', cursive !important;
    font-weight: 400;
}

header {
  text-align: center;
  padding: 40px;
  background: #020617;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

nav {
  margin-top: 15px;
}

nav a {
  margin: 0 10px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
}


h2 {
  color: #38bdf8;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 8px 0;
}

button {
  padding: 10px 20px;
  border: none;
  background: #38bdf8;
  color: #020617;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #0ea5e9;
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  font-size: 0.9rem;
}
.navbar {
  position: fixed;          top: 0;
  left: 0;
  width: 100%;
  height: 10px;   
  z-index: 1000;

  display: flex;
  align-items: center;

  background: rgba(2, 6, 23, 0.6);   backdrop-filter: blur(10px);      -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo img {
  height: 60px;
  width: auto;
}
.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
  width: 500px;              
  display: flex;
  align-items: center;
  justify-content: space-between; }

.menu a {
    text-align: center;
  padding-bottom: 18px;
  line-height: 56px;
  font-size: 18px;
  color: #e5e7eb;
  text-decoration: none;
  flex-shrink: 0; }

.menu a:hover {
  color: #38bdf8;
}
.logo img:hover {
  opacity: 0.8;
}
.hero {
  width: 100vw;            height: 100vh;           margin: 0;
  padding: 0;

  background:
    linear-gradient(rgba(2,6,23,0.6), rgba(2,6,23,0.6)),
    url("img/z7363321585018_0a19bab3e4960c30a63b52d4fc4cb1c0.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.hero-content h1 {
  font-size: 3rem;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #38bdf8;
  letter-spacing: 1px;
}
.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.footer-logo img {
  width: 120px;
  margin-bottom: 16px;
}

.footer-logo p {
  font-size: 14px;
  color: #9ca3af;
}
.footer-table {
  border-collapse: collapse;
  flex: 1;   table-layout: fixed;   width: 100%;
}
.footer-table th {
  text-align: center;   padding-bottom: 16px;
  font-size: 16px;
  color: #ffffff;   font-weight: bold;
}
.footer-table th,
.footer-table td {
  width: 33.33%;
  vertical-align: top;
}
.footer-table td {
  text-align: center;   padding: 0 20px 12px 20px;   font-size: 14px;
}
.footer-table a {
  color: #e5e7eb;   text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;   transition: color 0.3s ease;
  font-weight: normal; }
.footer-table a:hover {
  color: #d1d5db;   text-decoration: underline; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #6b7280;
}
.footer-email {
  color: #99e6ff;   display: inline-block;
  margin-bottom: 8px;
  cursor: default; }.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #020617;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;   opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite alternate;
}

.splash-screen h1 {
  color: #38bdf8;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.splash-screen p {
  color: #e5e7eb;
  font-size: 1rem;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.05); opacity: 1; }
}
body.splash-active {
  overflow: hidden;
}.hero-content h1 {
  font-size: 3rem;
  color: #e5e7eb;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.5rem;
  color: #38bdf8;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.hero-content h1:hover,
.hero-content p:hover {
  animation: simpleGlitch 0.3s;
}

@keyframes simpleGlitch {
  0%, 100% {
    transform: translateX(0);
    text-shadow: 0 0 0 transparent;
  }
  25% {
    transform: translateX(-2px);
    text-shadow: -2px 0 0 #ff00ff;
  }
  50% {
    transform: translateX(2px);
    text-shadow: 2px 0 0 #00ffff;
  }
  75% {
    transform: translateX(-1px);
    text-shadow: -1px 0 0 #ffff00;
  }
}
@keyframes shakeGlitch {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px); }
  40%, 80% { transform: translateX(3px); }
}
.hero-content h1:hover.shake,
.hero-content p:hover.shake {
  animation: shakeGlitch 0.3s;
}.corner-element {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;      height: 100px;     z-index: 10000;
  
    opacity: 0;
  visibility: hidden;
  
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.corner-element.visible {
  opacity: 1;
  visibility: visible;
}

.corner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
  
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.corner-element.large {
  width: 120px;
  height: 120px;
}

.corner-element.x-large {
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  .corner-element {
    width: 80px;        height: 80px;
  }
  
  .corner-element.large {
    width: 100px;
    height: 100px;
  }
  
  .corner-element.x-large {
    width: 120px;
    height: 120px;
  }
}:root {
  --electric: #0066ff;
  --neon-blue: #00ccff;
  --cyan: #00ffff;
  --dark-electric: #0052cc;
}

body {
  background: #02263f;
  color: #ccf5ff;
  
}

.navbar {
  background: rgba(0, 20, 40, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 204, 255, 0.4);
}

.menu a {
  color: #66d9ff;
  position: relative;
}

.menu a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066ff, #00ffff);
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.hero-content h1 {
  color: #00ccff;
  text-shadow: 
    0 0 10px #0066ff,
    0 0 20px #00ccff,
    0 0 30px rgba(0, 204, 255, 0.5);
}

.hero-content p {
  color: #66d9ff;
  letter-spacing: 3px;
}

.footer {
  background: linear-gradient(to top, #001a33 0%, #003366 100%);
}

.footer-table th {
  color: #00ccff;
}

.footer-table a {
  color: #99e6ff;
}

.footer-table a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; }
footer {
    width: 100%;
    box-sizing: border-box;     padding: 20px;
    word-wrap: break-word; }
footer a, footer p, footer div {
    max-width: 100%;
    overflow-wrap: break-word;
}.events-slider {
  padding: 5%;
  max-width: 1200px;
  margin: 15%;
  margin-top: 0px;
  margin-bottom: 0px;
  background: #02263f; }
.slider-header {
  margin-bottom: 30px;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  color: #0d47a1;   font-weight: 700;
  margin: 0;
  text-align: left;
}
.slides-container {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 600px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
  border: 1px solid #bbdefb;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  color: #0d47a1;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #0d47a1;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}
.event-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  
  box-sizing: border-box;
}

.event-slide.active {
  opacity: 1;
  z-index: 2;
}
.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
  border-collapse: collapse;
}
.cell {
  overflow: hidden;
  position: relative;
}
.img-cell {
  background: #f5f5f5;
}

.img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.text-cell {
  padding: 25px;
  display: flex;
  align-items: center;
  background: white;
}

.content {
  width: 100%;
}
.event-title {
  font-size: 2rem;
  margin: 0 0 8px 0;
  color: #0d47a1;
  font-weight: 700;
}

.event-subtitle {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  color: #546e7a;
  font-weight: 500;
}
.event-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #37474f;
  margin-bottom: 20px;
}

.event-info {
  font-size: 1rem;
  color: #546e7a;
}

.event-info p {
  margin: 6px 0;
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}

.event-info strong {
  color: #0d47a1;
  min-width: 100px;
  display: inline-block;
}
.top-left {
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.top-right {
  border-bottom: 1px solid #e0e0e0;
}

.bottom-left {
  border-right: 1px solid #e0e0e0;
}
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0d47a1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #0d47a1;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(13, 71, 161, 0.5);
}
@media (max-width: 992px) {
  .slides-container {
    height: 500px;
  }
  
  .text-cell {
    padding: 20px;
  }
  
  .event-title {
    font-size: 1.7rem;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 180px 250px 180px;
  }
  
  .slides-container {
    height: 790px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
    .top-left, .top-right, .bottom-left {
    border: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

@media (max-width: 480px) {
  .events-slider {
    padding: 40px 15px;
  }
  
  .slides-container {
    height: 700px;
  }
  
  .grid-2x2 {
    grid-template-rows: 150px 150px 220px 150px;
  }
  
  .text-cell {
    padding: 15px;
  }
  
  .event-title {
    font-size: 1.5rem;
  }
  
  .event-subtitle {
    font-size: 1.1rem;
  }
  
  .event-description {
    font-size: 1rem;
  }
}.grid-2x2 .cell {
  border: none !important;
}
.grid-2x2 .top-left,
.grid-2x2 .top-right,
.grid-2x2 .bottom-left,
.grid-2x2 .bottom-right {
  border: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-top: none !important;
}
.grid-2x2 {
  border: none !important;
  outline: none !important;
}
.slides-container,
.event-slide {
  border: none !important;
}.top-right-corner {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 9999;
}

.top-right-corner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .top-right-corner { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .top-right-corner { width: 40px; height: 40px; }
}
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  background: white;
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.5);
}
.snowflake.layer-1 {
  opacity: 0.9;
  filter: blur(0px);
}
.snowflake.layer-2 {
  opacity: 0.7;
  filter: blur(0.5px);
}
.snowflake.layer-3 {
  opacity: 0.5;
  filter: blur(1px);
}
h1, h2, h3, h4, h5, h6 {
        font-family: 'Bungee', cursive !important;
        font-weight: 400;     }
    
        p {
        font-family: 'Open Sans', sans-serif !important;
        font-weight: 400;         line-height: 1.6;     }
    
        .bungee-text {
        font-family: 'Bungee', cursive !important;
    }
    
    .open-sans-text {
        font-family: 'Open Sans', sans-serif !important;
    }
    html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; }.about-club {
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-club::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #00ffff);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  color: #00ccff;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
  font-family: 'Bungee', cursive;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #99e6ff;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 204, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
  border-color: rgba(0, 204, 255, 0.4);
}
.info-card {
  text-align: center;
}

.club-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.5));
}

.club-basic-info {
  text-align: left;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: #66d9ff;
  font-weight: 600;
}

.info-value {
  color: #ffffff;
  font-weight: 500;
}
.description-card h3 {
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.description-card p {
  color: #ccf5ff;
  line-height: 1.7;
  margin-bottom: 20px;
}

.description-card h4 {
  color: #00ccff;
  margin: 25px 0 15px;
  font-size: 1.3rem;
}

.description-card ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.description-card li {
  color: #ccf5ff;
  margin-bottom: 10px;
  line-height: 1.6;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

@media (max-width: 768px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }
}

.activity-item {
  background: rgba(0, 102, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 204, 255, 0.2);
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateX(5px);
}

.activity-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.activity-item h5 {
  color: #00ffff;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.activity-item p {
  color: #99e6ff;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.closing-text {
  font-style: italic;
  color: #ffffff !important;
  font-weight: 500;
  background: rgba(0, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #00ffff;
}
.achievements-section {
  margin-top: 60px;
}

.achievements-section h3 {
  text-align: center;
  color: #00ccff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Bungee', cursive;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

.achievement-item {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 204, 255, 0.1));
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 204, 255, 0.3);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
  border-color: #00ffff;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 10px;
  font-family: 'Bungee', cursive;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.achievement-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.achievement-desc {
  color: #99e6ff;
  font-size: 0.9rem;
  line-height: 1.5;
}.about-club::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #0066ff 20%, 
    #00ffff 50%, 
    #0066ff 80%, 
    transparent 100%
  );
  width: 100%;
}
.divider-blue {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    #001a33 0%, 
    #0066ff 25%, 
    #00ffff 50%, 
    #0066ff 75%, 
    #001a33 100%
  );
  margin: 0;
  border: none;
}.team-section {
  background: linear-gradient(135deg, #0f1a30 0%, #1a2b4d 100%);
  padding: 100px 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #00ffff, #0066ff);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .section-title {
  color: #00ffff;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.team-header .section-subtitle {
  color: #99e6ff;
  font-size: 1.3rem;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-stats {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(0, 204, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 10px;
  font-family: 'Bungee', cursive;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.stat-label {
  color: #ccf5ff;
  font-size: 1rem;
  font-weight: 500;
}
.department-section {
  margin-bottom: 80px;
}

.department-title {
  text-align: center;
  color: #00ccff;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-family: 'Bungee', cursive;
}

.department-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 204, 255, 0.4);
}
.department-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mechanical .department-header {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.1), rgba(255, 150, 150, 0.05));
  border-left: 5px solid #ff6666;
}

.programming .department-header {
  background: linear-gradient(135deg, rgba(100, 200, 255, 0.1), rgba(150, 220, 255, 0.05));
  border-left: 5px solid #66ccff;
}

.business .department-header {
  background: linear-gradient(135deg, rgba(100, 255, 150, 0.1), rgba(150, 255, 180, 0.05));
  border-left: 5px solid #66ff99;
}

.department-icon {
  font-size: 2.5rem;
}

.department-info h4 {
  color: white;
  margin: 0 0 8px 0;
  font-size: 1.6rem;
}

.department-count {
  color: #99e6ff;
  font-size: 1rem;
  font-weight: 500;
}
.department-content {
  padding: 30px;
}

.department-description {
  margin-bottom: 25px;
}

.department-description p {
  color: #ccf5ff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.department-skills {
  margin-bottom: 25px;
}

.department-skills h5 {
  color: #00ccff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(0, 204, 255, 0.1);
  color: #66d9ff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 204, 255, 0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(0, 204, 255, 0.2);
  color: #00ffff;
  transform: translateY(-2px);
}

.department-members {
  margin-bottom: 25px;
}

.department-members h5 {
  color: #00ccff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.department-members ul {
  padding-left: 20px;
  margin: 0;
}

.department-members li {
  color: #ccf5ff;
  margin-bottom: 8px;
  line-height: 1.6;
}
.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.member-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  min-width: 180px;
  transition: all 0.3s ease;
}

.member-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.member-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.member-info {
  display: flex;
  flex-direction: column;
}

.member-name {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.member-role {
  color: #99e6ff;
  font-size: 0.85rem;
  margin-top: 3px;
}

.more-members {
  color: #66d9ff;
  font-style: italic;
  display: flex;
  align-items: center;
  padding: 15px;
}
.workflow-section {
  margin-bottom: 60px;
}

.workflow-title {
  text-align: center;
  color: #00ccff;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-family: 'Bungee', cursive;
}

.workflow-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #00ffff, #0066ff);
  z-index: 1;
}

@media (max-width: 768px) {
  .workflow-steps::before {
    display: none;
  }
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .workflow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.step-number {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

@media (max-width: 768px) {
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.step-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  flex: 1;
  border: 1px solid rgba(0, 204, 255, 0.2);
}

.step-content h4 {
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.step-content p {
  color: #ccf5ff;
  margin: 0;
  line-height: 1.6;
}
.team-message {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.05));
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

@media (max-width: 768px) {
  .team-message {
    flex-direction: column;
    text-align: center;
  }
}

.message-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.message-content h3 {
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.message-content p {
  color: #ccf5ff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow-step {
  animation: fadeInUp 0.6s ease forwards;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(2) { animation-delay: 0.2s; }
.workflow-step:nth-child(3) { animation-delay: 0.3s; }
.workflow-step:nth-child(4) { animation-delay: 0.4s; }
.workflow-step:nth-child(5) { animation-delay: 0.5s; }
@media (max-width: 992px) {
  .team-section {
    padding: 80px 15px;
  }
  
  .department-content {
    padding: 20px;
  }
  
  .member-list {
    flex-direction: column;
  }
  
  .member-item {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .team-header .section-title {
    font-size: 2.2rem;
  }
  
  .department-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .workflow-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}.workflow-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px; }

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #00ffff, #0066ff);
  z-index: 1;
}

.workflow-step {
  position: relative;
  z-index: 2;
  background: rgba(13, 26, 51, 0.7);   border-radius: 15px;
}

.step-number {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

.step-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  flex: 1;
  border: 1px solid rgba(0, 204, 255, 0.2);
  position: relative;
  z-index: 2;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.member-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.member-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 204, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
  z-index: 100;
}
.member-card .member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.member-basic {
  width: 100%;
}

.member-card .member-name {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.member-card .member-role {
  color: #66d9ff;
  font-size: 0.9rem;
  opacity: 0.9;
}
.member-hover-card {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 200px;
  background: linear-gradient(135deg, #0a1a3a 0%, #1a2b5a 100%);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid #00ccff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.member-card:hover .member-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.member-hover-card::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #00ccff;
}

.member-hover-card h5 {
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 204, 255, 0.3);
  padding-bottom: 10px;
}

.member-details {
  color: #ccf5ff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.member-details p {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
}

.member-details strong {
  color: #66d9ff;
  min-width: 100px;
  display: inline-block;
}
.more-card {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.more-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.more-icon {
  font-size: 2rem;
  color: #66d9ff;
  font-weight: bold;
  margin-bottom: 10px;
}

.more-text {
  color: #99e6ff;
  font-size: 0.9rem;
}
.mentor-section {
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.3), rgba(0, 102, 204, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

.mentor-title {
  text-align: center;
  color: #00ffff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Bungee', cursive;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mentor-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 204, 255, 0.2);
  transition: all 0.4s ease;
}

.mentor-card:hover {
  transform: translateY(-10px);
  border-color: #00ffff;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.mentor-header {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  text-align: center;
}

.mentor-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.mentor-name {
  color: #ffd700;
  font-size: 1.8rem;
  margin: 0 0 5px 0;
}

.mentor-position {
  color: #ffcc66;
  font-size: 1.1rem;
  opacity: 0.9;
}

.mentor-content {
  padding: 25px;
}

.mentor-details {
  color: #ccf5ff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.mentor-details p {
  margin: 12px 0;
  display: flex;
}

.mentor-details strong {
  color: #66d9ff;
  min-width: 70px;
  display: inline-block;
}

.mentor-expertise {
  margin-top: 20px;
}

.mentor-expertise h5 {
  color: #00ccff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tag {
  background: rgba(0, 204, 255, 0.1);
  color: #66d9ff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

@media (max-width: 992px) {
  .member-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .mentor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .workflow-steps::before {
    left: 40px;
    right: 40px;
  }
  
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .member-hover-card {
    width: 250px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
  }
  
  .mentor-section {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .member-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-steps {
    padding-left: 20px;
  }
  
  .workflow-steps::before {
    left: 30px;
    right: 30px;
  }
}
.mentor-note {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

.mentor-note p {
  color: #ffcc66;
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.menu a {
    font-family: 'Bungee', cursive !important;
}.menu a.active {
  color: #00ffff !important;
  position: relative; }
.menu a.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;   height: 2px !important;
  background: linear-gradient(90deg, #0066ff, #00ffff) !important;
  transition: width 0.3s ease !important;
}
.menu a.active:hover::after {
  width: 100% !important; }.menu a.active {
  color: #00ffff !important;
}

.menu a.active::after {
  width: 100% !important;
}.event-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  will-change: transform, opacity;
}
.event-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.event-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}
.event-slide.next {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}
.event-slide:not(.active):not(.prev):not(.next) {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}
.nav-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.indicator {
  transition: all 0.3s ease !important;
}
.slides-container {
  perspective: 1000px;
  overflow: hidden;
}.slides-container {
  background: #104266 !important;   overflow: hidden;
}
.event-slide {
  background: white;
  border-radius: 10px;
}
.grid-2x2 {
  background: white;
}
.cell {
  background: inherit; }
.event-slide.active,
.event-slide.prev,
.event-slide.next {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
}
.event-slide {
  transform: translateX(100%); }

.event-slide.active {
  transform: translateX(0);
}

.event-slide.prev {
  transform: translateX(-100%);
}
.slides-container {
  perspective: 1200px;
}

.event-slide {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease;
  backface-visibility: hidden;
}
.slides-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #104266;
  z-index: -1;
}


#mini-robot-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9995;
  overflow: hidden;
}
#mini-robot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 80px;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  z-index: 9996;
}
.robot-body {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
  border-radius: 10px 10px 5px 5px;
  border: 3px solid #003366;
  box-shadow: 
    0 5px 15px rgba(0, 102, 255, 0.4),
    inset 0 -10px 20px rgba(255, 255, 255, 0.2);
}
.robot-eye {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 12px;
  height: 12px;
  background: #00ffff;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 10px #00ffff;
  animation: eyeBlink 3s infinite;
}

.robot-eye.right {
  left: auto;
  right: 15px;
}

@keyframes eyeBlink {
  0%, 95%, 100% { height: 12px; }
  96%, 99% { height: 2px; }
}
.robot-wheel {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  border: 3px solid #666;
  animation: wheelSpin 0.5s linear infinite;
}

.robot-wheel.left {
  left: 5px;
}

.robot-wheel.right {
  right: 5px;
}

@keyframes wheelSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.robot-antenna {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  background: #ff3333;
  border-radius: 2px;
}

.robot-antenna::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #ff6666;
  border-radius: 50%;
  animation: antennaPulse 2s infinite;
}

@keyframes antennaPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
.robot-trail {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9994;
}
.resources-hero {
  width: 100vw;
  height: 70vh;
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(2,6,23,0.8), rgba(2,6,23,0.8)),
              url("img/z7363321585018_0a19bab3e4960c30a63b52d4fc4cb1c0.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.resources-hero-content h1 {
  font-size: 4rem;
  color: #00ffff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.resources-hero-content p {
  font-size: 1.5rem;
  color: #99e6ff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.resources-main {
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  padding: 80px 20px;
}

.resources-container {
  max-width: 1200px;
  margin: 0 auto;
}

.resources-header {
  text-align: center;
  margin-bottom: 60px;
}

.resources-header .section-title {
  color: #00ffff;
  margin-bottom: 15px;
  font-size: 3rem;
}

.resources-header .section-subtitle {
  color: #99e6ff;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.featured-section {
  margin-bottom: 80px;
}

.featured-section h3 {
  color: #00ccff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Bungee', cursive;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.featured-article-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 204, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-article-card:hover {
  transform: translateY(-10px);
  border-color: #00ffff;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.article-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff3333;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.article-category {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.mechanical-badge {
  background: rgba(255, 100, 100, 0.2);
  color: #ff9999;
  border: 1px solid rgba(255, 100, 100, 0.4);
}

.programming-badge {
  background: rgba(100, 200, 255, 0.2);
  color: #99ddff;
  border: 1px solid rgba(100, 200, 255, 0.4);
}

.electronics-badge {
  background: rgba(100, 255, 150, 0.2);
  color: #99ffbb;
  border: 1px solid rgba(100, 255, 150, 0.4);
}

.article-content h4 {
  color: white;
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.article-content p {
  color: #ccf5ff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  color: #99e6ff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.meta-date, .meta-author, .meta-level {
  display: flex;
  align-items: center;
  gap: 5px;
}
.categories-section {
  margin-bottom: 80px;
}

.categories-section h3 {
  color: #00ccff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Bungee', cursive;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mechanical-card:hover {
  border-color: #ff6666;
  background: rgba(255, 100, 100, 0.1);
}

.programming-card:hover {
  border-color: #66ccff;
  background: rgba(100, 200, 255, 0.1);
}

.strategy-card:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.business-card:hover {
  border-color: #66ff99;
  background: rgba(100, 255, 150, 0.1);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.category-content h4 {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}

.category-content p {
  color: #ccf5ff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.category-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  color: #99e6ff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}
.learning-paths-section {
  margin-bottom: 80px;
}

.learning-paths-section h3 {
  color: #00ccff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Bungee', cursive;
}

.paths-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.path-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.beginner-path .path-header {
  background: linear-gradient(135deg, rgba(100, 200, 255, 0.2), rgba(150, 220, 255, 0.1));
  border-bottom: 3px solid #66ccff;
}

.intermediate-path .path-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 235, 100, 0.1));
  border-bottom: 3px solid #ffd700;
}

.advanced-path .path-header {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.2), rgba(255, 150, 150, 0.1));
  border-bottom: 3px solid #ff6666;
}

.path-header {
  padding: 25px;
  text-align: center;
}

.path-level {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.beginner-path .path-level {
  background: #66ccff;
}

.intermediate-path .path-level {
  background: #ffd700;
  color: #333;
}

.advanced-path .path-level {
  background: #ff6666;
}

.path-header h4 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.path-content {
  padding: 25px;
}

.path-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.path-content li {
  color: #ccf5ff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.path-duration {
  color: #99e6ff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.external-resources-section {
  margin-bottom: 60px;
}

.external-resources-section h3 {
  color: #00ccff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Bungee', cursive;
}

.external-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.external-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.external-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
  border-color: rgba(0, 204, 255, 0.4);
}

.external-logo {
  font-size: 2rem;
  color: #00ccff;
}

.external-info h5 {
  color: white;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.external-info p {
  color: #ccf5ff;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .resources-hero-content h1 {
    font-size: 3rem;
  }
  
  .resources-hero-content p {
    font-size: 1.3rem;
  }
  
  .featured-grid,
  .categories-grid,
  .paths-container,
  .external-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .resources-hero {
    height: 60vh;
  }
  
  .resources-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .resources-hero-content p {
    font-size: 1.1rem;
  }
  
  .resources-header .section-title {
    font-size: 2.5rem;
  }
  
  .resources-header .section-subtitle {
    font-size: 1.1rem;
  }
  
  .featured-section h3,
  .categories-section h3,
  .learning-paths-section h3,
  .external-resources-section h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .resources-hero {
    height: 50vh;
  }
  
  .resources-hero-content h1 {
    font-size: 2rem;
  }
  
  .resources-main {
    padding: 60px 15px;
  }
  
  .featured-grid,
  .categories-grid,
  .paths-container,
  .external-grid {
    grid-template-columns: 1fr;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}.menu a.active {
  color: #00ffff !important;
  position: relative;
}

.menu a.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(90deg, #0066ff, #00ffff) !important;
  transition: width 0.3s ease !important;
}
.menu a.active:hover {
  color: #00ffff !important;
}

.menu a.active:hover::after {
  width: 100% !important;
}.mechanical-card {
  border: 1px solid rgba(204, 153, 0, 0.3) !important;
  background: rgba(204, 153, 0, 0.05) !important;
}

.programming-card {
  border: 1px solid rgba(100, 150, 255, 0.3) !important;
  background: rgba(100, 150, 255, 0.05) !important;
}

.business-card {
  border: 1px solid rgba(255, 100, 180, 0.3) !important;
  background: rgba(255, 100, 180, 0.05) !important;
}
.mechanical-card:hover {
  transform: translateY(-10px) !important;
  border-color: #cc9900 !important;
  background: rgba(204, 153, 0, 0.15) !important;
  box-shadow: 0 15px 35px rgba(204, 153, 0, 0.25) !important;
}

.programming-card:hover {
  transform: translateY(-10px) !important;
  border-color: #6699ff !important;
  background: rgba(100, 150, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(100, 150, 255, 0.25) !important;
}

.business-card:hover {
  transform: translateY(-10px) !important;
  border-color: #ff66aa !important;
  background: rgba(255, 100, 180, 0.15) !important;
  box-shadow: 0 15px 35px rgba(255, 100, 180, 0.25) !important;
}.department-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mechanical .department-header {
  background: linear-gradient(135deg, rgba(204, 153, 0, 0.2), rgba(204, 173, 51, 0.1)) !important;
  border-left: 5px solid #cc9900 !important; }

.programming .department-header {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.2), rgba(150, 200, 255, 0.1)) !important;
  border-left: 5px solid #6699ff !important; }

.business .department-header {
  background: linear-gradient(135deg, rgba(255, 100, 180, 0.2), rgba(255, 150, 220, 0.1)) !important;
  border-left: 5px solid #ff66aa !important; }.comment-form {
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
}

.submit-btn {
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.comments-list {
  margin-top: 30px;
  width: 100%;
}

.comment-item {
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  transition: all 0.3s ease;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.comment-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.comment-author {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.comment-time {
  font-size: 0.85rem;
  opacity: 0.8;
}

.comment-content {
  line-height: 1.6;
  font-size: 1rem;
  padding-left: 55px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.comment-count {
  font-weight: bold;
}
.comment-theme-business .comment-form {
  background: rgba(255, 150, 200, 0.05);
  border: 1px solid rgba(255, 150, 200, 0.2);
}

.comment-theme-business .form-group input,
.comment-theme-business .form-group textarea {
  background: rgba(255, 150, 200, 0.1);
  border: 1px solid rgba(255, 150, 200, 0.3);
}

.comment-theme-business .form-group input:focus,
.comment-theme-business .form-group textarea:focus {
  outline: none;
  border-color: #ff66aa;
  box-shadow: 0 0 0 2px rgba(255, 102, 170, 0.2);
}

.comment-theme-business .submit-btn {
  background: linear-gradient(135deg, #ff66aa, #ff99cc);
}

.comment-theme-business .submit-btn:hover {
  box-shadow: 0 5px 15px rgba(255, 102, 170, 0.3);
}

.comment-theme-business .comment-item {
  background: rgba(255, 150, 200, 0.03);
  border-left: 3px solid rgba(255, 150, 200, 0.3);
}

.comment-theme-business .comment-item:hover {
  background: rgba(255, 150, 200, 0.05);
}

.comment-theme-business .comment-avatar {
  background: linear-gradient(135deg, #ff66aa, #ff99cc);
}

.comment-theme-business .comment-author {
  color: #ff99cc;
}

.comment-theme-business .comment-time {
  color: #99e6ff;
}

.comment-theme-business .comment-content {
  color: #ccf5ff;
}

.comment-theme-business .comment-count {
  color: #ff66aa;
}
.comment-theme-mechanical .comment-form {
  background: rgba(255, 140, 0, 0.05);
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.comment-theme-mechanical .form-group input,
.comment-theme-mechanical .form-group textarea {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.comment-theme-mechanical .form-group input:focus,
.comment-theme-mechanical .form-group textarea:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.comment-theme-mechanical .submit-btn {
  background: linear-gradient(135deg, #ff8c00, #ffb347);
}

.comment-theme-mechanical .submit-btn:hover {
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.comment-theme-mechanical .comment-item {
  background: rgba(255, 140, 0, 0.03);
  border-left: 3px solid rgba(255, 140, 0, 0.3);
}

.comment-theme-mechanical .comment-item:hover {
  background: rgba(255, 140, 0, 0.05);
}

.comment-theme-mechanical .comment-avatar {
  background: linear-gradient(135deg, #ff8c00, #ffb347);
}

.comment-theme-mechanical .comment-author {
  color: #ffb347;
}

.comment-theme-mechanical .comment-time {
  color: #ffd699;
}

.comment-theme-mechanical .comment-content {
  color: #fff5eb;
}

.comment-theme-mechanical .comment-count {
  color: #ff8c00;
}
.comment-theme-programming .comment-form {
  background: rgba(51, 153, 255, 0.05);
  border: 1px solid rgba(51, 153, 255, 0.2);
}

.comment-theme-programming .form-group input,
.comment-theme-programming .form-group textarea {
  background: rgba(51, 153, 255, 0.1);
  border: 1px solid rgba(51, 153, 255, 0.3);
}

.comment-theme-programming .form-group input:focus,
.comment-theme-programming .form-group textarea:focus {
  outline: none;
  border-color: #3399ff;
  box-shadow: 0 0 0 2px rgba(51, 153, 255, 0.2);
}

.comment-theme-programming .submit-btn {
  background: linear-gradient(135deg, #3399ff, #66b3ff);
}

.comment-theme-programming .submit-btn:hover {
  box-shadow: 0 5px 15px rgba(51, 153, 255, 0.3);
}

.comment-theme-programming .comment-item {
  background: rgba(51, 153, 255, 0.03);
  border-left: 3px solid rgba(51, 153, 255, 0.3);
}

.comment-theme-programming .comment-item:hover {
  background: rgba(51, 153, 255, 0.05);
}

.comment-theme-programming .comment-avatar {
  background: linear-gradient(135deg, #3399ff, #66b3ff);
}

.comment-theme-programming .comment-author {
  color: #66b3ff;
}

.comment-theme-programming .comment-time {
  color: #99ccff;
}

.comment-theme-programming .comment-content {
  color: #e6f2ff;
}

.comment-theme-programming .comment-count {
  color: #3399ff;
}
.comment-theme-electronics .comment-form {
  background: rgba(76, 175, 80, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.comment-theme-electronics .form-group input,
.comment-theme-electronics .form-group textarea {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.comment-theme-electronics .form-group input:focus,
.comment-theme-electronics .form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.comment-theme-electronics .submit-btn {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.comment-theme-electronics .submit-btn:hover {
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.comment-theme-electronics .comment-item {
  background: rgba(76, 175, 80, 0.03);
  border-left: 3px solid rgba(76, 175, 80, 0.3);
}

.comment-theme-electronics .comment-item:hover {
  background: rgba(76, 175, 80, 0.05);
}

.comment-theme-electronics .comment-avatar {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.comment-theme-electronics .comment-author {
  color: #66BB6A;
}

.comment-theme-electronics .comment-time {
  color: #A5D6A7;
}

.comment-theme-electronics .comment-content {
  color: #E8F5E9;
}

.comment-theme-electronics .comment-count {
  color: #4CAF50;
}
@media (max-width: 768px) {
  .comment-form {
    padding: 20px;
  }
  
  .comment-content {
    padding-left: 0;
  }
  
  .submit-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .comment-form {
    padding: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
  }
  
  .comment-content {
    font-size: 0.9rem;
  }
}