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

    /* ================= ROOT / BRAND COLOR ================= */
    :root {
      --brand-color: #AFBC88;; /* Neon Green – aap apna color change kar sakte hain */
    }

    /* ================= FOOTER BASE ================= */
    .modern-footer {
      background: #0f172a;
      color: #cbd5e1;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      animation: footerFadeUp 0.9s ease-out forwards;
      opacity: 0;
    }

    @keyframes footerFadeUp {
      from {
        opacity: 0;
        transform: translateY(35px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ================= TOP SECTION ================= */
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding: 50px 8%;
      align-items: start;
    }

    /* ================= COMMON COLUMN ================= */
    .footer-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .footer-col:hover {
      transform: translateY(-6px);
      opacity: 0.95;
    }

    .footer-col h3 {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 14px;
      position: relative;
      font-weight: 600;
    }

    .footer-col h3::after {
      content: "";
      width: 30px;
      height: 2px;
      background: var(--brand-color);
      display: block;
      margin: 6px auto 0;
      border-radius: 2px;
    }

    .footer-col p,
    .footer-col a {
      font-size: 14px;
      color: #cbd5e1;
      text-decoration: none;
      line-height: 1.6;
      position: relative;
    }

    /* ================= LINKS ================= */
    .footer-col ul {
      list-style: none;
    }

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

    .footer-col a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      background: var(--brand-color);
      transition: width 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--brand-color);
    }

    .footer-col a:hover::after {
      width: 100%;
    }

    /* ================= SOCIAL ================= */
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 10px;
    }

    .social-icons a {
      color: #cbd5e1;
      font-size: 20px;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      color: var(--brand-color);
      transform: scale(1.2);
    }

    /* ================= MAP ================= */
    .map-col iframe {
      width: 100%;
      height: 200px;
      border-radius: 14px;
      border: none;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .map-col iframe:hover {
      transform: scale(1.02);
      box-shadow: 0 12px 30px rgba(74, 140, 226, 0.25);
    }

    /* ================= BOTTOM ================= */
    .footer-bottom {
      background: #020617;
      text-align: center;
      padding: 14px;
      font-size: 13px;
      color: #94a3b8;
      border-top: 1px solid #1e293b;
    }

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

      .map-col {
        grid-column: 1;
      }

      .map-col iframe {
        height: 160px;
      }

      .footer-col h3 {
        font-size: 16px;
      }

      .footer-col p,
      .footer-col a {
        font-size: 13px;
      }

      .social-icons a {
        font-size: 22px;
      }

      .footer-bottom {
        font-size: 12px;
        padding: 12px;
      }
    }