
 footer {
  background: radial-gradient(circle at top left, #020b149f, #01060b8a);
  color: #e0e0e0;
  backdrop-filter: blur(12px);
  padding: 60px 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== COMPANY INFO ===== */
.footer-logo {
  flex: 1 1 250px;
}
.footer-logo img {
  width: 75px;
  height: 75px;
  
}
.footer-logo h2 {
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 1px;
  color: rgb(0, 103, 167);
}
.footer-logo p {
  font-size: 15px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ===== SECTION TITLES ===== */
.footer-links h3,
.footer-services h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: rgb(0, 103, 167);
}

/* ===== QUICK LINKS ===== */
.footer-links {
  flex: 1 1 180px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 10px 0;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: rgb(0, 103, 167);
  text-shadow: 0 0 8px rgba(0,186,255,0.5);
}

/* ===== SERVICES ===== */
.footer-services {
  flex: 1 1 180px;
}
.footer-services ul {
  list-style: none;
  padding: 0;
}
.footer-services li {
  margin: 10px 0;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.footer-services li:hover {
  color: #006da4ff;
  text-shadow: 0 0 8px rgba(0,186,255,0.5);
}

/* ===== SOCIAL LINKS ===== */
.footer-social {
  flex: 1 1 280px;
}
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: rgb(0, 103, 167);
  transition: 0.3s;
}
.social-link:hover {
  color: #006da4ff;
  transform: translateX(6px);
}
.social-link:hover svg {
  fill: #006da4ff;
  filter: drop-shadow(0 0 8px rgba(0,186,255,0.7));
}

/* ===== COPYRIGHT ===== */
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
/* ===================== TABLET (769px – 1024px) ===================== */
@media (max-width: 1024px) {

  footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 6%;
    gap: 30px 40px;
    text-align: left;
  }

  .footer-logo,
  .footer-links,
  .footer-services,
  .footer-social {
    width: 100%;
     font-size: 22px;
  }

  /* Row arrangement */
  .footer-logo { order: 1; }
  .footer-links { order: 2; }
  .footer-services { order: 3; }
  .footer-social { order: 4; }
   .footer-links h3,
.footer-services h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 30px;
  color: rgb(0, 103, 167);
}

  .footer-bottom {
    grid-column: span 2;
    margin-top: 20px;
    order: 99;
  }
  .footer-logo h2 {
    font-size: 34px;
  }
}


/* ===================== MOBILE (0 – 768px) ===================== */
@media (max-width: 768px) {

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 25px;
    gap: 35px;
    text-align: center;
  }

  .footer-logo {
    order: 1;
  }

  /* Logo big on mobile */
  .footer-logo img {
    width: 100px;
    height: 100px;
  }

  .footer-logo h2 {
    font-size: 32px;
  }

  /* All other content right aligned except logo */
  .footer-links,
  .footer-services,
  .footer-social {
    text-align: left;
    width: 100%;
    font-size: 22px;
  }
  .footer-links h3,
.footer-services h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 30px;
  color: rgb(0, 103, 167);
}
  .footer-links { order: 2; }
  .footer-services { order: 3; }
  .footer-social { order: 4; }

  .footer-bottom {
    order: 5;
    text-align: center;
    margin-top: 10px;
  }
}
