/* styles.css - SkyPySoft */
:root {
   /* === DARK THEME === */
  /* Professional Black & Blue Palette */

  /* Backgrounds */
  --bg-dark1: #000000; /* Deep, near-black (like GitHub's dark mode base) */
  --bg-dark2: #161B22; /* Slightly lighter for elements (GitHub secondary dark) */
  --bg-sidebar: #000000; /* Consistent with base or slightly different like #12181F */

  /* Text Colors */
  --text-color: #C9D1D9; /* Light grey for readable text (GitHub text) */
  --dark-text-color: #F0F6FC; /* Very light text, for emphasis on dark backgrounds */
  --text-color-muted: #8B949E; /* Muted text for less emphasis (GitHub muted text) */

  /* Accent Colors */
  --primary-color: #2F81F7; /* A vibrant, modern blue (GitHub primary button) */
  --secondary-color: #58A6FF; /* A lighter, accessible blue (GitHub links) */
  --accent-color: #00b3ff; /* A modern, professional green for highlights (GitHub green) */
  --highlight-text-color: var(--accent-color); /* Use the green for text highlights */

  /* Borders */
  --border-color: #30363D; /* Subtle border color (GitHub border) */

  /* Interactive Element States & Effects */
  --hover-bg-color: #1F242C; /* Background color for hover states on elements */
  --active-bg-color: #2A2F37; /* Background for active/pressed states */
  --glow-color: rgba(47, 129, 247, 0.4); /* Soft blue glow, semi-transparent */
  --glow-color-accent: rgba(63, 185, 80, 0.4); /* Soft green glow */

  /* Standard Colors */
  --white-color: #FFFFFF;
  --black-color: #000000; /* Pure black if needed */
  --success-color: #238636; /* Darker, more accessible green for success messages (GitHub success) */
  --error-color: #DA3633;   /* GitHub error red */

  /* Fonts */
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Layout Variables */
  
  --box-shadow-white:  0px 0px 10px rgba(255, 255, 255, 0.99);
  --box-shadow-dark:  0 10px 30px rgb(0, 0, 0);


  --top-nav-height: 70px; /* Înălțimea meniului de sus, ajustează după nevoie */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* --- Language Switcher --- */
.language-switcher-container {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px; /* Space before menu items */
    /* border-bottom: 1px solid var(--border-color); */ /* Optional: if you want a separator */
}

.lang-button {
    background: transparent;
    border: none;
    color: var(--text-color-muted);
    font-size: 0.9em;
    padding: 3px 3px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
}

.lang-button:hover {
    color: var(--accent-color);
}

.lang-button.active {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lang-separator {
    color: var(--text-color-muted);
    margin: 0 5px;
    font-size: 0.9em;
}

/* Light theme adjustments for language switcher */
body.light-theme .lang-button {
    color: var(--text-color-muted); /* Uses light theme muted text */
}

body.light-theme .lang-button:hover {
    color: var(--accent-color); /* Uses light theme accent */
}

body.light-theme .lang-button.active {
    color: var(--accent-color); /* Uses light theme accent */
}

body.light-theme .lang-separator {
    color: var(--text-color-muted);
}

/* Ajustare container switcher temă și limbă dacă sunt unul lângă altul sau pentru spațiere */
.theme-switcher-container + .language-switcher-container {
    /* border-top: 1px solid var(--border-color); */ /* Adaugă o linie dacă sunt una sub alta */
    padding-top: 10px;
    margin-top: -10px; /* Ajustează dacă vrei mai aproape de theme switcher */
}
body.light-theme .theme-switcher-container + .language-switcher-container {
    /* border-top: 1px solid var(--border-color); */
}

body {
  font-family: var(--font-primary);
  /* background-color: var(--bg-dark1); */
  background-image: radial-gradient(ellipse at center, #10151B 0%, var(--bg-dark1) 100%); /* Un centru puțin mai luminos/diferit */
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden; /* Prevent horizontal scroll on body */
}

.page-wrapper {
  /* display: flex; */
  width: 100%;
  min-height: 100vh;
  position: relative; /* Pentru footer absolut dacă e nevoie */
  padding-top: var(--top-nav-height); /* Spațiu pentru meniul fix de sus */
}

/* --- New Top Navigation Bar --- */
.top-nav {
    background-color: var(--bg-sidebar); /* Poți folosi o variabilă existentă sau una nouă */
    /* background-image: radial-gradient(ellipse at center, #10151B 0%, var(--bg-dark1) 100%); */
    width: 100%;
    height: var(--top-nav-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center; /* Centrează vertical conținutul meniului */
}
body.light-theme .top-nav {
    background-color: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.nav-container {
    width: 90%;
    max-width: 1200px; /* Sau altă lățime maximă pentru conținutul meniului */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link-top {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image-top {
    height: 40px; /* Ajustează dimensiunea logo-ului imagine */
    width: auto;
    margin-right: 5px;
    border-radius: 12px;
}

.logo-text-top {
    font-family: var(--font-secondary);
    font-size: 1.6em; /* Ajustează dimensiunea textului logo */
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}
body.light-theme .logo-text-top {
    color: var(--primary-color);
}
.main-menu ul {
    list-style: none;
    display: flex;
}

.main-menu li {
    margin-left: 5px; /* Spațiu între elementele de meniu */
}

.main-menu li a {
    display: flex; /* Schimbat în flex pentru aliniere icon și text */
    align-items: center;
    padding: 10px 15px; /* Padding pentru clickabilitate */
    color: var(--text-color-muted);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.main-menu li a i {
    margin-right: 8px; /* Spațiu între iconiță și text */
    font-size: 1.1em;
}
.main-menu li a .nav-text {
    display: inline; /* Se va ascunde pe mobil */
}

.main-menu li:hover a,
.main-menu li.active a {
    color: var(--white-color); 
    background-color: var(--primary-color);
}
.main-menu li.active a {
    box-shadow: 0 0 8px rgba(var(--accent-color), 0.5);
}

body.light-theme .main-menu li a {
    color: var(--text-color-muted);
}
body.light-theme .main-menu li:hover a,
body.light-theme .main-menu li.active a {
    color: #FFFFFF;
    background-color: var(--primary-color);
}

/* --- Burger Menu Toggle --- */
.burger-menu-toggle {
    display: none; /* Ascuns pe desktop */
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5em; /* Mărimea iconiței burger */
    cursor: pointer;
    padding: 10px;
    margin-right: 10px; /* Spațiu între burger și logo */
    z-index: 1002; /* Peste .top-nav, sub meniul deschis */
}
body.light-theme .burger-menu-toggle {
    color: var(--text-color);
}

.nav-left {
    display: flex;
    align-items: center;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Sub meniul mobil, peste restul conținutului */
}
.mobile-menu-overlay.active {
    display: block;
}

.nav-controls {
    display: flex;
    align-items: center;
}
.theme-switcher-container-top,
.language-switcher-container-top {
    margin-left: 15px; /* Spațiu între grupuri de controale */
    display: flex;
    align-items: center;
}
#theme-toggle-button { /* Stiluri existente pentru butonul de temă, pot fi ajustate */
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1em;
    padding: 6px 8px;
    border-radius: 20px;
    cursor: pointer;
}
body.light-theme #theme-toggle-button {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}
#theme-toggle-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark1); 
}
body.light-theme #theme-toggle-button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.lang-button { /* Stiluri existente, pot fi ajustate */
    background: transparent;
    border: none;
    color: var(--text-color-muted);
    font-size: 0.85em;
    padding: 3px;
    cursor: pointer;
    font-weight: 600;
}
.lang-button.active, .lang-button:hover {
    color: var(--accent-color);
}
.lang-separator {
    color: var(--text-color-muted);
    margin: 0 3px;
    font-size: 0.85em;
}
body.light-theme .lang-button {
    color: var(--text-color-muted);
}
body.light-theme .lang-button.active, 
body.light-theme .lang-button:hover {
    color: var(--accent-color);
}
body.light-theme .lang-separator {
    color: var(--text-color-muted);
}


/* --- Background Video Styles --- */
.hero-section-video {
    position: relative;
    overflow: hidden; /* Important pentru a conține video-ul */
    min-height: calc(100vh - var(--top-nav-height)); /* Umple ecranul sub meniu */
    display: flex; /* Pentru a centra .hero-content */
    align-items: center;
    justify-content: center;
    padding: 40px; /* Păstrăm padding-ul secțiunii */
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* În spatele .hero-overlay și .hero-content */
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}
.hero-overlay { /* Opțional, pentru a întuneca video-ul și a face textul mai lizibil */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajustează opacitatea */
    z-index: -1; /* Deasupra video-ului, sub conținut */
}
#home .hero-content {
    position: relative; /* Asigură că este deasupra video-ului și overlay-ului */
    z-index: 1;
    /* Stilurile existente pentru .hero-content sunt în mare parte bune */
}

/* --- Adjust Main Content --- */
.content-with-top-nav {
    /* padding-top: var(--top-nav-height); Scoatem de aici, l-am pus pe .page-wrapper */
    /* margin-left: 0; Scoate orice margin-left de la vechiul sidebar */
    width: 100%;
    /* overflow-y: auto; Scoate asta dacă .page-wrapper gestionează scroll-ul */
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 10px;
    /* background-color: var(--bg-dark2); Sau altă culoare potrivită */
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 0.9em;
}
body.light-theme .site-footer {
    background-color: var(--bg-dark2);
    border-top: 1px solid var(--border-color);
    color: var(--text-color-muted);
}




/* --- Main Content Area --- */

.section {
  display: none; /* Hide all sections by default */
  padding: 60px 40px; /* Generous padding */
  min-height: calc(100vh - 70px); /* Ensure sections try to fill viewport, adjust as needed */
  animation: fadeInSection 0.8s ease-out forwards;
  /* Remove margin-bottom from here, control spacing with padding or within sections */
}
.section:first-child { /* Optional: remove top padding from first section if hero */
  /* padding-top: 0; */
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-secondary);
  font-size: 2.8em;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header .section-subtitle {
  font-size: 1.0em;
  color: #008cff;
  max-width: 600px;
  margin: 0 auto;
}

.highlight-text {
  color: var(--highlight-text-color);
}

/* --- Hero Section (Home) --- */
#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*background: linear-gradient(rgba(26, 29, 36, 0.85), rgba(26, 29, 36, 0.95)), url('https://via.placeholder.com/1920x1080?text=Tech+Background') no-repeat center center/cover; */
  min-height: 100vh; /* Full viewport height for hero */
  padding: 40px; /* Overrides general section padding for specific layout */
}

#home .hero-content {
  max-width: 800px;
  animation: fadeInUpHero 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* --- Hero Section (PAGES **************************************************************************** --- */
#about {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#services {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#portfolio {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#process {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#pricing {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#blog {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}
#contact {
  display: block; /* Or 'flex' if its internal layout requires it */
  animation: fadeInSection 0.8s ease-out forwards;  
}




@keyframes fadeInUpHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


#home h1 {
  font-family: var(--font-secondary);
  font-size: 3.5em; /* Responsive font size */
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white-color);
}

#home .subtitle {
  font-size: 1.2em;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
}

#home p {
  font-size: 1.0em;
  margin-bottom: 30px;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--accent-color);
  color: var(--bg-dark1);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1em;
  border-radius: 50px; /* Pill shape */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 20px rgba(130, 233, 170, 0.2);
}

.cta-button:hover {
  background-color: #ffffff; /* Lighter accent */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(130, 233, 170, 0.4);
}

.cta-button.secondary-cta {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.cta-button.secondary-cta:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark1);
}

#home .hero-image-container {
  margin-top: 40px;
  max-width: 600px;
  opacity: 0;
  animation: zoomInHeroImg 1s ease-out 1s forwards;
}
#home .hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@keyframes zoomInHeroImg {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}


/* --- About Us Section --- */
.about-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text h3 {
  font-family: var(--font-secondary);
  font-size: 1.5em;
  color: var(--highlight-text-color);
  margin-bottom: 15px;
}
.about-text ul {
  list-style: none;
  padding-left: 0;
}
.about-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.about-text ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.5em; 
}
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--box-shadow-white);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: var(--bg-dark2);
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 0px 15px rgba(0, 179, 255, 0.9);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0px 30px rgba(255, 0, 0, 0.95);
}
.service-card i {
  font-size: 3em;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.2em;
  color: var(--text-color);
  margin-bottom: 15px;
}
.service-card p {
  font-size: 0.9em;
  color: #a7b1c2;
}

/* --- Portfolio Section --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.portfolio-item {
  background-color: var(--bg-dark2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 20px rgba(255, 0, 0, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0px 25px rgba(0, 213, 255, 0.762);
}
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover img {
  opacity: 0.8;
}
.portfolio-item-info {
  padding: 20px;
  text-align: center;
}
.portfolio-item-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3em;
  color: var(--highlight-text-color);
  margin-bottom: 5px;
}
.portfolio-item-info p {
  font-size: 0.9em;
  color: #a7b1c2;
}
.cta-container {
  text-align: center;
  margin-top: 40px;
}

/* --- Our Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  
}
.process-step {
  background-color: var(--bg-dark2);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 0px 15px rgba(255, 0, 0, 0.9);
}
.process-step .step-icon {
  font-size: 2.5em;
  color: var(--accent-color);
  margin-bottom: 20px;
  background-color: rgba(130, 233, 170, 0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}
.process-step h3 {
  font-family: var(--font-secondary);
  font-size: 1.2em;
  color: var(--text-color);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9em;
  color: #a7b1c2;
}

/* --- Contact Section --- */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: var(--bg-dark2);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0px 30px rgba(0, 162, 255, 0.9);
}
.contact-info, .contact-form-container {
  flex: 1;
  min-width: 300px;
}
.contact-info h3, .contact-form-container h3 {
  font-family: var(--font-secondary);
  font-size: 1.2em;
  color: var(--highlight-text-color);
  margin-bottom: 25px;
}
.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 0.9em;
}
.contact-info p i {
  color: var(--accent-color);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}
.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: var(--accent-color);
}
.social-links {
  margin-top: 25px;
}
.social-links a {
  color: #ff0000;
  font-size: 1.5em;
  margin-right: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #a7b1c2;
  font-size: 0.9em;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-dark1);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(130, 233, 170, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
#skyContactForm .cta-button {
  border: none;
  cursor: pointer;
}

/* styles.css - ArnisSoft */
/* ... (all existing :root, *, html, body, .page-wrapper, .sidebar, .content, .section, section headers, Home, About, Services, Portfolio, Process, Contact styles from the PREVIOUS working version remain unchanged) ... */

/* --- Styles for NEW Pricing Section --- */
.pricing-disclaimer {
  background-color: rgba(var(--accent-color-rgb, 130, 233, 170), 0.1); /* Use RGB version if you define accent-color-rgb */
  /* Fallback if --accent-color-rgb is not defined: */
  /* background-color: #e3f2fd; */ /* Or a light neutral color */
  color: var(--text-color); /* Or var(--dark-text-color) if background is light */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 5px solid var(--accent-color);
  font-size: 0.85em;
  box-shadow: 1px 1px 2px rgba(44, 253, 2, 0.846);
}
.pricing-disclaimer p i {
  margin-right: 10px;
  color: var(--accent-color);
}

.pricing-category {
  background-color: var(--bg-dark2);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 0px 15px rgba(0, 200, 255, 0.846);
}

.pricing-category h3 {
  font-family: var(--font-secondary);
  font-size: 1.2em;
  color: var(--highlight-text-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
  gap: 30px;
}

.pricing-factors h4,
.pricing-models h4,
.pricing-types h4 {
  font-family: var(--font-secondary);
  font-size: 1.0em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.pricing-factors ul,
.pricing-models ul,
.pricing-types ul {
  list-style: disc; /* Changed from disc to none for cleaner look, using custom indicators or just text */
  padding-left: 0;
  font-size: 0.9em;
  color: #a7b1c2;
}

.pricing-factors ul li,
.pricing-models ul li,
.pricing-types ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.pricing-factors ul li strong,
.pricing-models ul li strong,
.pricing-types ul li strong {
  color: var(--text-color); /* Make the strong tag stand out a bit more */
}

/* For the 'Additional Services' simple list */
.additional-services-list ul {
  list-style: none;
  padding-left: 0;
}
.additional-services-list ul li {
  background-color: rgba(var(--accent-color-rgb, 130, 233, 170), 0.05);
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 8px;
  border-left: 3px solid var(--accent-color);
  font-size: 0.9em;
  color: #a7b1c2;
}
.additional-services-list ul li strong {
  color: var(--text-color);
}


/* --- Styles for NEW Blog Section --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-post-card {
  background-color: var(--bg-dark2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 15px rgb(0, 255, 8);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.blog-post-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-date {
  font-size: 0.8em;
  color: #a7b1c2;
  margin-bottom: 10px;
  display: block;
}

.blog-post-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.2em;
  color: var(--highlight-text-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-post-content p {
  font-size: 0.9em;
  color: #a7b1c2;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes read more link to bottom if content is short */
}

.read-more-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  align-self: flex-start; /* Aligns to the start of the flex container */
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: var(--white-color);
  text-decoration: underline;
}
.read-more-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.read-more-link:hover i {
  transform: translateX(5px);
}

/* styles.css - SkyPySoft */
/* ... (all existing styles) ... */

/* --- Styles for Key Skills & Technologies in About Us Section --- */
.key-skills-container {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.key-skills-container h3 {
  font-family: var(--font-secondary);
  font-size: 2em;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 40px;
}
.key-skills-container h3 .highlight-text { /* If you want to highlight part of the title */
  color: var(--highlight-text-color);
}

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

.skill-category {
  background-color: var(--bg-dark2); /* Same as service cards for consistency */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0px 15px rgba(255, 255, 255, 0.9);
}
.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.skill-category h4 {
  font-family: var(--font-secondary);
  font-size: 1.3em;
  color: var(--highlight-text-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.skill-category h4 i {
  margin-right: 10px;
  font-size: 1.5em; /* Adjust icon size within skill category title */
}

.skill-category ul {
  list-style: none; /* Removing default bullets */
  padding-left: 0;
  font-size: 0.95em;
  color: #a7b1c2;
}

.skill-category ul li {
  margin-bottom: 8px;
  padding-left: 20px; /* Space for custom bullet or icon */
  position: relative;
}

.skill-category ul li::before { /* Custom bullet style */
  content: "\f105"; /* Font Awesome angle-right icon */
  font-family: "Font Awesome 6 Free"; /* Ensure Font Awesome is loaded */
  font-weight: 900; /* For solid icons */
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 1px; /* Adjust vertical alignment */
  font-size: 0.9em;
}

/* --- Styles for Technology Icons Bar in About Us Section --- */
.tech-icons-bar-container {
  margin-top: 50px; /* Space above the icon bar */
  padding-top: 30px;
  border-top: 1px solid var(--border-color); /* Separator line */
  text-align: center;
}

.tech-icons-bar-container h4 {
  font-family: var(--font-secondary);
  font-size: 1.1em; /* Slightly smaller than other h3s in About */
  color: var(--text-color);
  margin-bottom: 20px;
}

.tech-icons-bar {
  display: flex;
  flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
  justify-content: center; /* Center the icons */
  align-items: center;
  gap: 5px; /* Space between icons */
}

.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em; /* Size of the icons */
  color: #a7b1c2; /* Neutral color for icons */
  padding: 10px;
  border-radius: 50%; /* Make it circular if you add a background */
  width: 60px;  /* Fixed width */
  height: 60px; /* Fixed height */
  transition: color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0px 15px rgba(255, 255, 255, 0.5);
}

.tech-icon:hover {
  color: var(--accent-color); /* Highlight color on hover */
  transform: scale(1.25); /* Slightly enlarge on hover */
}

/* Specific hover colors (optional, can make it more vibrant) */
.tech-icon[title="HTML5"]:hover { color: #E34F26; }
.tech-icon[title="CSS3"]:hover { color: #1572B6; }
.tech-icon[title="JavaScript"]:hover { color: #F7DF1E; }
.tech-icon[title="Python"]:hover { color: #3776AB; } /* Python's blue */
.tech-icon[title="React"]:hover { color: #61DAFB; }
.tech-icon[title="Node.js"]:hover { color: #339933; }
.tech-icon[title="PHP"]:hover { color: #777BB4; }
.tech-icon[title="WordPress"]:hover { color: #21759B; }
.tech-icon[title="Unity"]:hover { color: var(--white-color); } /* Unity is often black/white */
.tech-icon[title="Game Engines (like Unreal)"]:hover { color: #FFD700; } /* Generic gold for game */
.tech-icon[title="AI & Machine Learning"]:hover { color: #FF6F61; } /* A distinct color for AI */
.tech-icon[title="Databases (e.g., MySQL, MongoDB)"]:hover { color: #00758F; } /* MySQL-ish blue */
.tech-icon[title="Digital Marketing & SEO"]:hover { color: #4CAF50; } /* Green for growth/SEO */

/* --- Theme Switcher Button --- */
.theme-switcher-container {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px; /* Space before menu items */
    border-bottom: 1px solid var(--border-color);
}

#theme-toggle-button {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.1em; /* Adjust size as needed */
    padding: 8px 10px;
    border-radius: 20px; /* Rounded */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    outline: none;
}

#theme-toggle-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-sidebar); /* Text color on hover, should contrast with accent */
    transform: scale(1.05);
}

#theme-toggle-button i {
    transition: transform 0.3s ease;
}

/* ********************************************************** */
/* --- Light Theme Overrides --- */
body.light-theme {
     /* Backgrounds */
  --bg-dark1: #FFFFFF;        /* Main background: white */
  --bg-dark2: #F6F8FA;        /* Element background: very light grey (GitHub light bg) */
  --bg-sidebar: #FBFDFC;      /* Sidebar background: slightly off-white or same as bg-dark2 */

  /* Text Colors */
  --text-color: #24292F;      /* Dark grey for main text (GitHub text light) */
  --dark-text-color: #FFFFFF; /* For text on dark backgrounds (e.g. primary buttons) */
  --text-color-muted: #57606A; /* Muted text for less emphasis (GitHub muted text light) */

  /* Accent Colors */
  --primary-color: #0969DA;   /* A strong, professional blue (GitHub primary button light) */
  --secondary-color: #0550AE; /* A darker blue for links or secondary actions */
  --accent-color: #1F883D;    /* A professional green for highlights (GitHub green light) */
  --highlight-text-color: var(--accent-color);

  /* Borders */
  --border-color: #D0D7DE;    /* Borders: light grey (GitHub border light) */

  /* Interactive Element States & Effects */
  --hover-bg-color: #F3F4F6; /* Background color for hover states on elements */
  --active-bg-color: #EDEFF2; /* Background for active/pressed states */
  --glow-color: rgba(9, 105, 218, 0.3); /* Soft blue glow for light theme */
  --glow-color-accent: rgba(31, 136, 61, 0.3); /* Soft green glow for light theme */

  /* Standard Colors (can often remain the same or be slightly adjusted) */
  --success-color: #1A7F37;
  --error-color: #CF222E;
  
}

/* Specific element adjustments for Light Theme */

body.light-theme .theme-switcher-container {
    border-bottom: 1px solid var(--border-color); /* Uses light theme border */
}

body.light-theme #theme-toggle-button {
    border: 1px solid var(--accent-color); /* Uses light theme accent */
    color: var(--accent-color);
    
}

body.light-theme #theme-toggle-button:hover {
    background-color: var(--accent-color); /* Teal */
    color: #FFFFFF; /* White text on Teal */
}

body.light-theme .sidebar {
  background-image: none; 
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    box-shadow: 3px 0px 12px rgba(0, 0, 0, 0.7); /* Even more subtle for light theme */
}

body.light-theme .sidebar .logo-text {
    color: var(--primary-color); /* Or var(--accent-color) if Teal looks good */
}

body.light-theme .sidebar ul li {
    color: #34495e; /* Darker text for sidebar items */
}

body.light-theme .sidebar ul li:hover {
    background-color: #d5dbe0;
    color: var(--primary-color);
}

body.light-theme .sidebar ul li.active {
    background-color: var(--primary-color); /* Dark blue active background */
    color: #FFFFFF; /* White text */
    border-left: 4px solid var(--accent-color); /* Teal accent border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

body.light-theme .sidebar ul li.active i {
    color: #FFFFFF; /* White icon on dark blue background for better contrast */
}

body.light-theme .sidebar-header,
body.light-theme .sidebar-footer {
  background-image: none; 
    border-color: var(--border-color);
}

body.light-theme .sidebar-footer {
    color: #555;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


body.light-theme .content {
    background-color: var(--bg-dark1); /* Main content background */
    color: var(--text-color); /* Main content text color */
}

body.light-theme #home {
    /* background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(240, 245, 248, 0.95)), url('/firewall.webp') no-repeat center center/cover; */
    /* If the image is too dark, you might need a lighter version or adjust opacity */
}

body.light-theme #home h1 {
    color: #333; /* Darker heading for home */
}
body.light-theme #home .subtitle {
    color: var(--accent-color); /* Teal */
}
body.light-theme #home p {
    color: #555; /* Slightly lighter dark text for paragraphs */
}


body.light-theme .cta-button {
    background-color: var(--accent-color); /* Teal */
    color: #FFFFFF; /* White text on Teal */
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}
body.light-theme .cta-button:hover {
    background-color: #00695C; /* Darker Teal for hover */
    box-shadow: 0 10px 20px rgba(0, 137, 123, 0.2);
}
body.light-theme .cta-button.secondary-cta {
    background-color: transparent;
    color: var(--accent-color); /* Teal text */
    border: 2px solid var(--accent-color); /* Teal border */
}
body.light-theme .cta-button.secondary-cta:hover {
    background-color: var(--accent-color); /* Teal background */
    color: #FFFFFF; /* White text */
}


body.light-theme .section-header h2 {
    color: var(--text-color);
}
body.light-theme .section-header .section-subtitle {
    color: #6c757d; /* Softer dark text */
}

body.light-theme .highlight-text {
  color: var(--highlight-text-color); /* Will use the light theme's accent */
}

/* Cards and similar elements */
body.light-theme .service-card,
body.light-theme .portfolio-item,
body.light-theme .process-step,
body.light-theme .pricing-category,
body.light-theme .blog-post-card,
body.light-theme .contact-container,
body.light-theme .skill-category {
    background-color: var(--bg-dark2); /* Light grey for cards */
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.7); /* Softer shadow for light theme */
}
body.light-theme .service-card:hover,
body.light-theme .portfolio-item:hover,
body.light-theme .skill-category:hover,
body.light-theme .blog-post-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


body.light-theme .service-card h3,
body.light-theme .process-step h3,
body.light-theme .skill-category h4,
body.light-theme .pricing-category h3,
body.light-theme .contact-info h3, 
body.light-theme .contact-form-container h3 {
    color: var(--text-color); /* Main dark text for titles in cards */
}
body.light-theme .service-card p,
body.light-theme .process-step p,
body.light-theme .skill-category ul li,
body.light-theme .about-text p,
body.light-theme .about-text ul li {
    color: #5a6872; /* Softer dark text for content */
}
body.light-theme .about-image img{
  box-shadow: var(--box-shadow-dark);
}

body.light-theme .skill-category ul li::before {
    color: var(--accent-color); /* Teal bullet */
}

body.light-theme .tech-icons-bar-container {
    border-top: 1px solid var(--border-color);
}
body.light-theme .tech-icons-bar-container h4 {
    color: var(--text-color);
}
body.light-theme .tech-icon {
    color: #757575; /* Darker grey for tech icons */
}
/* Keep hover colors for tech icons, but ensure they are visible on light bg */
body.light-theme .tech-icon[title="JavaScript"]:hover { color: #f0db4f; /* Adjust if too light */ }
body.light-theme .tech-icon[title="Unity"]:hover { color: #222c37; } /* Darker for Unity logo */

/* TECH ICONS ************************************** */
body.light-theme .tech-icon{
  box-shadow:  0 0 15px rgba(0, 0, 0, 0.7);
}

body.light-theme .sidebar .logo-text {
  box-shadow: 1px 0px 15px rgb(0, 0, 0);
  border-radius: 8px;
}

/* Forms */
body.light-theme .form-group label {
    color: #495057; /* Darker label */
}
body.light-theme .form-group input[type="text"],
body.light-theme .form-group input[type="email"],
body.light-theme .form-group textarea {
    background-color: #FFFFFF; /* White input background */
    border: 1px solid var(--border-color);
    color: var(--text-color); /* Dark text input */
}
body.light-theme .form-group input[type="text"]:focus,
body.light-theme .form-group input[type="email"]:focus,
body.light-theme .form-group textarea:focus {
    border-color: var(--accent-color); /* Teal focus border */
    box-shadow: 0 0 0 2px rgba(0, 137, 123, 0.15); /* Teal shadow */
}

body.light-theme .contact-info a {
    color: var(--text-color);
}
body.light-theme .contact-info a:hover {
    color: var(--accent-color);
}
body.light-theme .social-links a {
    color: #555;
}
body.light-theme .social-links a:hover {
    color: var(--accent-color);
}


/* Pricing Section */
body.light-theme .pricing-disclaimer {
    background-color: var(--light-accent-color); /* Light Teal bg */
    color: var(--text-color); /* Dark text */
    border-left: 5px solid var(--accent-color); /* Teal border */
}
body.light-theme .pricing-disclaimer p i,
body.light-theme .pricing-factors ul li strong,
body.light-theme .pricing-models ul li strong,
body.light-theme .pricing-types ul li strong {
    color: var(--accent-color); /* Teal for highlights or use text-color for strong */
}
body.light-theme .pricing-factors ul li strong,
body.light-theme .pricing-models ul li strong,
body.light-theme .pricing-types ul li strong {
    color: var(--text-color); /* Or make strong text same as normal text but bold */
}
body.light-theme .pricing-category ul {
    color: #5a6872; /* Softer dark text */
}

body.light-theme .additional-services-list ul li {
    background-color: rgba(0, 137, 123, 0.07); /* Teal tint */
    color: var(--text-color);
    border-left: 3px solid var(--accent-color);
}
body.light-theme .additional-services-list ul li strong {
    color: var(--text-color);
}

/* Blog Section */
body.light-theme .blog-post-content .blog-post-date {
    color: #6c757d;
}
body.light-theme .blog-post-content h3 { /* Already uses highlight-text-color */
    /* color: var(--highlight-text-color); */
}
body.light-theme .blog-post-content p {
    color: #5a6872;
}
body.light-theme .read-more-link {
    color: var(--accent-color); /* Teal */
}
body.light-theme .read-more-link:hover {
    color: #00695C; /* Darker Teal */
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px; /* Adjust as needed */
    right: 25px;  /* Adjust as needed */
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFFFFF; /* White icon */
    border-radius: 50%; /* Makes it circular */
    text-align: center;
    font-size: 30px; /* Size of the WhatsApp icon */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 1000; /* Ensure it's above most other content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
}

.whatsapp-float:hover {
    background-color: #1DA851; /* Slightly darker green on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}





/* --- Ensure existing responsive styles (@media queries) are at the end of the file --- */
/* ... (all existing @media queries from the PREVIOUS working version remain unchanged) ... */

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  :root {
      /* --sidebar-width: 220px; */ /* Example: slightly smaller sidebar */
  }
  .section {
      padding: 50px 30px;
  }
  #home h1 { font-size: 2.5em; }
  #home .subtitle { font-size: 1.0em; }
  .section-header h2 { font-size: 2.0em; }
}

@media (max-width: 992px) { /* Tablet and smaller */
  :root {
      
  }
  /* Could implement a collapsed sidebar here for tablets if desired */

  #home h1 { font-size: 2.3em; }
  #home .subtitle { font-size: 1.0em; }
  .section-header h2 { font-size: 2.0em; }
  .about-us-content { flex-direction: column-reverse; } /* Image on top or bottom */
  .about-image { margin-bottom: 30px; }
}

@media (max-width: 768px) { /* Mobile */
  body {
      flex-direction: column; /* Stack sidebar and content if sidebar becomes a top bar */
  }
  .burger-menu-toggle {
        display: block; /* Afișează burger-ul */
    }

    .nav-container {
        /* Poți ajusta justify-content dacă vrei ca logo-ul să fie mai centrat 
           când meniul principal e ascuns */
    }

    .main-menu {
        position: fixed;
        top: 0; /* Aliniat cu partea de sus a viewport-ului */
        left: 0;
        width: 280px; /* Lățimea meniului glisant */
        max-width: 80%; /* Max lățime pe ecrane foarte mici */
        height: 100vh; /* Toată înălțimea */
        background-color: var(--bg-sidebar); /* Fundalul meniului */
        /* background-image: radial-gradient(ellipse at center, #10151B 0%, var(--bg-dark1) 100%); */
        padding: var(--top-nav-height) 0 20px 0; /* Padding sus pentru a nu se suprapune cu top-nav fix */
        transform: translateX(-100%); /* Ascuns în afara ecranului */
        transition: transform 0.3s ease-in-out;
        z-index: 1001; /* Peste overlay și .top-nav (dar burgerul e peste el) */
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto; /* Scroll dacă elementele sunt prea multe */
        display: flex; /* Pentru aliniere și padding */
        flex-direction: column;
    }
    body.light-theme .main-menu {
        background-color: var(--bg-sidebar);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }


    .main-menu.menu-open {
        transform: translateX(0); /* Aduce meniul în ecran */
    }

    .main-menu ul {
        flex-direction: column; /* Stivuiește elementele de meniu vertical */
        width: 100%;
        padding-top: 20px; /* Spațiu de la padding-ul .main-menu */
    }

    .main-menu li {
        margin-left: 0; /* Elimină marginea stânga */
        width: 100%;
    }

    .main-menu li a {
        padding: 15px 25px; /* Padding mai mare pentru elementele verticale */
        display: flex; /* Pentru alinierea iconiței și textului */
        align-items: center;
        border-bottom: 1px solid var(--border-color); /* Separator între linkuri */
    }
     body.light-theme .main-menu li a {
        border-bottom: 1px solid var(--border-color);
     }


    .main-menu li:last-child a {
        border-bottom: none; /* Fără separator la ultimul element */
    }

    .main-menu li a .nav-text {
        display: inline; /* Afișează textul în meniul glisant */
        margin-left: 10px; /* Spațiu de la iconiță */
    }
    .main-menu li a i {
        margin-right: 0; /* Nu mai e necesar, .nav-text are margin-left */
    }
  .main-menu li a .nav-text {
         /* Ascunde textul meniului, lasă doar iconițele */
    }
    .main-menu li a {
        padding: 10px 12px; /* Ajustează padding-ul pentru iconițe */
    }
    .main-menu li a i {
        margin-right: 0; /* Elimină marginea când textul e ascuns */
        font-size: 1.3em; /* Mărește puțin iconițele dacă e nevoie */
    }
    .logo-text-top {
        font-size: 1.4em;
    }
    .logo-image-top {
        height: 35px;
    }
    .nav-container {
        width: 95%;
    }

  .content {
      margin-left: var(--sidebar-width-collapsed);
      width: calc(100% - var(--sidebar-width-collapsed));
      height: auto; /* Let content define height */
      overflow-y: visible; /* Let body scroll for mobile */
  }
  body { overflow-y: auto; /* Allow body to scroll on mobile */ }


  .section {
      padding: 40px 20px;
      min-height: auto; /* Allow sections to be their natural height */
  }
  #home {
      min-height: 80vh; /* Adjust hero height for mobile */
      padding: 30px 20px;
  }
  #home h1 { font-size: 1.8em; }
  #home .subtitle { font-size: 1.2em; }
  #home p { font-size: 0.8em;}

  .section-header h2 { font-size: 1.5em; }
  .section-header .section-subtitle { font-size: 0.9em; }

  .services-grid, .portfolio-grid, .process-steps {
      grid-template-columns: 1fr; /* Stack items in grids */
  }
  .contact-container {
      flex-direction: column;
      padding: 25px;
  }
  .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

  /* Stilizare pentru containerele butoanelor de temă și limbă pe mobil */
    .theme-switcher-container,
    .language-switcher-container {
        padding: 8px 0; /* Ajustează padding-ul vertical dacă e necesar */
        margin-bottom: 8px; /* Spațiu redus sub ele */
        max-width: 100%; /* Asigură-te că nu depășesc lățimea sidebar-ului */
        box-sizing: border-box; /* Include padding și border în lățimea totală */
        display: flex; /* Permite centrarea conținutului */
        flex-direction: column; /* Stivuiește butoanele dacă sunt mai multe în container */
        align-items: center; /* Centrează elementele pe orizontală */
    }

    #theme-toggle-button {
        padding: 7px 10px;   /* Padding mai mic pentru butonul de temă */
        font-size: 0.9em;   /* Mărime puțin redusă pentru iconiță (prin font-size) */
        /* Poți ajusta și width/height dacă este necesar să se potrivească exact */
    }

    .language-switcher-container .lang-button { /* Specificitate mai mare pentru a suprascrie stilurile de bază dacă e nevoie */
        font-size: 0.75em; /* Font mai mic pentru EN/RO */
        padding: 4px 5px;   /* Padding mai mic */
        min-width: 30px; /* O lățime minimă pentru a fi ușor de apăsat */
        margin: 2px 0; /* Adaugă un mic spațiu dacă butoanele se stivuiesc */
    }

    .language-switcher-container .lang-separator {
        font-size: 0.75em; /* Mărime font potrivită cu butoanele */
        margin: 0 3px;    /* Spațiu redus pentru separator */
        /* Dacă butoanele de limbă ajung să se stivuiască, ai putea ascunde separatorul */
        /* display: none; */ 
    }

    /* Dacă dorești ca butoanele de limbă (EN | RO) să fie una sub alta pe mobil: */
    .language-switcher-container {
        /* display: flex; // Deja setat mai sus */
        /* flex-direction: column; // Deja setat mai sus */
        /* align-items: center; // Deja setat mai sus */
    }
    .language-switcher-container .lang-button {
         /* Butoanele EN și RO vor fi deja una sub alta datorită flex-direction: column pe container */
    }
    .language-switcher-container .lang-separator {
        display: none; /* Ascunde separatorul "|" când butoanele sunt stivuite */
    }  
    body.mobile-menu-active {
    overflow: hidden; /* Previne scroll-ul pe body când meniul e deschis */
    }
}

@media (max-width: 480px) { /* Smaller mobile screens */
  :root {
      
  }
  .main-menu li a {
        padding: 8px 10px;
    }
     .main-menu li a i {
        font-size: 1.1em;
    }
    .logo-image-top {
        height: 30px;
        margin-right: 5px;
    }
    .logo-text-top {
        font-size: 1.2em; /* Și mai mic dacă e vizibil */
    }
    #theme-toggle-button {
        padding: 5px 7px;
        font-size: 0.9em;
    }
    .lang-button, .lang-separator {
        font-size: 0.75em;
    }
    .nav-controls {
        margin-left: 10px; /* Redu spațiul dacă e nevoie */
    }
     #home h1 { font-size: 1.8em; }
     #home .subtitle { font-size: 0.9em; }
  #home h1 { font-size: 1.5em; }
  #home .subtitle { font-size: 1em; }
  #home p { font-size: 0.7em; }
  .cta-button { padding: 12px 25px; font-size: 0.8em; }
  .section-header h2 { font-size: 1.1em; }
  .tech-icon {
  font-size: 1.5em; /* Size of the icons */
  gap: 1px;
  }
  .sidebar .logo-text { font-size: 0.7em; } /* Smaller logo text if sidebar is collapsed */
  .service-card p, .process-step p, .blog-post-content p {
    font-size: 0.75em; /* Was around 0.92em after desktop adjustment */
  }
  p { font-size: 0.8em;}
  li { 
        font-size: 0.8em; /* Iconițe și mai mici */
    }
  .tech-icon {
  font-size: 1.7em; /* Size of the icons */
  gap: 1px;
  width: 40px;  /* Fixed width */
  height: 40px; /* Fixed height */
  }
  .key-skills-container h3 { font-size: 1.3em;}

    /* Asigură-te că și containerele părinte nu au padding excesiv care să contribuie la problemă */
    #pricing .pricing-category {
        /* padding: 20px;  Ai deja acest padding mai sus, poate e ok. */
        /* Dacă padding-ul de 20px al .pricing-category este prea mare pentru conținutul listei, 
           ai putea să-l reduci specific aici pentru 480px, de ex: */
         padding-left: 3px; 
        /* padding-right: 10px; */
    }
}
