/* ===== Global Reset ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  font-weight: 500;
  color: #fff !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f39c12 !important;
}

/* ===== Flashy Hero Section ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;

  /* Background image (replace with steel/solar/paint/etc.) */
  background: url('your-background-image.jpg') center/cover no-repeat;
}

/* Gradient overlay with animation */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  background-size: 300% 300%;
  animation: gradientMove 10s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Floating animated icons */
.floating-icons i {
  position: absolute;
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
  animation: float 6s ease-in-out infinite, spin 18s linear infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Hero Text Gradient */
.text-gradient {
  background: linear-gradient(90deg, #12d9f3, #788dff, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== Buttons ===== */
.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #0059ffa1, #3b3b3b);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #000000, #646464);
  transform: translateY(-2px);
}

/* ===== Cards (Glassmorphism) ===== */
.card {
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.card-body p {
  color: #ddd;
}

/* ===== Sections ===== */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.bg-dark .section-title {
  color: #fff;
}

/* ===== Footer Base ===== */
.footer-section {
  background: rgba(40, 30, 60, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logos */
.footer-logo {
  width: 80px;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-logo-sm {
  width: 50px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-logo:hover,
.footer-logo-sm:hover {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* Links */
.footer-link {
  color: #b4b4b4;
  text-decoration: none;
}

.footer-link:hover {
  color: #1100ff;
  text-decoration: underline;
}

/* Text */
.footer-section h5,
.footer-section h6 {
  color: #fff;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .footer-section .d-flex {
    justify-content: center !important;
  }
}



/* ...existing CSS above... */

.gallery-modal-img {
  transition: transform 0.3s;
  cursor: zoom-in;
}
.gallery-modal-img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(19,62,124,0.21);
}

/* ...existing CSS below... */