﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0d2461;
      --navy-light: #1a3580;
      --orange: #f26522;
      --orange-light: #ff8c42;
      --sky: #3a8fdd;
      --white: #ffffff;
      --gray-bg: #f4f7ff;
      --gray-text: #555e7a;
      --dark: #0a1a40;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--dark); background: #fff; display: flex; flex-direction: column; min-height: 100vh; }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(13,36,97,0.97);
      backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2%; height: 70px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    /* .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 1.5rem; color: var(--white);
      letter-spacing: -0.5px;
      cursor: pointer;
    }
    .nav-logo span { color: var(--orange); } */

    /* ----------------------------- */

      .nav-logo{
    display:flex;
    align-items:center;
    gap: 1px;             /* Logo aur text ke beech distance */
    text-decoration:none;
    cursor:pointer;
}

.nav-logo img{
    width:80px;           /* Logo size */
    height:80px;
    object-fit:contain;
}

.logo-text{
    font-family:'Montserrat', sans-serif;
    font-size:1.7rem;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-0.5px;
}

.logo-text .highlight{
    color:#f26522;
}

    /* ----------------------------- */
    
    .nav-container { display: flex; align-items: center; gap: 2rem; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--orange); }
    .nav-cta {
      background: var(--orange); color: #fff;
      padding: 0.55rem 1.4rem; border-radius: 6px;
      font-weight: 700; font-size: 0.85rem; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

    /* Hamburger Menu Icon */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px; height: 18px;
      background: transparent;
      border: none; cursor: pointer; z-index: 1000;
    }
    .menu-toggle span {
      width: 100%; height: 2px;
      background-color: var(--white);
      transition: all 0.3s ease-in-out;
    }

    /* ─── PAGES ─── */
    .page { padding-top: 70px; flex: 1; }

    /* ─── HOME ─── */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, #1a3a8f 100%);
      min-height: calc(100vh - 70px);
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 5rem 5%;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(242,101,34,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(58,143,221,0.12) 0%, transparent 50%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 800px; }
    .hero-badge {
      display: inline-block;
      background: rgba(242,101,34,0.15);
      border: 1px solid rgba(242,101,34,0.5);
      color: var(--orange-light); font-size: 0.8rem;
      font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      font-weight: 900; color: var(--white);
      line-height: 1.1; margin-bottom: 1rem;
    }
    .hero h1 em { color: var(--orange); font-style: normal; }
    .hero p {
      color: rgba(255,255,255,0.7); font-size: 1.15rem;
      max-width: 560px; margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--orange); color: #fff;
      padding: 0.9rem 2rem; border-radius: 8px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      transition: all 0.2s; box-shadow: 0 4px 20px rgba(242,101,34,0.4);
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.4); color: #fff;
      padding: 0.9rem 2rem; border-radius: 8px;
      font-weight: 600; font-size: 1rem; text-decoration: none;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

    /* Stats row */
    .stats-row {
      display: flex; justify-content: center; gap: 3rem;
      background: var(--white); padding: 2.5rem 5%;
      border-bottom: 3px solid var(--orange);
      flex-wrap: wrap;
    }
    .stat { text-align: center; min-width: 150px; }
    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.4rem; font-weight: 900; color: var(--navy);
    }
    .stat-num span { color: var(--orange); }
    .stat-label { font-size: 0.85rem; color: var(--gray-text); margin-top: 0.2rem; font-weight: 500; }

    /* Services section */
    .section { padding: 5rem 8%; }
    .section-tag {
      color: var(--orange); font-weight: 700; font-size: 0.8rem;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
      color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
    }
    .section-sub { color: var(--gray-text); font-size: 1rem; max-width: 820px; line-height: 1.7; }
    .section-header { margin-bottom: 3.5rem; }

    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.8rem;
    }
    .service-card {
      background: var(--gray-bg);
      border-radius: 8px; padding: 2.2rem;
      border: 1px solid rgba(13,36,97,0.08);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--orange));
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,36,97,0.15); }
    .service-icon {
      width: 60px; height: 60px; border-radius: 8px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-bottom: 1.2rem;
    }
    .service-card h3 {
      font-family: 'Montserrat', sans-serif; font-size: 1.2rem;
      font-weight: 800; color: var(--navy); margin-bottom: 0.7rem;
    }
    .service-card p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.7; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
    .tag {
      background: rgba(13,36,97,0.08); color: var(--navy);
      padding: 0.25rem 0.7rem; border-radius: 8px; font-size: 0.75rem; font-weight: 600;
    }

    /* Why us */
    .why-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
      padding: 5rem 8%; color: #fff;
    }
    .why-section .section-title { color: #fff; }
    .why-section .section-tag { color: var(--orange-light); }
    .why-section .section-sub { color: rgba(255,255,255,0.65); }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .why-item {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 1.8rem; text-align: center;
    }
    .why-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .why-item h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .why-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

    /* CTA banner */
    .cta-banner {
      background: linear-gradient(135deg, var(--orange) 0%, #d45a1a 100%);
      padding: 4rem 8%; text-align: center; color: #fff;
    }
    .cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 0.8rem; }
    .cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; }
    .btn-white {
      background: #fff; color: var(--orange);
      padding: 0.9rem 2.2rem; border-radius: 8px;
      font-weight: 800; font-size: 1rem; text-decoration: none;
      transition: transform 0.2s; display: inline-block;
    }
    .btn-white:hover { transform: translateY(-2px); }

    /* ─── ABOUT ─── */
    .about-hero {
      background: linear-gradient(135deg, var(--dark), var(--navy));
      padding: 5rem 8% 4rem; color: #fff; text-align: center;
    }
    .about-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; }
    .about-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 0.8rem; }
    .page-divider {
      height: 5px;
      background: linear-gradient(90deg, var(--navy), var(--orange), var(--sky));
    }

    .about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    /* .about-visual {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 8px; padding: 3rem; color: #fff; text-align: center;
    } */

    /* ----------- */
      .about-visual{
    background: linear-gradient(135deg,var(--navy),var(--navy-light));
    border-radius:12px;
    padding:3rem 2rem;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-logo{

    width:100%;
    max-width:320px;

    height:auto;

    object-fit:contain;

    margin-bottom:20px;

    transition:.3s;

}

.about-visual p{

    color:#fff;

    font-size:1.2rem;

    line-height:1.8;

}

.about-visual p strong{

    font-size:2rem;

    font-weight:700;

}
    /* ----------- */

    .about-visual .big-letter {
      font-family: 'Montserrat', sans-serif; font-size: 8rem; font-weight: 900;
      color: var(--orange); line-height: 1; opacity: 0.9;
    }
    .about-visual p { font-size: 1.1rem; opacity: 0.7; margin-top: 0.5rem; }
    .about-text h2 { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
    .about-text p { color: var(--gray-text); line-height: 1.8; margin-bottom: 1rem; }
    .values-list { list-style: none; margin-top: 1.5rem; }
    .values-list li {
      display: flex; align-items: flex-start; gap: 0.8rem;
      margin-bottom: 1rem; color: var(--dark);
    }
    .val-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
    .val-text strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
    .val-text span { font-size: 0.88rem; color: var(--gray-text); }

    .team-section { background: var(--gray-bg); }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
    .team-card {
      background: #fff; border-radius: 8px; padding: 2rem; text-align: center;
      border: 1px solid rgba(13,36,97,0.08); transition: transform 0.2s;
    }
    .team-card:hover { transform: translateY(-4px); }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 1rem;
    }
    .team-card h4 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--navy); }
    .team-card span { font-size: 0.82rem; color: var(--orange); font-weight: 600; }

    /* ─── PROJECTS ─── */
    .projects-hero {
      background: linear-gradient(135deg, var(--dark), var(--navy));
      padding: 5rem 8% 4rem; color: #fff; text-align: center;
    }
    .projects-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; }
    .projects-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 0.8rem; }

    .filter-bar { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
    .filter-btn {
      padding: 0.5rem 1.3rem; border-radius: 50px;
      border: 2px solid rgba(13,36,97,0.2);
      background: none; color: var(--navy); cursor: pointer;
      font-weight: 600; font-size: 0.85rem; transition: all 0.2s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--navy); color: #fff; border-color: var(--navy);
    }

    .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
    .project-card {
      background: var(--gray-bg); border-radius: 8px; overflow: hidden;
      border: 1px solid rgba(13,36,97,0.08); transition: transform 0.25s, box-shadow 0.25s;
    }
    .project-card.hidden { display: none; }
    .project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,36,97,0.12); }
    .project-thumb {
      height: 180px; display: flex; align-items: center; justify-content: center;
      font-size: 3rem; position: relative; overflow: hidden;
    }
    .project-body { padding: 1.5rem; }
    .project-cat { color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
    .project-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); margin: 0.4rem 0; }
    .project-body p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
    .project-result {
      display: flex; align-items: center; gap: 0.5rem;
      background: rgba(13,36,97,0.06); border-radius: 8px; padding: 0.6rem 0.8rem;
    }
    .result-icon { font-size: 1.1rem; }
    .result-text { font-size: 0.82rem; color: var(--navy); font-weight: 600; }

    /* ─── CONTACT ─── */
    .contact-hero {
      background: linear-gradient(135deg, var(--dark), var(--navy));
      padding: 5rem 8% 4rem; color: #fff; text-align: center;
    }
    .contact-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; }
    .contact-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 0.8rem; }

    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
    .contact-info h2 { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
    .contact-info p { color: var(--gray-text); line-height: 1.8; margin-bottom: 2rem; }
    .contact-detail {
      display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
    }
    .contact-ico {
      width: 48px; height: 48px; border-radius: 8px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-detail-text strong { display: block; color: var(--navy); font-weight: 700; }
    .contact-detail-text span { color: var(--gray-text); font-size: 0.9rem; }

    .contact-form {
      background: var(--gray-bg); border-radius: 8px; padding: 2.5rem;
      border: 1px solid rgba(13,36,97,0.08);
    }
    .contact-form h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 0.75rem 1rem; border-radius: 8px;
      border: 1.5px solid rgba(13,36,97,0.2); background: #fff;
      font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--dark);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--orange); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .btn-submit {
      width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: #fff; border: none; border-radius: 8px; cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700;
      transition: all 0.2s; letter-spacing: 0.5px;
    }
    .btn-submit:hover { background: linear-gradient(135deg, var(--orange), #d45a1a); transform: translateY(-2px); }

    /* Map placeholder */
    /* .map-placeholder {
      background: linear-gradient(135deg, var(--navy), var(--dark));
      border-radius: 8px; height: 200px; display: flex;
      align-items: center; justify-content: center; margin-top: 2rem;
      color: rgba(255,255,255,0.5); font-size: 0.9rem;
      flex-direction: column; gap: 0.5rem;
    }
    .map-pin { font-size: 2rem; } */

    .map-placeholder {
    border-radius: 8px;
    height: 280px;
    width: 100%;
    margin-top: 2rem;
    overflow: hidden; /* Rounded corners se image bahar na nikle */
}

.map-placeholder img {
    width: 95%;
    height: 95%;
    object-fit: cover; /* Image stretch hone ke bajaye container me perfectly fit ho jayegi */
    display: block;
}

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark); color: rgba(255,255,255,0.6);
      padding: 3rem 8% 1.5rem; margin-top: auto;
    }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
    .footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; }
    .footer-col h5 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.5px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.6rem; }
    .footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: 0.82rem; }
    .footer-tagline { color: var(--orange); font-size: 0.82rem; font-weight: 600; }

    /* ─── RESPONSIVE DESIGN (Tablets & Mobile) ─── */
    @media (max-width: 991px) {
      .section { padding: 4rem 5%; }
      .about-story { gap: 2rem; }
      .contact-grid { gap: 2rem; }
    }

    @media (max-width: 768px) {
      nav { padding: 0 6px 0 2%; }
      .menu-toggle { display: flex; }
      
      .nav-container {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(13, 36, 97, 0.98);
        flex-direction: column; gap: 1.5rem;
        padding: 2.5rem 2rem;
        border-bottom: 3px solid var(--orange);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        transform: translateY(-120%);
        transition: transform 0.3s ease-in-out;
        z-index: 998;
      }
      .nav-container.open { transform: translateY(0); }
      .nav-links { flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; }
      .nav-links a { font-size: 1.1rem; }
      .nav-cta { width: 100%; text-align: center; padding: 0.8rem; }

      /* Animated Hamburger state */
      .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
      .menu-toggle.open span:nth-child(2) { opacity: 0; }
      .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

      .about-story { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
    }
/* Multi-page polish */
body { overflow-x: hidden; }
main.page { width: 100%; }
.nav-logo { text-decoration: none; }
.nav-links a, .nav-cta, .btn-primary, .btn-outline, .btn-white, .btn-submit, .filter-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.nav-links a { min-height: auto; }
.section { max-width: 1280px; width: 100%; margin: 0 auto; }
.why-section .section, .cta-banner .section { max-width: none; }
.hero, .about-hero, .projects-hero, .contact-hero { isolation: isolate; }
.about-hero, .projects-hero, .contact-hero { position: relative; overflow: hidden; }
.hero::after, .about-hero::after, .projects-hero::after, .contact-hero::after {
  content: '';
  position: absolute;
  inset: auto 8% -80px auto;
  width: min(340px, 45vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotate(18deg);
  opacity: 0.45;
  pointer-events: none;
}
.service-card, .project-card, .team-card, .why-item, .contact-form { box-shadow: 0 10px 28px rgba(13,36,97,0.06); }
.service-card, .project-card, .team-card { height: 100%; }
.project-thumb { color: #fff; text-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.contact-detail-text span { overflow-wrap: anywhere; }
.footer-brand .nav-logo { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(242,101,34,0.45); outline-offset: 3px; }

@media (max-width: 991px) {
  .hero { min-height: auto; padding-top: 6rem; padding-bottom: 6rem; }
  .stats-row { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-logo { font-size: 1.25rem; }
  .hero { text-align: left; align-items: flex-start; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: 0; margin-right: 0; }
  .hero-btns { justify-content: flex-start; }
  .hero-btns a, .btn-white { width: 100%; }
  .stats-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 2rem 5%; }
  .stat { min-width: 0; }
  .stat-num { font-size: 2rem; }
  .services-grid, .projects-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
  .about-hero h1, .projects-hero h1, .contact-hero h1 { font-size: 2.25rem; }
  .contact-form { padding: 1.5rem; }
  .filter-bar { justify-content: flex-start; }
  .filter-btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .section { padding: 3rem 1rem; }
  nav { height: 64px; }
  .nav-container { top: 64px; }
  .page { padding-top: 64px; }
  .hero-badge { letter-spacing: 1px; }
  .stats-row { grid-template-columns: 1fr; }
  .service-card, .project-body, .team-card, .why-item { padding: 1.25rem; }
  .footer-bottom { align-items: flex-start; }
}

/* ----------------- */

  @media(max-width:768px){

    .nav-logo img{
        width:80px;
        height:80px;
    }

    .logo-text{
        font-size:1.35rem;
    }

}

@media(max-width:768px){

    .about-logo{

        max-width:220px;

    }

    .about-visual{

        padding:2rem 1rem;

    }

    .about-visual p strong{

        font-size:1.5rem;

    }

    .about-visual p{

        font-size:1rem;

    }

}

/* ----------------- */

#result{

margin-top:20px;

font-weight:600;

}
