 :root {
    --green: #1a9c3e;
    --green-dark: #126b2a;
    --green-light: #e8f7ed;
    --orange: #e87722;
    --cream: #f8f5f0;
    --white: #ffffff;
    --text: #1c2b1e;
    --text-light: #5a6b5c;
    --border: #d4e8d8;
    --shadow: 0 4px 24px rgba(26,156,62,0.10);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 70px;
    box-shadow: 0 2px 20px rgba(26,156,62,0.08);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img{
    border-radius: 10px;
    width: 200px;
  }
  .nav-logo-icon {
    width: 48px; height: 48px; background: var(--green);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: #fff; font-size: 18px; letter-spacing: -1px;
  }
  .nav-logo-icon span { color: var(--orange); }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--green-dark); }
  .nav-logo-text small { font-size: 10px; color: var(--text-light); letter-spacing: 0.5px; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-light); transition: color .2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: #fff; border: none; border-radius: 8px;
    padding: 10px 22px; font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background .2s, transform .1s;
  }
  .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    margin-top: 70px; min-height: 90vh;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2ec460 100%);
    display: flex; align-items: center; padding: 80px 5vw;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .hero::after {
    content: ''; position: absolute; right: 100px; bottom: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .hero-content { max-width: 560px; z-index: 1; animation: fadeUp .8s ease; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px; padding: 6px 16px; margin-bottom: 24px;
    font-size: 12px; color: #cfffdb; letter-spacing: 1px; text-transform: uppercase;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 62px); color: #fff; line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero h1 em { color: var(--orange); font-style: normal; }
  .hero p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: #fff; color: var(--green-dark); border: none;
    padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: transform .15s, box-shadow .15s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .btn-ghost {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: background .2s, border-color .2s;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.2);
  }
  .stat { color: #fff; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
  .hero-right {
    position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
    z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .hero-right img{
    max-width: 500px;
  }
  .hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px; padding: 20px; text-align: center; color: #fff;
    animation: fadeUp .8s ease both;
  }
  .hero-card:nth-child(2) { animation-delay: .1s; margin-top: 32px; }
  .hero-card:nth-child(3) { animation-delay: .2s; }
  .hero-card:nth-child(4) { animation-delay: .3s; margin-top: 32px; }
  .hero-card-icon { font-size: 28px; margin-bottom: 8px; }
  .hero-card h4 { font-size: 14px; font-weight: 600; }
  .hero-card p { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* ── SECTIONS COMMON ── */
  section { padding: 80px 5vw; }
  .section-label {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
  }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2; margin-bottom: 12px; }
  .section-sub { font-size: 15px; color: var(--text-light); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

  /* ── ABOUT ── */
  .about { background: #fff; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--green-light), var(--green));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 80px; overflow: hidden;
  }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--green); color: #fff; border-radius: 16px;
    padding: 16px 24px; text-align: center; box-shadow: var(--shadow);
  }
  .about-badge-float strong { display: block; font-size: 28px; font-weight: 800; }
  .about-badge-float span { font-size: 11px; opacity: 0.85; }
  .feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--green-light); border-radius: 12px; padding: 14px 16px;
    font-size: 13px; font-weight: 500; line-height: 1.4;
  }
  .feature-list li .ico { font-size: 18px; flex-shrink: 0; }

  /* ── SERVICES ── */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card {
    background: #fff; border-radius: 18px; padding: 32px 24px;
    border: 1px solid var(--border); transition: box-shadow .2s, transform .2s;
    cursor: pointer;
  }
  .service-card:hover { box-shadow: 0 12px 40px rgba(26,156,62,0.12); transform: translateY(-4px); }
  .service-icon {
    width: 56px; height: 56px; background: var(--green-light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    margin-bottom: 18px;
  }
  .service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .service-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
  .service-tag {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; margin-right: 6px; margin-bottom: 4px;
  }

  /* ── DOCTORS ── */
  .doctors { background: #fff; }
  .doctors-grid { display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    gap: 24px;
    justify-content: center; }
  .doctor-card {
    background: var(--cream); border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border); transition: box-shadow .2s;
  }
  .doctor-card:hover { box-shadow: 0 12px 40px rgba(26,156,62,0.12); }
  .doctor-img {
    height: 200px; background: linear-gradient(135deg, var(--green-light) 0%, #b2e8c0 100%);
    display: flex; align-items: center; justify-content: center; font-size: 64px;
  }
  .doctor-info { padding: 20px; }
  .doctor-info h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 4px; }
  .doctor-spec { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
  .doctor-exp { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
  .doctor-btn {
    width: 100%; background: var(--green); color: #fff; border: none;
    border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background .2s;
  }
  .width-fit-content {
    width: 100%; background: var(--green); color: #fff; border: none;
    border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background .2s;
  }
  .doctor-btn:hover { background: var(--green-dark); }

  /* ── GALLERY ── */
  .gallery { background: var(--cream); text-align: center;}
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .gallery-item {
    aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; cursor: pointer; transition: transform .2s;
  }
  /* .gallery-item:first-child { grid-column: span 2; } */
  .gallery-item:hover { transform: scale(1.02); }


  .width-fit-content{width: fit-content;margin-top: 15px;cursor: pointer;}
  /* ── TESTIMONIALS ── */
  .testimonials { background: #fff; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: var(--cream); border-radius: 16px; padding: 24px;
    border: 1px solid var(--border);
  }
  .stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; }
  .testimonial-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--green);
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px;
  }
  .reviewer-name { font-weight: 700; font-size: 14px; }
  .reviewer-label { font-size: 12px; color: var(--text-light); }
  .rating-overall {
    display: flex; align-items: center; gap: 16px;
    background: var(--green-light); border-radius: 14px; padding: 20px 28px;
    margin-top: 32px; width: fit-content;
  }
  .rating-num { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--green); font-weight: 700; }
  .rating-stars { color: #f5a623; font-size: 20px; }
  .rating-count { font-size: 13px; color: var(--text-light); }

  /* ── TIMINGS ── */
  .timings { background: var(--green-dark); }
  .timings .section-title { color: #fff; }
  .timings .section-label { background: rgba(255,255,255,0.15); color: #cfffdb; }
  .timings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .timing-block {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px; padding: 28px;
  }
  .timing-block h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
  .timing-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-size: 14px; }
  .timing-row:last-child { border-bottom: none; }
  .appt-btn {
    display: block; width: 100%; margin-top: 48px;
    background: var(--orange); color: #fff; border: none;
    border-radius: 12px; padding: 18px; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: opacity .2s;
    text-align: center; letter-spacing: 0.5px;
  }
  .appt-btn:hover { opacity: 0.9; }

  /* ── MAP / CONTACT ── */
  .contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
  .contact-icon {
    width: 44px; height: 44px; background: var(--green-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--text-light); text-decoration: none; }
  .contact-info-item a:hover { color: var(--green); }
  .map-embed {
    width: 100%; height: 320px; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
  }
  .map-embed iframe { width: 100%; height: 100%; border: none; }

  /* ── WHY US ── */
  .why { background: #fff; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card {
    text-align: center; padding: 32px 20px;
    background: var(--cream); border-radius: 18px; border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
  }
  .why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .why-icon { font-size: 36px; margin-bottom: 14px; }
  .why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .why-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    padding: 56px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: #fff; }
  .cta-strip p { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 6px; }
  .cta-strip-btns { display: flex; gap: 14px; flex-shrink: 0; }
  .cta-phone {
    background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4);
    color: #fff; padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
    cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 8px;
  }
  .cta-book {
    background: var(--orange); color: #fff; border: none;
    padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: opacity .2s;
  }
  .cta-book:hover { opacity: 0.9; }

  /* ── FOOTER ── */
  footer {
    background: #0d1a0f; color: rgba(255,255,255,0.75);
    padding: 60px 5vw 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand strong { display: block; font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; margin-bottom: 8px; }
  .footer-brand strong img{ border-radius: 10px; width: 250px;}
  .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
  .footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--green); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
  .socials { display: flex; gap: 12px; }
  .social-btn {
    width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    cursor: pointer; transition: background .2s; text-decoration: none;
  }
  .social-btn i{
    color: #01a648;
  }
  .social-btn:hover { background: var(--green); }


  /* ── SIDEBAR FORM ── */
  .sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45);
    z-index: 2000; opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .sidebar-overlay.open { opacity: 1; pointer-events: all; }
 
  .sidebar-form {
    position: fixed; top: 0; right: -420px; width: 400px; max-width: 95vw;
    height: 100vh; background: #fff; z-index: 2001;
    box-shadow: -8px 0 48px rgba(0,0,0,0.18);
    transition: right .4s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; overflow: hidden;
  }
  .sidebar-form.open { right: 0; }
 
  .sidebar-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 28px 28px 24px;
    position: relative; flex-shrink: 0;
  }
  .sidebar-header::after {
    content: ''; position: absolute; bottom: -20px; left: 0; right: 0; height: 40px;
    background: #fff; border-radius: 24px 24px 0 0;
  }
  .sidebar-close {
    position: absolute; top: 18px; right: 18px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .sidebar-close:hover { background: rgba(255,255,255,0.35); }
  .sidebar-header-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px; padding: 4px 12px; font-size: 11px; color: #cfffdb;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
  }
  .sidebar-header h2 {
    font-family: 'Playfair Display', serif; font-size: 24px;
    color: #fff; line-height: 1.2; margin-bottom: 6px;
  }
  .sidebar-header p { font-size: 13px; color: rgba(255,255,255,0.78); }
 
  .sidebar-body { padding: 36px 28px 28px; flex: 1; overflow-y: auto; }
 
  .form-group { margin-bottom: 22px; }
  .form-group label {
    display: block; font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 8px; letter-spacing: 0.3px;
  }
  .form-group label span { color: var(--green); }
  .form-control {
    width: 100%; border: 1.5px solid var(--border);
    border-radius: 10px; padding: 13px 16px;
    font-size: 14px; font-family: 'DM Sans', sans-serif;
    color: var(--text); background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
    outline: none; resize: none;
  }
  .form-control::placeholder { color: #aab8ac; }
  .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,156,62,0.12);
    background: #fff;
  }
  textarea.form-control { height: 110px; line-height: 1.6; }
 
  .form-input-icon { position: relative; }
  .form-input-icon .form-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    font-size: 16px; pointer-events: none;
  }
  .form-input-icon .form-control { padding-left: 42px; }
 
  .sidebar-submit {
    width: 100%; background: var(--green); color: #fff;
    border: none; border-radius: 12px; padding: 15px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .15s;
    font-family: 'DM Sans', sans-serif; letter-spacing: 0.3px;
    margin-top: 4px;
  }
  .sidebar-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,156,62,0.25);
  }
  .sidebar-submit:active { transform: translateY(0); }
 
  .sidebar-or {
    text-align: center; color: var(--text-light); font-size: 13px;
    margin: 18px 0; position: relative;
  }
  .sidebar-or::before, .sidebar-or::after {
    content: ''; position: absolute; top: 50%; width: 38%; height: 1px;
    background: var(--border);
  }
  .sidebar-or::before { left: 0; }
  .sidebar-or::after { right: 0; }
 
  .sidebar-call-btns { display: flex; flex-direction: column; gap: 10px; }
  .sidebar-call-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--green-light); border: 1.5px solid var(--border);
    border-radius: 10px; padding: 12px 16px; text-decoration: none;
    color: var(--green-dark); font-weight: 600; font-size: 14px;
    transition: background .2s, border-color .2s;
  }
  .sidebar-call-btn:hover { background: #d0f0d8; border-color: var(--green); }
  .sidebar-call-btn .call-icon {
    width: 36px; height: 36px; background: var(--green); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
  }
  .sidebar-call-btn .call-text small { display: block; font-size: 11px; color: var(--text-light); font-weight: 400; }
 
  .form-success {
    display: none; text-align: center; padding: 32px 20px;
    animation: fadeUp .4s ease;
  }
  .form-success .success-icon { font-size: 52px; margin-bottom: 16px; }
  .form-success h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; color: var(--green-dark); }
  .form-success p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
 .gallery-wrapper{
  max-height: 500px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gallery-wrapper.active{
  max-height: 100%;
}

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-right { display: none; }
    .about-grid, .contact-grid, .testimonials-grid, .doctors-grid, .services-grid, .why-grid, .timings-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    /* .gallery-item:first-child { grid-column: span 1; } */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
  }
  @media (max-width: 490px) {
  .nav-logo img{
        width: 120px;
  }
  }