/*
============================================
    MINTECH - FUTURISTIC CYBER INTERFACE
============================================
*/

/* --- 1. ENHANCED VARIABLES & SETUP --- */
:root {
  --color-primary: #0A2E8D;
  --color-accent: #D90429;
  --color-accent-glow: #ff1f43;
  --color-text-light: #FFFFFF;
  --color-text-dark: #0D1117;
  --color-neutral-grey: #E0E0E0;
  --color-background-dark: #0D1117;
  --color-holo-blue: rgba(0, 195, 255, 0.7);
  --color-holo-red: rgba(255, 0, 100, 0.7);
  --font-family-heading: 'Orbitron', 'Oswald', sans-serif;
  --font-family-body: 'Rajdhani', 'Titillium Web', sans-serif;
  --glow-intensity: 1;
}
body{
  overflow-x: hidden;
}
/*
====================================
    GLOBAL LAYOUT FIX
====================================
*/

/* Pushes down the main content to clear the fixed header */
.main-content {
  padding-top: 100px; /* Adjust this value if your header is taller or shorter */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-background-dark);
  font-family: var(--font-family-body);
  color: var(--color-text-light);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* --- 2. CYBERPUNK BACKGROUND SYSTEM --- */
.site-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #0D1117 0%, #02050a 100%);
}

/* Grid overlay for cyberpunk effect */
.site-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 46, 141, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 46, 141, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  animation: gridScan 15s linear infinite;
}

@keyframes gridScan {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Enhanced 3D Cube with holographic effect */
.cube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.cube {
  width: 300px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate-cube 20s infinite linear;
}

@keyframes rotate-cube {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(720deg) rotateY(360deg) rotateZ(180deg); }
}

.cube .face {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid var(--color-holo-blue);
  background: rgba(10, 46, 141, 0.05);
  box-shadow: 
    0 0 30px var(--color-holo-blue),
    inset 0 0 30px var(--color-holo-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.cube .face::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 60%, var(--color-holo-blue) 100%);
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

/* Position each face */
.face.front  { transform: rotateY(0deg) translateZ(150px); }
.face.back   { transform: rotateY(180deg) translateZ(150px); }
.face.right  { transform: rotateY(90deg) translateZ(150px); }
.face.left   { transform: rotateY(-90deg) translateZ(150px); }
.face.top    { transform: rotateX(90deg) translateZ(150px); }
.face.bottom { transform: rotateX(-90deg) translateZ(150px); }

/* Add digital pattern to faces */
.face::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: 
    linear-gradient(45deg, 
      transparent 48%, 
      var(--color-holo-blue) 48%, 
      var(--color-holo-blue) 52%, 
      transparent 52%),
    linear-gradient(-45deg, 
      transparent 48%, 
      var(--color-holo-blue) 48%, 
      var(--color-holo-blue) 52%, 
      transparent 52%);
  background-size: 10px 10px;
  opacity: 0.5;
}

/* --- 3. CYBERPUNK HEADER SYSTEM --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  animation: slideDown 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Holographic logo effect */
.header__logo img {
  height: 50px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px var(--color-holo-blue));
}

.header__logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px var(--color-holo-blue));
}

/* Cyberpunk navigation */
.header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  color: var(--color-neutral-grey);
  text-decoration: none;
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: all 0.4s ease;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Enhanced animated underline */
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-holo-blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  box-shadow: 0 0 10px var(--color-accent);
}

.header__nav-link:hover {
  color: var(--color-text-light);
  text-shadow: 0 0 10px var(--color-text-light);
}

.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__nav-item--active .header__nav-link {
  color: var(--color-text-light);
  text-shadow: 0 0 10px var(--color-text-light);
}

.header__nav-item--active .header__nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Cyberpunk button with CRT effect */
.header__logout-btn {
  background: linear-gradient(135deg, var(--color-accent), #ff1f43);
  color: var(--color-text-light);
  border: none;
  padding: 12px 25px;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.4s ease;
  box-shadow: 
    0 0 15px rgba(217, 4, 41, 0.7),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.header__logout-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 45%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.header__logout-btn:hover {
  background: linear-gradient(135deg, #ff1f43, var(--color-accent));
  box-shadow: 
    0 0 25px rgba(217, 4, 41, 0.9),
    inset 0 0 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* --- 4. RESPONSIVE CYBER MENU --- */
.header__burger-menu {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
  z-index: 1100;
}

.header__burger-line {
  width: 100%;
  height: 4px;
  background-color: var(--color-text-light);
  margin: 6px 0;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: 0 0 5px var(--color-holo-blue);
}

/* Media query for mobile */
@media screen and (max-width: 992px) {
  .header__nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border-left: 1px solid rgba(0, 195, 255, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .header__nav-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(90deg, transparent 95%, var(--color-holo-blue) 100%);
    opacity: 0.1;
    pointer-events: none;
  }
  
  .header__nav-list.nav-active {
    right: 0;
  }
  
  .header__burger-menu {
    display: block;
  }
  
  .header__nav-link {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
  
  .header__logout-btn {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* Burger to X transformation with cyber effect */
.burger-active .header__burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 8px);
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.burger-active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.burger-active .header__burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -8px);
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

/* Cyberpunk scanline effect for mobile menu */
@media screen and (max-width: 992px) {
  .header__nav-list.nav-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      transparent 95%,
      rgba(0, 195, 255, 0.1) 96%,
      transparent 97%
    );
    background-size: 100% 10px;
    animation: scanline 8s linear infinite;
    pointer-events: none;
  }
  
  @keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
  }
}

/* --- 5. DYNAMIC GLOW EFFECTS --- */
@media (min-width: 1200px) {
  :root {
    --glow-intensity: 1.3;
  }
}

.glow-effect {
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 5px var(--color-holo-blue)); }
  100% { filter: drop-shadow(0 0 15px var(--color-holo-blue)); }
}


/* ===== CYBERPUNK HERO BANNER ===== */
.cyber-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-holo-blue);
    box-shadow: 0 0 50px rgba(10, 46, 141, 0.3);
}

.holographic-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    filter: brightness(0.8) contrast(1.2);
}

.slide.active {
    opacity: 1;
}

/* Holographic overlay effect */
.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, 
        rgba(217, 4, 41, 0.1) 100%);
    mix-blend-mode: overlay;
    animation: hologramPulse 8s infinite alternate;
}

@keyframes hologramPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Digital noise effect */
.digital-noise {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABhSURBVGhD7cExAQAwDMCg+zfdQx8kQJDH+Z0zIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi8gK9lQprA8QkXAAAAABJRU5ErkJggg==');
    opacity: 0.03;
    pointer-events: none;
}

/* Content overlay */
.cyber-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(90deg, rgba(13,17,23,0.8) 0%, rgba(13,17,23,0.5) 50%, rgba(13,17,23,0.8) 100%);
    z-index: 2;
}

.neon-content {
    max-width: 800px;
}

.cyber-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    line-height: 1.2;
}

.cyber-title .glow {
    color: var(--color-holo-blue);
    text-shadow: 0 0 15px var(--color-holo-blue);
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 15px var(--color-holo-blue); }
    100% { text-shadow: 0 0 25px var(--color-holo-blue), 0 0 10px var(--color-text-light); }
}

.cyber-subtitle {
    font-family: var(--font-family-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--color-neutral-grey);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Cyberpunk buttons */
.cyber-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cyber-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
}

.cyber-button .btn-text {
    position: relative;
    z-index: 2;
}

.cyber-button .btn-icon {
    margin-left: 10px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.cyber-button:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0;
    z-index: 1;
    animation: glitch-anim 5s infinite linear;
}

@keyframes glitch-anim {
    0% { transform: translate(0); opacity: 0; }
    2% { transform: translate(-5px, 5px); opacity: 0.1; }
    4% { transform: translate(5px, -5px); opacity: 0.1; }
    6% { transform: translate(0); opacity: 0; }
    100% { transform: translate(0); opacity: 0; }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.call-btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-glow));
    color: white;
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
}

.cyber-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px currentColor;
}

/* Tech elements decoration */
.tech-elements {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

.circuit-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-holo-blue));
    margin-bottom: 20px;
    position: relative;
}

.circuit-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--color-holo-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-holo-blue);
}

.data-dots {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.data-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-holo-blue);
    border-radius: 50%;
    opacity: 0;
    animation: dataFlow 2s infinite;
    box-shadow: 0 0 5px var(--color-holo-blue);
}

.data-dots span:nth-child(1) { animation-delay: 0s; }
.data-dots span:nth-child(2) { animation-delay: 0.3s; }
.data-dots span:nth-child(3) { animation-delay: 0.6s; }
.data-dots span:nth-child(4) { animation-delay: 0.9s; }

@keyframes dataFlow {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cyber-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .cyber-overlay {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
    }
    
    .cyber-buttons {
        justify-content: center;
    }
    
    .tech-elements {
        display: none;
    }
}

/* Auto-sliding animation */
@keyframes slideAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.slide:nth-child(1) { animation: slideAnimation 12s infinite; }
.slide:nth-child(2) { animation: slideAnimation 12s infinite 4s; }
.slide:nth-child(3) { animation: slideAnimation 12s infinite 8s; }






/*
====================================
    MAIN CONTENT STYLES
====================================
*/

/* --- Global & Utility Classes --- */
.main-content {
  position: relative;
  z-index: 1; /* Sits above the background but below the fixed header */
  background: transparent;
  color: var(--color-neutral-grey);
}


/* --- Global Container Style --- */
.container {
  width: 90%; /* Use 90% of the screen width */
  max-width: 1200px; /* But never get wider than 1200px */
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-accent {
  color: var(--color-accent);
}

.text-center {
  text-align: center;
}


/* --- 1. Hero Section --- *//*
====================================
    FUTURISTIC HERO SECTION STYLES
====================================
*/

/* --- 1. Main Hero Container --- */
.hero {
  margin-top: -60px;
    position: relative; /* Needed for positioning the overlay */
    height: 100vh; /* Make hero fill the entire viewport height */
    width: 100%;
    overflow: hidden; /* Hide anything that might spill out */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 2. Animated Background --- 
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place it in the background 
} */

/* --- 3. Content Overlay --- */
.hero__overlay {
    position: relative; /* Keeps it in the stacking context */
    z-index: 2; /* Ensure content is on top of the animation */
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1); /* Optional: slight dark tint for readability */
    border-radius: 15px;
}

/* --- 4. Content Styling (Your existing styles can be enhanced) --- */
.hero__title {
    color: #ffffff;
    font-size: 3.5rem; /* Large and impactful */
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* Add a subtle cyan glow */
}

.hero__subtitle {
    color: #e0e0e0;
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

/* --- 5. Button Styling --- */
.hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allows buttons to stack on small screens */
}

.hero__button {
    padding: 12px 28px;
    border: 2px solid #00ffff; /* Cyan border */
    color: #00ffff;
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero__button:hover {
    background-color: #00ffff;
    color: #1a1a2e; /* Match dark background color */
    box-shadow: 0 0 20px #00ffff;
}

.hero__button--secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.hero__button--secondary:hover {
    background-color: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 0 20px #ffffff;
}

/* --- Responsive Adjustments for smaller screens --- */
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    .hero__subtitle {
        font-size: 1.2rem;
    }
}

/* --- 2. Features Section --- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.features__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(10, 46, 141, 0.4);
  border-color: var(--color-primary);
}
.features__icon-wrapper {
  margin-bottom: 20px;
}
.features__icon {
  height: 50px;
}
.features__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.features__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-neutral-grey);
}


/* --- 3. Content Section (Alternating) --- */
.content-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
/* Reverse layout for every other section */
.content-section:nth-child(even) .content-section__grid {
  grid-template-areas: "text image";
}
.content-section:nth-child(even) .content-section__image-wrapper { grid-area: image; }
.content-section:nth-child(even) .content-section__text-wrapper { grid-area: text; }

.content-section__image-wrapper img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.content-section__title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-family: var(--font-family-heading);
}
.content-section__description {
  color: var(--color-neutral-grey);
  line-height: 1.7;
}


/* --- 4. About Us Section --- */
.about-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.about-us__card {
  background: rgba(10, 46, 141, 0.1);
  border: 1px solid var(--color-primary);
  padding: 30px;
  border-radius: 8px;
}
.about-us__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.about-us__description {
  color: var(--color-neutral-grey);
  font-size: 0.95rem;
}

/* --- 5. Product Slider Section --- */
.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(217, 4, 41, 0.4);
  border-color: var(--color-accent);
}
.product-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card__content {
  padding: 20px;
}
.product-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.product-card__description {
  font-size: 0.9rem;
  color: var(--color-neutral-grey);
  margin-bottom: 20px;
}
.product-card__link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
}

/* --- 6. Logo Wall --- */
.logo-wall__item img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5); /* Desaturated, bright look */
  opacity: 0.7;
  transition: all 0.3s ease;
}
.logo-wall__item img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero__title { font-size: 2.5rem; }
  .content-section__grid { grid-template-columns: 1fr; }
  .content-section:nth-child(even) .content-section__grid { grid-template-areas: unset; }
  .content-section__image-wrapper, .content-section__text-wrapper { grid-area: unset !important; }
}



/*
====================================
    SITE FOOTER STYLES (REFINED)
====================================
*/
.footer {
  /* MODIFICATION: Made background semi-transparent for glass effect */
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding-top: 80px;
  color: var(--color-neutral-grey);
  position: relative;
  overflow: hidden;
}

/* ENHANCEMENT: Glowing top border for a futuristic feel */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: animate-border 4s linear infinite;
}

@keyframes animate-border {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

/* ENHANCEMENT: Staggered entry animation for columns */
.footer__column {
  /* GLASSMORPHISM EFFECT ADDED */
  background: rgba(255, 255, 255, 0.05); /* Subtle white glass tint */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Light edge */
  border-radius: 10px; /* Rounded corners */
  padding: 25px; /* Padding to contain the content */
  backdrop-filter: blur(10px); /* The main blur effect */
  -webkit-backdrop-filter: blur(10px);

  /* Entry animation from before */
  animation: fadeInUp 0.6s ease-out both;
}
.footer__column:nth-child(1) { animation-delay: 0.1s; }
.footer__column:nth-child(2) { animation-delay: 0.2s; }
.footer__column:nth-child(3) { animation-delay: 0.3s; }
.footer__column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative; /* Needed for the underline */
  padding-bottom: 10px;
}

/* ENHANCEMENT: Dynamic animated underline */
.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.footer__contact-list,
.footer__nav-list {
  list-style: none;
  padding: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.footer__contact-item i {
  color: var(--color-accent);
  margin-right: 15px;
  margin-top: 4px;
  transition: text-shadow 0.3s ease;
}
.footer__contact-item:hover i {
  text-shadow: 0 0 8px var(--color-accent);
}

.footer__nav-item {
  margin-bottom: 12px;
}

.footer__link {
  color: var(--color-neutral-grey);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block; /* Allows transforms */
}

/* ENHANCEMENT: More interactive hover effect with a chevron */
.footer__link::before {
  content: '>';
  position: absolute;
  left: -15px;
  color: var(--color-accent);
  opacity: 0;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: var(--color-text-light);
  transform: translateX(15px);
}
.footer__link:hover::before {
  opacity: 1;
  left: -20px;
}

.footer__subscribe-text {
  margin-bottom: 20px;
}
.footer__subscribe-form {
  display: flex;
  position: relative;
}
.footer__subscribe-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  border-radius: 5px; /* Full radius for better look */
  outline: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.footer__subscribe-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
}
.footer__subscribe-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  border: none;
  background: var(--color-accent);
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.footer__subscribe-button i {
    transition: transform 0.3s ease;
}
.footer__subscribe-button:hover {
  background: #ff1f43; /* Brighter red */
  box-shadow: 0 0 15px #ff1f43;
}
.footer__subscribe-button:hover i {
    transform: rotate(45deg) scale(1.1);
}

.footer__bottom-bar {
  padding: 25px 0;
  margin-top: 40px; /* Added margin */
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__bottom-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer__copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}
.footer__social-list {
  list-style: none;
  display: flex;
  gap: 20px; /* Increased gap */
}
.footer__social-link {
  color: var(--color-neutral-grey);
  font-size: 1.1rem; /* Slightly larger icons */
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}
.footer__social-link:hover {
  color: var(--color-accent);
  transform: translateY(-5px) scale(1.1);
  text-shadow: 0 0 10px var(--color-accent);
}



/*
====================================
    ABOUT US PAGE STYLES
====================================
*/

/* --- 1. Page Header --- */
.page-header {
  padding: 120px 0 60px 0; /* Extra top padding to clear the fixed header */
  text-align: center;
}

.page-header__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}


/* --- 2. About Intro Section --- */
.about-intro {
  padding-top: 0;
}

.about-intro__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-intro__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: 25px;
}

.about-intro__text p {
  color: var(--color-neutral-grey);
  line-height: 1.7;
  margin-bottom: 15px;
}
.about-intro__text p:last-child {
  margin-bottom: 0;
}


/* --- 3. Values Grid Section --- */
.values-grid {
    padding: 80px 0;
}
.values-grid .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.values-grid__card {
  background: rgba(10, 46, 141, 0.1); /* Using primary color tint */
  border: 1px solid var(--color-primary);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.values-grid__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(10, 46, 141, 0.5);
}

.values-grid__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.values-grid__description {
  color: var(--color-neutral-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.values-grid__list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.values-grid__list-item {
  color: var(--color-neutral-grey);
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.values-grid__list-item::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}


/* --- 4. Team Section --- */
.team-section {
    padding: 60px 0 80px 0;
}

.team-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 40px;
}

.team-profile__image-wrapper {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.team-profile__image {
  width: 100%;
  border-radius: 50%; /* Circular image */
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 25px rgba(10, 46, 141, 0.6);
}

.team-profile__name {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 2.2rem;
}

.team-profile__title {
  font-family: var(--font-family-body);
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.team-profile__bio {
  color: var(--color-neutral-grey);
  line-height: 1.7;
}


/* --- Responsive for About Page --- */
@media (max-width: 768px) {
  .team-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/*
====================================
    CONTACT US PAGE STYLES
====================================
*/

/* --- 1. Contact Page Layout --- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Info column is smaller than form column */
  gap: 50px;
  padding-bottom: 80px;
}

/* --- 2. Contact Info Column --- */
.contact-page__info {
  /* You can add a glassmorphism background here if you like */
  background: rgba(10, 46, 141, 0.1);
  border: 1px solid var(--color-primary);
  padding: 30px;
  border-radius: 10px;
}
.contact-page__info-title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.contact-page__info-text {
  color: var(--color-neutral-grey);
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
}
.contact-info-list__item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.contact-info-list__icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-right: 20px;
  width: 30px; /* Aligns the text nicely */
}
.contact-info-list__text {
  display: flex;
  flex-direction: column;
}
.contact-info-list__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-neutral-grey);
  opacity: 0.7;
}
.contact-info-list__text a,
.contact-info-list__text span {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: bold;
}
.contact-info-list__text a:hover {
  text-decoration: underline;
}

/* --- 3. Contact Form --- */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__group {
  margin-bottom: 20px;
}
.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-neutral-grey);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-light);
  border-radius: 5px;
  outline: none;
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.5);
}
.contact-form__button {
  width: 100%;
  padding: 15px;
  border: none;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.contact-form__button:hover {
  background: #ff1f43; /* Brighter red */
  box-shadow: 0 0 20px rgba(217, 4, 41, 0.6);
  transform: translateY(-2px);
}

/* This targets the container CKEditor creates */
#cke_body {
  border-radius: 5px;
  overflow: hidden;
}

/* --- Responsive for Contact Page --- */
@media (max-width: 992px) {
  .contact-page {
    grid-template-columns: 1fr; /* Stack columns */
  }
}

@media (max-width: 576px) {
  .contact-form__row {
    grid-template-columns: 1fr; /* Stack form fields */
  }
}


/*
====================================
    PROJECTS GALLERY PAGE STYLES
====================================
*/

/* --- 1. Gallery Grid Layout --- */
.gallery-grid {
  display: grid;
  /* Creates a responsive grid that fits as many 300px cards as possible */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* --- 2. Gallery Card Component --- */
.gallery-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden; /* Ensures the image respects the border-radius */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column; /* Ensures content pushes link to the bottom */
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(10, 46, 141, 0.5); /* Blue glow on hover */
  border-color: var(--color-primary);
}

.gallery-card__image-link {
  display: block;
  overflow: hidden; /* For the zoom effect */
}

.gallery-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.05); /* Subtle zoom effect on hover */
}

.gallery-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Makes the content area expand */
}

.gallery-card__title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.gallery-card__title a {
  color: inherit;
  text-decoration: none;
}

.gallery-card__description {
  color: var(--color-neutral-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the link down */
  margin-bottom: 20px;
}

.gallery-card__link {
  display: inline-block;
  align-self: flex-start; /* Aligns button to the left */
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-card__link:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}


/*
====================================
    SIDEBAR COMPONENT STYLES
====================================
*/

.sidebar__widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sidebar__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Styles for the category list generated by your sidebar.php include */
.sidebar__widget .sidebar__category-list {
  list-style: none;
  padding: 0;
}
.sidebar__widget .sidebar__category-item {
  /* This is the <li> element */
}
.sidebar__widget .sidebar__category-link {
  color: var(--color-neutral-grey);
  text-decoration: none;
  display: block;
  padding: 10px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.sidebar__widget .sidebar__category-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  padding-left: 15px;
}
.sidebar__widget .sidebar__category-item:last-child .sidebar__category-link {
  border-bottom: none;
}

/*
====================================
    PAGE LAYOUT STYLES
====================================
*/
.page-layout {
  display: grid;
  /* This prevents wide content from breaking the grid */
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
  gap: 40px;
}

/* --- Responsive for Page Layout --- */
@media (max-width: 992px) {
  .page-layout {
    grid-template-columns: 1fr; /* On smaller screens, stack them into a single column */
  }
}


/*
====================================
    SINGLE PROJECT PAGE STYLES
====================================
*/

.single-project {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.single-project__header {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-project__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-project__image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.single-project__section-title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-left: 3px solid var(--color-accent);
  padding-left: 15px;
}

.single-project__description {
  color: var(--color-neutral-grey);
  font-size: 1rem;
  line-height: 1.8;
}

/* Ensures paragraphs inside your description are spaced nicely */
.single-project__description p {
  margin-bottom: 1em;
}

.single-project__description p:last-child {
  margin-bottom: 0;
}

/*
====================================
    LOGIN PAGE STYLES
====================================
*/

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Ensures it's centered even on short pages */
  padding: 20px;
}

.login-container {
  max-width: 450px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.login-container__header {
  text-align: center;
  margin-bottom: 30px;
}

.login-container__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 2.2rem;
  text-transform: uppercase;
}

.login-container__subtitle {
  color: var(--color-neutral-grey);
  font-size: 1rem;
}

.login-form__group {
  margin-bottom: 25px;
}

.login-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-neutral-grey);
  font-weight: bold;
}

.login-form__input-wrapper {
  position: relative;
}

.login-form__input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-neutral-grey);
  opacity: 0.6;
  transition: color 0.3s ease;
}

.login-form__input {
  width: 100%;
  padding: 14px 14px 14px 45px; /* Left padding to make space for the icon */
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-radius: 5px;
  outline: none;
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.5);
}

.login-form__input:focus + i {
  color: var(--color-accent);
}

.login-form__button {
  width: 100%;
  padding: 15px;
  border: none;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.login-form__button:hover {
  background: #ff1f43; /* Brighter red */
  box-shadow: 0 0 20px rgba(217, 4, 41, 0.6);
  transform: translateY(-2px);
}

/*
====================================
    ADMIN DASHBOARD STYLES
====================================
*/
.dashboard {
  padding-top: 100px; /* Adjust this value if your header is taller or shorter */
}
/* --- 1. Main Dashboard Layout --- */
.dashboard {
  display: flex;
  min-height: 100vh;
  padding-top: 80px; /* Adjust this value to match your header's height */
}
.dashboard__sidebar {
  width: 260px; /* Fixed width for the sidebar */
  background: var(--color-background-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  flex-shrink: 0; /* Prevents the sidebar from shrinking */
  z-index: 102;
}

.dashboard__main-content {
  flex-grow: 1; /* Takes up the remaining space */
  padding: 40px;
  /* Use a subtle gradient for a high-tech feel */
  background: linear-gradient(45deg, rgba(13, 17, 23,1) 0%, rgba(20, 25, 35,1) 100%);
}

.dashboard__sidebar-header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.dashboard__sidebar-title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.8rem;
  letter-spacing: 1px;
}

/* --- 2. Dashboard Sidebar Navigation --- */
.dashboard-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-nav__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}
.dashboard-nav__user {
  display: block;
  padding: 10px 15px;
  color: var(--color-neutral-grey);
  font-weight: bold;
}
.dashboard-nav__user i {
  margin-right: 10px;
  color: var(--color-accent);
}
.dashboard-nav__link {
  color: var(--color-neutral-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.dashboard-nav__link i {
  margin-right: 15px;
  font-size: 1.1rem;
  width: 20px; /* Aligns text neatly */
}
.dashboard-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
}
.admin_active, .dashboard-nav__link.active { /* Style for active link */
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 0 15px rgba(10, 46, 141, 0.5);
}


/* --- 3. Dashboard Stats Grid --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-color: var(--color-primary);
}
.dashboard-card__icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 15px;
  opacity: 0.8;
}
.dashboard-card__content {
    /* No styles needed here, parent controls layout */
}
.dashboard-card__value {
  font-family: var(--font-family-heading);
  font-size: 2.2rem;
  color: var(--color-text-light);
}
.dashboard-card__title {
  font-size: 1rem;
  color: var(--color-neutral-grey);
  text-transform: uppercase;
}
.dashboard-card__link {
  display: block;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-neutral-grey);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.dashboard-card__link:hover {
  color: var(--color-accent);
}
.dashboard-card__link i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.dashboard-card__link:hover i {
  margin-left: 10px;
}
/*
====================================
    ADMIN FORM STYLES
====================================
*/

.admin-form-container {
  max-width: 700px;
  margin: 0 auto; /* Center the form in the main content area */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admin-form-container__header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-form-container__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.admin-form-container__subtitle {
  color: var(--color-neutral-grey);
  font-size: 1rem;
}

.admin-form__group {
  margin-bottom: 25px;
}

.admin-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-neutral-grey);
  font-weight: bold;
}

.admin-form__input-wrapper {
  position: relative;
}

.admin-form__input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-neutral-grey);
  opacity: 0.6;
}

.admin-form__input {
  width: 100%;
  padding: 14px 14px 14px 45px; /* Space for the icon */
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-radius: 5px;
  outline: none;
  font-family: var(--font-family-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-form__input:focus {
  border-color: var(--color-primary); /* Use primary color for focus */
  box-shadow: 0 0 15px rgba(10, 46, 141, 0.5);
}
.admin-form__input:focus + i {
    color: var(--color-primary);
}


.admin-form__button {
  width: 100%;
  padding: 15px;
  border: none;
  background: var(--color-primary); /* Use primary color for submit */
  color: var(--color-text-light);
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.admin-form__button:hover {
  background: #1a4fce; /* Brighter blue on hover */
  box-shadow: 0 0 20px rgba(10, 46, 141, 0.6);
  transform: translateY(-2px);
}

/*
====================================
    ADMIN FORM - FILE INPUT STYLES
====================================
*/

/* Hide the default file input button */
.admin-form__file-input {
  display: none;
}

/* Style the label to look like a futuristic button */
.admin-form__file-label {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: var(--color-neutral-grey);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-form__file-label i {
  margin-right: 10px;
}

.admin-form__file-label:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

/*
====================================
    ADMIN FORM - ACTION BUTTON STYLES
====================================
*/

/* Container for multiple buttons like 'Save' and 'Back' */
.admin-form__actions {
  display: flex;
  gap: 15px; /* Creates space between buttons */
  margin-top: 30px;
}

/* Make both buttons fill the available space */
.admin-form__actions .admin-form__button {
  width: 100%;
}

/* New style for the secondary 'Back' button */
.admin-form__button--secondary {
  background: transparent;
  border: 1px solid var(--color-neutral-grey);
}

.admin-form__button--secondary:hover {
  background: var(--color-neutral-grey);
  color: var(--color-text-dark);
  border-color: var(--color-neutral-grey);
}

/*
====================================
    ADMIN TABLE COMPONENT STYLES
====================================
*/

.admin-table-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admin-table-container__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table-container__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.8rem;
}

.admin-table-container__add-new-btn {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.admin-table-container__add-new-btn:hover {
  background: #1a4fce;
  box-shadow: 0 0 15px rgba(10, 46, 141, 0.5);
}

/* The Table Itself */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table__header-row th {
  font-family: var(--font-family-heading);
  color: var(--color-neutral-grey);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding: 15px;
  border-bottom: 2px solid var(--color-primary);
}

.admin-table__row {
  transition: background-color 0.3s ease;
}
.admin-table__row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.admin-table__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table__cell {
  padding: 15px;
  color: var(--color-neutral-grey);
}

/* Action Links and Buttons */
.admin-table__action-link,
.admin-table__action-btn {
  color: var(--color-neutral-grey);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.admin-table__action-link--edit {
  background-color: rgba(10, 46, 141, 0.3); /* Blueish tint */
}
.admin-table__action-link--edit:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.admin-table__action-btn {
  border: none;
  font-family: var(--font-family-body);
  font-size: 1rem;
}

.admin-table__action-btn--delete {
  background-color: rgba(217, 4, 41, 0.3); /* Reddish tint */
}
.admin-table__action-btn--delete:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {
  .admin-table thead {
    display: none; /* Hide headers on mobile */
  }
  .admin-table, .admin-table tbody, .admin-table__row, .admin-table__cell {
    display: block;
    width: 100%;
  }
  .admin-table__row {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
  .admin-table__cell {
    text-align: right;
    padding-left: 50%; /* Make space for the label */
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .admin-table__cell:last-child {
    border-bottom: none;
  }
  .admin-table__cell::before {
    content: attr(data-label); /* Use data-label for mobile headers */
    position: absolute;
    left: 15px;
    width: calc(50% - 30px);
    text-align: left;
    font-weight: bold;
    color: var(--color-text-light);
  }
}

/*
====================================
    ADMIN FORM - IMAGE PREVIEW STYLE
====================================
*/

.admin-form__image-preview {
  width: 100%;
  max-width: 200px; /* Limit the preview size */
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 5px;
  background: rgba(0,0,0,0.2);
}

.admin-form__image-preview img {
  width: 100%;
  height: auto;
  display: block; /* Removes any extra space below the image */
  border-radius: 3px;
}

/*
====================================
    ADMIN TABLE & PAGINATION STYLES
====================================
*/

/* --- 1. Admin Table Image Preview --- */
.admin-table__image-preview {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* --- 2. Pagination Component --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px; /* Adjust this value to control spacing */
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination__link {
    padding: 6px 12px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.pagination__link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.pagination__link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

/* Style for the active page number */
.pagination__link.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-light);
  cursor: default;
}

/* Style for disabled Previous/Next links */
.pagination__link--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/*
====================================
    SINGLE PRODUCT PAGE STYLES
====================================
*/

.product-display {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Image column is slightly smaller */
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px; /* Space before related products */
}

.product-display__image-wrapper {
  width: 100%;
}

.product-display__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.product-display__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-display__description {
  color: var(--color-neutral-grey);
  font-size: 1rem;
  line-height: 1.8;
}

/* Ensures paragraphs inside your description are spaced nicely */
.product-display__description p {
  margin-bottom: 1em;
}
.product-display__description p:last-child {
  margin-bottom: 0;
}

/* --- Responsive for Single Product --- */
@media (max-width: 768px) {
  .product-display {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
  .product-display__title {
      font-size: 2.2rem;
  }
}

/*
====================================
    PRODUCT LISTING PAGE STYLES
====================================
*/

/* --- 1. Two-Column Page Layout --- */

/* --- 2. Main Product Grid --- */

/*
====================================
    RESPONSIVE PRODUCT GRID
====================================
*/

.product-grid {
  display: grid;
  /* Default to 4 columns on large desktops */
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
}

/* For tablets and smaller desktops (e.g., < 1200px) */
@media (max-width: 1200px) {
  .product-grid {
    /* Change to 3 columns */
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For smaller tablets (e.g., < 992px) */
@media (max-width: 992px) {
  .product-grid {
    /* Change to 2 columns */
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For mobile phones (e.g., < 576px) */
@media (max-width: 576px) {
  .product-grid {
    /* Stack to a single column */
    grid-template-columns: 1fr;
  }
}
/*
====================================
    ADMIN TABLE - USER LIST STYLES
====================================
*/

/* --- 1. Admin Table Avatar Preview --- */
/* THIS IS THE MISSING RULE TO FIX THE IMAGE SIZE */
.admin-table__avatar-preview {
  width: 40px;
  height: 40px;
  object-fit: cover;      /* Prevents the image from being stretched */
  border-radius: 50%;   /* Makes the avatar circular */
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --- 2. Admin Table Role Badge --- */
.admin-table__role-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 15px; /* Pill shape */
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.admin-table__role-badge--admin {
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.5);
}

.admin-table__role-badge--user {
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(10, 46, 141, 0.5);
}


/*
====================================
    SERVICES PAGE STYLES
====================================
*/

/* --- 1. Page Header --- */
/* This reuses the existing .page-header but adds a subtitle style */
.page-header__subtitle {
  color: var(--color-neutral-grey);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 15px auto 0 auto;
  line-height: 1.6;
}

/* --- 2. Services Grid --- */
.services-grid-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(10, 46, 141, 0.5); /* Blue glow */
}

.service-card__icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-shadow: 0 0 15px var(--color-accent);
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card__title {
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card__description {
  color: var(--color-neutral-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* --- 3. Featured Service Section --- */
.featured-service {
  padding: 80px 0;
  background: rgba(0,0,0,0.1); /* Slightly different background to stand out */
}

.featured-service__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.featured-service__image-wrapper img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.featured-service__content .section-title {
  text-align: left; /* Override default center alignment */
}

.featured-service__content p {
  color: var(--color-neutral-grey);
  line-height: 1.8;
  margin-bottom: 30px;
}

.featured-service__button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-light);
  padding: 14px 28px;
  text-decoration: none;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
}

.featured-service__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(217, 4, 41, 0.8);
}

/* --- Responsive for Services Page --- */
@media (max-width: 992px) {
  .featured-service__grid {
    grid-template-columns: 1fr; /* Stack on tablets */
  }
}

