/* Footer Styles */
.site-footer {
    background-color: #1f2d3d; /* slightly darker than header */
    padding: 3rem 1.5rem;
    color: #ecf0f1;
    font-family: 'Roboto', sans-serif;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand span {
    color: #1abc9c; /* accent color */
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links li a,
.footer-contact li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: #1abc9c;
}

/* Social Icons */
.footer-social {
    gap: 0.5rem;
}

.footer-social a.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #34495e;
    color: #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a.social-btn:hover {
    background-color: #1abc9c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Bottom Links */
.footer-bottom a.tech-link {
    color: yellow;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a.tech-link:hover {
    text-decoration: underline;
}

/* Footer bottom spacing */
.footer-bottom div {
    margin: 0.2rem 0;
}

/* Responsive */
@media (max-width: 991px) {
    .site-footer .row {
        text-align: center;
    }

    .footer-contact li,
    .footer-links li {
        text-align: center;
    }

    .footer-social {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 991px) {
    /* Make sure columns stack vertically and are centered */
    .site-footer .row > div {
        width: 100% !important;       /* Full width for each column */
        max-width: none !important;   /* Remove any max width */
        text-align: center !important; /* Center content */
        margin-bottom: 2rem;          /* Spacing between columns */
        display: block !important;    /* Force block */
    }

    /* Center text and list items */
    .footer-contact li,
    .footer-links li {
        text-align: center !important;
    }

    /* Social icons centered */
    .footer-social {
        justify-content: center !important;
        margin-top: 1rem;
    }

    /* Footer bottom text center */
    .footer-bottom {
        text-align: center !important;
        margin-top: 2rem;
    }
}

html, body {
  min-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc; /* or your page bg */
}
.site-footer {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem; /* Ensure vertical padding */
  box-sizing: border-box;
  background-color: #1f2d3d;
}


@media (max-width: 991px) {
  .site-footer .row > div {
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
    margin-bottom: 2rem;
    display: block !important;
  }

  .footer-contact li,
  .footer-links li {
    text-align: center !important;
  }

  .footer-social {
    justify-content: center !important;
    margin-top: 1rem;
  }

  .footer-bottom {
    text-align: center !important;
    margin-top: 2rem;
  }
}

.footer-brand {
    margin-bottom: 1px !important; /* ✅ ABSOLUTELY ZERO GAP UNDER LOGO */
    display: block;
}

/* ✅ LOGO ABHI 90PX. PEHLE 50 HOTI. */
.footer-brand img {
    height: 120px !important;
    width: auto !important;
}

