/* =====================================================
   RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.7;
    background-color: #f5efe6;
    color: #2b2b2b;
    padding-top: 80px;
}
/* =====================================================
  NAV BAR
===================================================== */

/* ================================
   FIXED NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* FULL WIDTH CONTAINER */
.nav-container {
    width: 100%;
    padding: 14px 40px; /* controls left & right spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

.nav-logo span {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: #f5f3ee;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}


@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    body {
        padding-top: 120px;
    }
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #0b0b0b;
    margin-bottom: 15px;
    animation: fadeUp 0.9s ease forwards;
}

h1 { font-size: 44px; }
h2 { font-size: 30px; }

p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards;
}

ul {
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* =====================================================
   LINKS & BUTTONS
===================================================== */
a {
    color: #0b3a6a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #d4af37;
    color: #0b0b0b;
}

.btn-primary:hover {
    background: #b8962e;
    transform: translateY(-2px);
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

section {
    margin-bottom: 70px;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 60px 0;
}

/* =====================================================
   HERO (INDEX)
===================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY (80%) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 850px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-section {
    height: 80vh;
  }
}


/* =====================================================
   DARK SECTIONS
===================================================== */
.dark-section {
    background: #0b0b0b;
    color: #f5f3ee;
}

.dark-section h2 {
    color: #d4af37;
}

.dark-section p,
.dark-section li {
    color: #ccc;
}

/* =====================================================
   CARDS
===================================================== */
.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ================================
   FAQ SECTION
================================ */
.faq-section {
    padding: 5px 20px;
    background: #f5efe6;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 15px;
    border: 1px solid black;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0 20px;
    color: #444;
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}


/* =====================================================
   PRODUCT SPEC TABLES
===================================================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    animation: fadeUp 1s ease forwards;
}

th {
    background: #0b0b0b;
    color: #d4af37;
    padding: 14px;
    text-align: left;
}

td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f2ede4;
}

/* Mobile table scroll */
.table-wrap {
    overflow-x: auto;
}

/* =====================================================
   GALLERY
===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

figure {
    animation: fadeUp 1s ease forwards;
}

figure img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

figure img:hover {
    transform: scale(1.04);
}

figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* =====================================================
   CONTACT
===================================================== */
.contact-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    animation: fadeUp 1s ease forwards;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* =====================================================
   TRUST HIGHLIGHT
===================================================== */
.highlight {
    background: #eef2f8;
    border-left: 4px solid #0b3a6a;
    padding: 18px;
    font-size: 15px;
    animation: fadeUp 1s ease forwards;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #808080;
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 10px;
}

/* ABOUT */
.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    color: #f1f1f1;
}

.footer-about span {
    color: #ffd24d;
    font-weight: 600;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
    margin-right: 0;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #000;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffd24d;
}

/* LINKS */
.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffd24d;
}

/* CONTACT STRIP */
.footer-contact {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffd24d;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 5px;
    background: #7a7a7a;
    font-size: 14px;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ================================
   BACK TO TOP BUTTON
================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #d4af37;
    color: #000;
}

/* ================================
   WHATSAPP FLOAT BUTTON
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */
@media (max-width: 992px) {
    h1 { font-size: 38px; }
    .hero h1 { font-size: 44px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */
@media (max-width: 576px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }

    p { font-size: 15px; }

    .container {
        padding: 50px 15px;
    }

    .hero {
        text-align: center;
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    table th,
    table td {
        font-size: 14px;
        padding: 10px;
    }

    .whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================
   SPLIT IMAGE + TEXT LAYOUT
================================ */
.split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split .text {
    flex: 1;
}

.split .image {
    flex: 1;
}

.split .image img {
    width: 100%;
    border-radius: 10px;
}

/* Reverse layout */
.split.reverse {
    flex-direction: row-reverse;
}

/* Mobile */
@media (max-width: 768px) {
    .split,
    .split.reverse {
        flex-direction: column;
    }
}

.product-intro {
    padding: 10px 20px;
    background: #f5efe6;
}

.product-intro p {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #2b2b2b;
    text-align: center;
}
.product-intro {
    padding: 10px 20px;
    background: #f5efe6;
}

.product-intro p {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #2b2b2b;
    text-align: center;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    border: 1px solid #e1e1e1;
    font-size: 15px;
}

.spec-table th {
    background: black;
    color: white;
    text-align: left;
    width: 35%;
    font-weight: 500;
}

.spec-table td {
    color: #2b2b2b;
}
.quality-section {
    padding: 5px 20px;
    background: whitesmoke;
    color: #0b0b0b;
    text-align: center;
}

.quality-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #d4af37;
}

.quality-points {
    list-style: none;
    max-width: 700px;
    margin: auto;
    padding: 0;
}

.quality-points li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #0b0b0b;
}
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #222);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    color: #ddd;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #d4af37;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
}
@media (max-width: 768px) {
    .product-section h2 {
        font-size: 26px;
    }

    .spec-table th,
    .spec-table td {
        font-size: 14px;
    }

    .quality-section h2,
    .cta-section h2 {
        font-size: 26px;
    }
}
/* =========================
   GALLERY PAGE STYLES
========================= */

.gallery-section {
    padding: 10px 0;
    background: #f8f9fb;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.12);
    opacity: 0.85;
}

/* =========================
   HERO INNER (GALLERY HERO)
========================= */

.hero-inner {
    position: relative;
    height: 60vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-inner .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    );
}

.hero-inner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-inner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-inner p {
    font-size: 18px;
    opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .hero-inner {
        height: 45vh;
    }

    .hero-inner h1 {
        font-size: 32px;
    }

    .hero-inner p {
        font-size: 16px;
    }
}
/* ================================
   INFO SECTIONS – PREMIUM EXPORTER
================================ */

/* Section Wrapper */
.info-section {
    padding: 10px 0;
    background: #0b0b0b;
    color: #f5f3ee;
}

.info-section.light-bg {
    background: #f5efe6;
    color: #2b2b2b;
}

.info-section.dark-bg {
    background: #0b0b0b;
    color: #f5f3ee;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section Titles */
.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.section-title p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9a9a9a;
    line-height: 1.6;
}

.section-title.light-text p {
    color: #cccccc;
}

/* Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Info Cards */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 28px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.35s ease;
    position: relative;
}

/* Light Section Card */
.light-bg .info-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dark Section Card */
.dark-box {
    background: rgba(255, 255, 255, 0.02);
}

/* Hover Effect */
.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border-color: #d4af37;
}

/* Card Heading */
.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 14px;
    color: #d4af37;
}

/* Card Text */
.info-box p {
    font-family: 'Inter', sans-serif;
    font-size: 14.8px;
    line-height: 1.7;
    color: inherit;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .info-section {
        padding: 65px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .info-box {
        padding: 28px 22px;
    }
}
/* CONTACT DETAILS */
.contact-details {
    padding: 70px 20px;
    background: #f9fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card img {
    width: 55px;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #0b5ed7;
}

/* IMAGE SECTION */
.contact-images {
    padding: 70px 20px;
}

.contact-images h2 {
    text-align: center;
    margin-bottom: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid,
    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-grid img {
        height: 200px;
    }
}
.export-cta {
    background: linear-gradient(135deg, #91d2ed, #203a43, #2c5364);
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
}

.export-cta-content {
    max-width: 900px;
    margin: auto;
}

.export-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.export-cta p {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 35px;
}

.export-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #2c5364;
}

.btn-primary:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c5364;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .export-cta h2 {
        font-size: 26px;
    }

    .export-cta p {
        font-size: 16px;
    }
}
/* FOOTER MOBILE FIX */
@media (max-width: 768px) {

    .footer {
        text-align: center;
        text-decoration: none;
    }

    .footer-links,
    .footer-important {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-links a,
    .footer-important a {
        text-align: center;
        width: 100%;
        display: block;
        margin: 8px 0;
    }

    .footer h3 {
        text-align: center;
        margin-bottom: 15px;
    }
}
/* NAVBAR */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menu default (desktop) */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

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

    .nav-menu li {
        margin: 12px 0;
    }

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