

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


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    margin-top: 10px;
    height: 30px;
    width: auto;
    transition: 0.3s ease-in-out;
}

.nav-logo img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-item {
    position: relative;
}

#home {
    background: none;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #349dd1 0%, #2e21bd 100%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4280d1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* =========================
   HEADER
========================= */
header {
   background: linear-gradient(135deg, #001f3f, #004b8d, #0074d9);
    color: #fff;
    text-align: center;
    padding: 6rem 1rem 3rem;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
    padding: 5rem 0;
    background: white; /* Subtle yellow tint */
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.services-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    width: 95%;
    max-width: none;
    margin: 0 auto;
    display: block;
    transition: all 0.7s ease-in-out;
    border: 1px solid rgba(4, 140, 252, 0.1);
    box-shadow: 0 4px 12px rgba(4, 140, 252, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: auto;
}

/* Staggered animation delays for each card */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}


.service-card:hover,
.service-card:focus,
.service-card.expanded {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(4, 140, 252, 0.2);
    padding: 2.5rem 3rem 3rem;
    border-color: rgba(4, 140, 252, 0.3);
    transition: all 0.7s ease-in-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 140, 252, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before,
.service-card:focus::before,
.service-card.expanded::before {
    left: 100%;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    background: linear-gradient(135deg, #048cfc, #5694de);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(4, 140, 252, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:hover .service-number,
.service-card:focus .service-number,
.service-card.expanded .service-number {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(4, 140, 252, 0.4);
}

.service-card:nth-child(1) .service-number { animation-delay: 0.2s; }
.service-card:nth-child(2) .service-number { animation-delay: 0.3s; }
.service-card:nth-child(3) .service-number { animation-delay: 0.4s; }
.service-card:nth-child(4) .service-number { animation-delay: 0.5s; }
.service-card:nth-child(5) .service-number { animation-delay: 0.6s; }
.service-card:nth-child(6) .service-number { animation-delay: 0.7s; }
.service-card:nth-child(7) .service-number { animation-delay: 0.8s; }

.service-content {
    width: 100%;
    padding-top: 3.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #05478a;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-content h3,
.service-card:focus .service-content h3,
.service-card.expanded .service-content h3 {
    color: #048cfc;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-content h3 { animation-delay: 0.3s; }
.service-card:nth-child(2) .service-content h3 { animation-delay: 0.4s; }
.service-card:nth-child(3) .service-content h3 { animation-delay: 0.5s; }
.service-card:nth-child(4) .service-content h3 { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-content h3 { animation-delay: 0.7s; }
.service-card:nth-child(6) .service-content h3 { animation-delay: 0.8s; }
.service-card:nth-child(7) .service-content h3 { animation-delay: 0.9s; }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 1;
    max-height: 50px;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.service-card:nth-child(1) .service-tags { animation-delay: 0.4s; }
.service-card:nth-child(2) .service-tags { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-tags { animation-delay: 0.6s; }
.service-card:nth-child(4) .service-tags { animation-delay: 0.7s; }
.service-card:nth-child(5) .service-tags { animation-delay: 0.8s; }
.service-card:nth-child(6) .service-tags { animation-delay: 0.9s; }
.service-card:nth-child(7) .service-tags { animation-delay: 1s; }

.tag {
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding: 4px 12px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

/* .service-card:hover .tag {
    background: rgba(4, 98, 165, 0.1);
    color: #0462a5;
    transform: translateY(-2px);
} */

.tag:not(:last-child)::after {
    content: '●';
    position: absolute;
    right: -2px;
    color: #555;
    font-size: 0.6rem;
}

.service-content p {
    font-size: 1.05rem;
    color: #657e98;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    margin-top: 0;
}

/* .service-card:hover .service-content p,
.service-card:focus .service-content p,
.service-card.expanded .service-content p {
    opacity: 1;
    max-height: 500px;
    margin-top: 1.5rem;
    color: #2c3e50;
} */

/* .service-card:hover .service-tags,
.service-card:focus .service-tags,
.service-card.expanded .service-tags {
    margin-bottom: 1rem;
    max-height: 200px;
} */

.service-card:nth-child(1) .service-content p { animation-delay: 0.5s; }
.service-card:nth-child(2) .service-content p { animation-delay: 0.6s; }
.service-card:nth-child(3) .service-content p { animation-delay: 0.7s; }
.service-card:nth-child(4) .service-content p { animation-delay: 0.8s; }
.service-card:nth-child(5) .service-content p { animation-delay: 0.9s; }
.service-card:nth-child(6) .service-content p { animation-delay: 1s; }
.service-card:nth-child(7) .service-content p { animation-delay: 1.1s; }

.service-content p:last-of-type {
    margin-bottom: 2rem;
}

/* Button Styling */
/* ========================= */
.button {
  height: 50px;
  width: 150px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #0462a5; 
  overflow: hidden;
  border-radius: 30px;
  color: #0462a5;
  transition: all 0.5s ease-in-out;
  margin-top: 4px;
  margin-left: 1100px;
  
}

.btn-txt {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}

.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.8s ease-in-out;
  background: linear-gradient(90deg, #01e6f3, #014da3, #0095ff); 
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: 0;
}

.button:hover {
  /* box-shadow: 1px 1px 200px #252525; */
  border: none;
}

.button:hover .btn-txt {
  color: white;
}

.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}
/* =========================
   FOOTER
========================= */
.footer {
    background: linear-gradient(135deg, #001f3f, #004b8d, #0074d9);
    padding: 50px 6% 25px;
    color: white;
    font-family: "Segoe UI", Roboto, sans-serif;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-col {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 1rem;
    color: #b8d4ff;
}

.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #aee0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col ul li a {
    color: #e0ecff;
    font-size: 0.9rem;
    text-decoration: none;
}

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

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

.footer-col ul li a:hover {
    color: #00e1ff;
    transform: translateX(4px);
}

.bottom {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 15px;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-links a {
    color: #cde9ff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #00e1ff;
}

.bottom p {
    font-size: 0.8rem;
    color: #b8d4ff;
    margin-top: 8px;
}
.bottom {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 20px;
    width: 100%;
    display: block;
}

.bottom p {
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 8px;
    white-space: normal !important;
    overflow-wrap: break-word;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 24px 0;
        gap: 0;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 12px 0;
        padding: 0 24px;
    }

    .nav-link {
        font-size: 17px;
        display: block;
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet navbar logo alignment (760px–1024px) */
@media (min-width: 760px) and (max-width: 1024px) {
  .nav-container { padding: 0 40px; height: 75px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 30px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Mid-range tablets/large phones (500px–760px) navbar logo alignment */
@media (min-width: 500px) and (max-width: 760px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Exact 600px tablet width tweak */
@media (width: 600px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    header {
        padding: 5rem 1rem 2.5rem;
    }

    header h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    header p {
        font-size: 1rem;
    }

    .services-section {
        padding: 3rem 0;
        width: 100vw;
    }

    .services-container {
        padding: 0 1rem;
        gap: 1.8rem;
    }

    .service-card {
        padding: 1.8rem 1.5rem;
        width: 100%;
        margin: 0;
        border-radius: 8px;
    }

    .service-card:hover,
    .service-card:focus,
    .service-card.expanded {
        padding: 2rem 2rem 2.5rem;
        box-shadow: 0 8px 25px rgba(4, 140, 252, 0.15);
    }

    .service-number {
        top: 1.2rem;
        left: 1.2rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .service-content {
        padding-top: 3rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .service-tags {
        gap: 10px;
        margin-bottom: 16px;
    }

    .tag {
        font-size: 0.875rem;
        padding: 6px 14px;
    }

    .service-content p {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 1rem;
    }

    .button {
        margin-left: 0;
        margin: 16px auto 0;
    }
}

/* Tablet layout (761px–1024px): logo fixed on left, three columns on right */
@media (min-width: 761px) and (max-width: 1024px) {
  /* Make Services page CTA button visible and centered on tablet */
  .services-section > a { display: block; width: fit-content; margin: 16px auto 0; text-decoration: none; }
  .services-section > a .button { margin: 0; }
  .footer-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 20px;
  }

  .footer-logo-col {
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    grid-template-areas:
      "head navigation"
      "follow follow";
    width: 100%;
    justify-items: start;
    text-align: left;
    column-gap: 28px;
    row-gap: 24px;
  }

  .footer-columns .footer-col:nth-child(1) { grid-area: head; }
  .footer-columns .footer-col:nth-child(2) { grid-area: navigation; }
  .footer-columns .footer-col:nth-child(3) { grid-area: follow; margin-top: 4px; }
}


@media (max-width: 760px) {
    .footer {
        padding: 40px 5% 20px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-logo-col {
        align-items: center;
        flex: 1;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }

    .footer-col h3 {
        font-size: 0.85rem;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 65px;
    }

    .nav-logo img {
        margin-top: 10px;
        height: 26px;
    }

    header {
        padding: 4.5rem 1rem 2rem;
    }

    header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .services-container {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
        margin: 0;
        border-radius: 6px;
    }

    .service-card:hover,
    .service-card:focus,
    .service-card.expanded {
        padding: 1.8rem 1.5rem 2rem;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-number {
        top: 1rem;
        left: 1rem;
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .service-content {
        padding-top: 2.8rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .service-tags {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .tag {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .tag:not(:last-child)::after {
        display: none;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.8rem;
    }

    .button {
        height: 40px;
        width: 130px;
        margin: 16px 0 0 auto;
        display: block;
         text-decoration: none;
    }

    .btn-txt {
        letter-spacing: 1.5px;
        font-size: 0.8rem;
       
    }

    .footer {
        padding: 35px 4% 18px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ===== Simplify service cards: no animation, no hover expansion, all content visible ===== */
.service-card {
    /* disable all animations/transitions and keep layout stable */
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 6px 14px rgba(4, 140, 252, 0.08) !important;
    padding: 2rem 2.5rem !important; /* consistent padding */
    border-color: rgba(4, 140, 252, 0.08) !important;
    overflow: visible !important;
    height: auto !important;
    cursor: default !important;
}

/* Remove any hover/focus/expanded transforms so cards stay static */
.service-card:hover,
.service-card:focus,
.service-card.expanded {
    transform: none !important;
    box-shadow: 0 6px 14px rgba(4, 140, 252, 0.08) !important;
    padding: 2rem 2.5rem !important;
}

/* Remove decorative shimmer/overlay */
.service-card::before {
    display: none !important;
    transition: none !important;
}

/* Make service number static and visible */
.service-number {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 3px 8px rgba(4,140,252,0.12) !important;
}

/* Disable intro animations for headings, tags and paragraphs and ensure visibility */
.service-content h3,
.service-tags,
.service-content p {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Ensure paragraph text is visible and readable */
.service-content p {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.7 !important;
    text-align: justify;
}

/* Remove any stagger/delay rules (safe overrides) */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
    animation-delay: 0s !important;
}

/* Respect reduced-motion preference (already friendly) */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-number,
    .service-content h3,
    .service-tags,
    .service-content p {
        animation: none !important;
        transition: none !important;
    }
}



/* Enforce consistent navbar logo on tablets / iPad sizes */
@media (min-width: 760px) and (max-width: 1024px),
       (max-width: 768px) {
  .nav-container {
    padding: 0 20px !important;
    height: 75px !important;
    align-items: center !important;
  }

  .nav-logo,
  .nav-logo a { display: flex; align-items: center; }

  .nav-logo img {
    height: 30px !important;
    width: auto !important;
    margin-top: 10px !important;
    display: block !important;
    transform: none !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

/* Tablet navbar logo alignment (760px–1024px) to match products */
@media (min-width: 760px) and (max-width: 1024px) {
  .nav-container { padding: 0 40px; height: 75px; align-items: center; }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 30px; width: auto; margin-top: 10px !important; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Mid-range tablets/large phones (500px–760px) navbar logo alignment */
@media (min-width: 500px) and (max-width: 760px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

/* Exact 600px tablet width tweak */
@media (width: 600px) {
  .nav-container { padding: 0 20px; height: 70px; align-items: center; }
  .nav-logo a { display: flex; align-items: center; }
  .nav-logo img { display: block; height: 28px; width: auto; margin-top: 10px; }
  .nav-menu { margin-left: auto; align-items: center; }
}

