:root {
  /* Logo Renkleri */
  --primary-blue: #2d74c4; 
  --primary-green: #0ea81f; 

  /* Tema Renkleri */
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --bg-dark: #0f172a;
  --border-light: #e2e8f0;

  --nav-height: 80px;
  --font-main: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.header-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.top-bar {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: calc(8px + env(safe-area-inset-top));
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-bar-item:hover {
  color: #ffffff;
}

.top-bar-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
  }
  .top-bar-right {
    gap: 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar-right {
    gap: 8px;
    font-size: 11px;
  }
}

.navbar {
  position: relative !important;
  top: auto; left: auto; right: auto;
  height: 70px;
  background: #ffffff;
  border-bottom: none;
  box-shadow: none !important;
  z-index: auto;
  display: flex;
  align-items: center;
}
.nav-content { 
  display: flex; 
  justify-content: space-between;
  align-items: center; 
  width: 100%; 
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 55px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}
.nav-links a.active {
  color: var(--primary-blue);
}
.nav-links a:hover { color: var(--primary-blue); }

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1001;
  border-radius: 12px;
  padding: 8px 0;
  top: 100%;
  left: 0;
  border: 1px solid #f1f5f9;
}
.dropdown-content a {
  color: var(--text-dark);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-content a:hover {
  background-color: #f8fafc;
  color: var(--primary-blue);
  padding-left: 24px;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 15px;
}
.btn-primary { background-color: var(--primary-blue); color: white; }
.btn-primary:hover { background-color: #235d9e; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(45,116,196,0.3); }
.btn-outline { background-color: transparent; color: white; border-color: white; }
.btn-outline:hover { background-color: white; color: var(--text-dark); }
.btn-nav-contact {
  background-color: var(--primary-green);
  color: white;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.btn-nav-contact:hover {
  background-color: #0c911a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(14,168,31,0.3);
}
.nav-contact-btns { display: flex; gap: 10px; justify-self: end; }
@media (max-width: 1100px) {
  .btn-nav-contact { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 900px) {
  .nav-contact-btns { display: none; }
  .nav-content {
    display: flex;
    justify-content: space-between;
  }
}

/* HERO BACKGROUND VIDEO */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: white; max-width: 750px; }
.hero-title { font-size: 72px; font-weight: 800; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px;}
.hero-subtitle { font-size: 22px; font-weight: 300; color: #e5e7eb; margin-bottom: 40px; line-height: 1.6;}
.hero-actions { display: flex; gap: 16px; }

/* SECTIONS */
.section { padding: 120px 0; }
.section-gray { background-color: var(--bg-gray); }
.section-title { font-size: 42px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -1px; }
.section-desc { font-size: 18px; color: var(--text-light); max-width: 650px; margin-bottom: 60px; }

/* DOORS GRID */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  border: 1px solid var(--border-light);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}
.product-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--bg-gray); /* skeleton */
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.05); }
.product-info { padding: 30px; }
.product-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.product-info p { font-size: 15px; color: var(--text-light); line-height: 1.5; }

/* STORAGE SPLIT */
.container-split {
  display: flex;
  align-items: center;
  gap: 60px;
}
.split-content { flex: 1; }
.split-image { flex: 1; }
.sleek-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-list { list-style: none; margin: 30px 0; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* CONTACT */
.text-center { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}
.contact-info-box h3 { font-size: 24px; color: var(--primary-blue); margin-bottom: 24px; }
.contact-info-box p { font-size: 16px; margin-bottom: 16px; color: var(--text-light); }
.contact-info-box strong { color: var(--text-dark); }

.service-form { display: flex; flex-direction: column; gap: 20px; }
.service-form input, .service-form select, .service-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color var(--transition-fast);
}
.service-form input:focus, .service-form select:focus, .service-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(45,116,196,0.1);
}

/* ── MODERN FOOTER ── */
.site-footer {
    background: #0b1628;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 54px;
    margin-bottom: 24px;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    color: #4ade80;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: #4ade80;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    color: #64748b;
    font-size: 13px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.15);
}

.footer-bottom-links a:hover {
    color: #cbd5e1;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #334155;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #22c55e;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}

.social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 8px 20px rgba(214,36,159,0.3);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-container { padding: 40px 30px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .footer-brand { grid-column: span 2; margin-bottom: 20px; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
}

@media (max-width: 480px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-title { font-size: 48px; }
  .container-split { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; padding: 30px; }
}
@media (max-width: 768px) {
  .nav-links { display: flex; } 

  .hero-title { font-size: 40px; }
  .grid-container { grid-template-columns: 1fr; }
}

/* LIGHTBOX STYLES */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.lightbox-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  position: relative;
}
.lightbox-img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}
.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0,0,0,0.5);
  border: none;
  z-index: 10000;
}
.lightbox-next {
  right: 5%;
  border-radius: 3px 0 0 3px;
}
.lightbox-prev {
  left: 5%;
  border-radius: 3px 0 0 3px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--primary);
}
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  font-size: 18px;
}
.lightbox-trigger {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.lightbox-trigger:hover {
  transform: scale(1.03);
}
@keyframes zoomIn {
  from {transform:scale(0.95); opacity:0;}
  to {transform:scale(1); opacity:1;}
}
/* ── MODERN CONTACT SECTION ── */
.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.contact-card-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
}

.contact-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
}

.bg-green { background-color: var(--primary-green); }
.bg-blue { background-color: var(--primary-blue); }

.contact-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.form-group label span {
    color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(14, 168, 31, 0.1);
}

.btn-submit-modern {
    width: 100%;
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-modern:hover {
    background: #0c911a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 168, 31, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-info-list {
        grid-template-columns: 1fr;
    }
}

/* ── REFERENCES ── */
.references-section {
    padding: 60px 20px;
    background: #ffffff;
}
.references-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.references-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.references-track img {
    height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.references-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── PAGE HERO TITLES (Matches index.html slider-title) ── */
.page-hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 22px;
}
/* ── MOBILE MENU ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 2100;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 2050;
        padding: 40px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 18px; width: 100%; text-align: center; }
    .nav-content { display: flex; justify-content: space-between; }
    .nav-contact-btns { display: none; }
}

/* --- PREMIUM VIDEO CARDS & LIGHTBOX --- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.video-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: var(--primary-green);
}
.video-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.video-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.video-card:hover .video-card-img img {
  transform: scale(1.06);
}
.video-card-body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.video-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.video-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-card:hover .play-btn-overlay {
  background: rgba(0,0,0,0.45);
}
.play-icon {
  width: 55px;
  height: 55px;
  background: rgba(14, 168, 31, 0.95); /* ALNES green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(14, 168, 31, 0.4);
}
.play-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 4px;
}
.video-card:hover .play-icon {
  transform: scale(1.12);
}
.video-lightbox {
  position: fixed;
  z-index: 100000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.vl-close {
  position: absolute;
  top: 30px; right: 40px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100001;
  line-height: 1;
  transition: color 0.2s ease;
}
.vl-close:hover {
  color: #ef4444; /* red on hover */
}
.vl-content {
  width: 85%;
  max-width: 960px;
  max-height: 80vh;
  display: flex;
  justify-content: center;
}
.vl-content video {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {

    .nav-toggle{
        display:flex;
        flex-direction:column;
        gap:5px;
        background:none;
        border:none;
        cursor:pointer;
    }

    .nav-toggle span{
        width:25px;
        height:3px;
        border-radius:3px;
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#0b1628;
        flex-direction:column;
        padding:20px;
        display:none;
        z-index:999;
    }

    .nav-links.active{
        display:flex;
    }
}

