/***** deterrent only — hurts UX; optional *****/
html, body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea {
  -webkit-user-select: text;
  user-select: text;
}

/* Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { overflow-x: hidden; }

/* stop right-side whitespace */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar logo sizing */
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* mobile */
@media (min-width: 768px) {
  .nav-logo {
    height: 76px;
  }
}

/* md */
@media (min-width: 1024px) {
  .nav-logo {
    height: 104px;
  }
}

/* lg (desktop) */
@media (min-width: 1280px) {
  .nav-logo {
    height: 116px;
  }
}

/* xl */
@media (min-width: 1536px) {
  .nav-logo {
    height: 128px;
  }
}

/* 2xl / big screens */

/* Tighten vertical padding so the bar doesn’t look too tall on desktop */
#navbar .container {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

@media (min-width: 1024px) {
  #navbar .container {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

/* ----- Hero legacy styles (kept) ----- */
/* #home{
  margin-top: 50px;
} */
.hero-section {
  position: relative;
  min-height: 100vh;
  /* updated to match new palette (teal/slate/cyan) */
  background: linear-gradient(135deg, rgba(13,148,136,0) 0%, #0f172a 25%, #334155 50%, #0f766e 75%, #155e75 100%);
  color: white;
  overflow: hidden;
}

/* (rest unchanged from your original custom CSS) */
.hero-background { position: absolute; inset: 0; z-index: 1; }

.gradient-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(6,182,212,0.12) 0%, transparent 70%);
}

.floating-shapes { position: absolute; width: 100%; height: 100%; }

.shape { position: absolute; border-radius: 50%;
  /* floating shapes pick up the new accent colors */
  background: linear-gradient(45deg, rgba(251,191,36,0.12), rgba(6,182,212,0.12));
  animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: 1s; }
.shape-3 { width: 80px; height: 80px; top: 30%; right: 30%; animation-delay: 2s; }
.shape-4 { width: 120px; height: 120px; bottom: 20%; left: 15%; animation-delay: 3s; }
.shape-5 { width: 200px; height: 200px; top: 5%; right: 5%; animation-delay: 4s; }
.shape-6 { width: 90px; height: 90px; bottom: 40%; right: 40%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); opacity: .3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: .6; }
}

/* Utility container fix on small screens */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* Print (unchanged) */
@media print {
  .floating-shapes, .hero-background, .scroll-indicator { display: none; }
  .hero-section { background: #0f766e; color: #fff; -webkit-print-color-adjust: exact; }
}

/* Off-canvas menu – ensure no horizontal scroll while sliding */
#mobile-menu { transform: translateX(100%); will-change: transform; }
/* Visible state toggled by JS */
#mobile-menu.open {
  transform: translateX(0);
}

/* Small spinner used in JS submit demo */
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35);
  border-top-color: white; border-radius: 9999px; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.iemlogo{
  filter: brightness(0) invert(1);
}

/* whatsapp icon */

/* Floating WhatsApp Icon Enhancements */
@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.fixed.bottom-6.right-6 {
  animation: bounceIn 0.8s ease-out forwards;
}

@media (max-width: 640px) {
  .fixed.bottom-6.right-6 {
    bottom: 4rem; /* Higher on mobile to avoid overlapping footers */
    right: 1.5rem;
  }
}

.footerlogo{
  height: 10rem;
  width: 10rem
}