/* ERSS / Dial 112 Telangana - standalone static website */

/* ===== theme.css ===== */
/* 
 * Shared Theme Variables and Base Styles
 * Use this file to maintain consistency across all pages
 */

:root {
  /* Color Palette */
  --primary-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --primary-dark: #0f2027;
  --primary-mid: #203a43;
  --primary-light: #2c5364;
  
  /* Accent Colors */
  --accent-gold: #ffd700;
  --accent-blue: #60a5fa;
  --accent-purple: #667eea;
  --accent-pink: #f093fb;
  --accent-red: #f5576c;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Typography — font is set globally in index.css */
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Page Container */
.page-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--primary-gradient);
  overflow: hidden;
}

/* Shared Background Elements */
.page-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.page-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.page-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.page-gradient-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #764ba2 100%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.page-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-red) 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.page-gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, #764ba2 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Content Wrapper */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  padding: 40px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Typography */
.page-title {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  color: var(--accent-gold);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  color: var(--text-primary);
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-content {
    padding: 40px 20px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .glass-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-content {
    padding: 30px 15px;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;
  }
  
  .glass-card {
    padding: 25px 15px;
  }
}

/* ===== Navbar.css ===== */
/* Added modern dark theme matching Hero page */

.header-container {
  width: 100%;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.6s ease-out;
  overflow: visible;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

body {
  margin: 0;
}

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(90deg, #1e3a5f 0%, #2d4a6f 50%, #1e3a5f 100%);
  color: #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 8px 24px;
  font-size: 13px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  animation: fadeIn 0.8s ease-out 0.2s backwards;
  overflow: visible;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.contact-info-gmail {
  font-weight: 600;
  display: flex;
  align-items: left;
  gap: 8px;
  color: #cbd5e1;
}

.contact-icon-gmail {
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.3));
}

.contact-icon-img-gmail {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.3));
}

.divider {
  color: rgba(226, 232, 240, 0.3);
  margin: 0 4px;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icons .icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #38bdf8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icons .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icons .icon:hover::before {
  opacity: 1;
}

.social-icons .icon:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: #38bdf8;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.2);
}

.social-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  /* filter: brightness(0) invert(1);
  transition: filter 0.3s ease; */
}

.social-icons .icon:hover .social-icon-img {
    filter: brightness(1) invert(0);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.download-btn {
  background: linear-gradient(135deg, #fb8282 0%, #e75c5c 100%);
  color: white;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.download-btn:hover::before {
  transform: translateX(0);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.playstore-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  animation: pulse 2s ease-in-out infinite;
}

.android-icon {
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.app-download {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Branding Section Styles */
.branding-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  position: relative;
  animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.branding-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.brand-left,
.brand-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  z-index: 1;
}

.brand-right {
  justify-content: flex-end;
}

.brand-center {
  flex: 0 0 auto;
  margin: 0 32px;
  position: relative;
  height: 100px;
  width: 100px;
  /* z-index: 1; */
}

.logo {
  height: 90px;
  object-fit:cover;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.3));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
}

.logo:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 30px rgba(56, 189, 248, 0.5));
}

.center-logo {
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  width: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 30px rgba(239, 68, 68, 0.6));
  animation: emergencyGlow 2s ease-in-out infinite;
  border-radius: 50%;
  z-index: 1000;
}

@keyframes emergencyGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(239, 68, 68, 0.6));
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(239, 68, 68, 0.9));
  }
}

.emergency-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(239, 68, 68, 0.5);
  border-radius: 50%;
  animation: emergencyPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes emergencyPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.3));
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation Menu Styles */
.main-nav {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeIn 0.8s ease-out 0.6s backwards;
  overflow: visible;
}

.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #38bdf8 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color:#bbe7f5;
}

.nav-link {
  display: block;
  padding: 14px 18px;
  color: #b85656;
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 100%);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(118, 207, 245, 0.258);
}

.nav-link:hover {
  color: #ff0000;
  background: rgba(56, 189, 248, 0.1);
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: #072d5e;;
  background: rgba(36, 47, 251, 0.1);
  text-shadow: 0 0 20px rgba(251, 36, 115, 0.5);
}

.nav-link.active::before {
  width: 80%;
  background:#0a045f;
  box-shadow: 0 0 10px rgba(36, 143, 251, 0.5);
}

/* Hamburger Button Styles */
.hamburger-btn {
  display: none;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  margin: 10px auto;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 100%);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-line.open:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-line.open:nth-child(2) {
  opacity: 0;
}

.hamburger-line.open:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Styles */
.dropdown-container {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-container:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  min-width: 280px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 14px 24px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  text-shadow: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #38bdf8 0%, #60a5fa 100%);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-item:hover::before {
  transform: scaleY(1);
}

.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding-left: 28px;
}

.dropdown-item.highlighted {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
  color: #fca5a5;
  border-left: 3px solid #ef4444;
}

.dropdown-item.highlighted:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.3) 100%);
  color: #fecaca;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Mobile Sidebar Styles */
.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-sidebar-overlay.open {
  opacity: 1;
}

.mobile-sidebar {
  display: none;
  position: fixed;
  top: 80px;
  left: -320px;
  width: 320px;
  height: calc(100vh - 80px);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 9999;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(56, 189, 248, 0.2);
}

.mobile-sidebar.open {
  left: 0;
}

.mobile-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  animation: fadeIn 0.6s ease-out 0.2s backwards;
}

.mobile-nav-item {
  margin: 0;
  animation: slideInLeft 0.4s ease-out backwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav-item:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #38bdf8 0%, #60a5fa 100%);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.1) 0%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link:active::after,
.mobile-nav-link:focus::after {
  transform: translateX(0);
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before,
.mobile-nav-link:focus::before,
.mobile-nav-link.active::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link:focus,
.mobile-nav-link.active {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding-left: 32px;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
  transform: translateX(4px);
}

/* Touch feedback for mobile */
.mobile-nav-link:active {
  background: rgba(56, 189, 248, 0.2);
  transform: translateX(6px) scale(0.98);
}

.mobile-dropdown-container {
  position: relative;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-trigger:active {
  background: rgba(56, 189, 248, 0.15);
  transform: translateX(2px) scale(0.98);
}

.mobile-dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.3));
}

.mobile-dropdown-container.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-container:hover .mobile-dropdown-arrow,
.mobile-dropdown-container:active .mobile-dropdown-arrow,
.mobile-dropdown-container:focus .mobile-dropdown-arrow {
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.5));
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid rgba(56, 189, 248, 0.2);
}

.mobile-dropdown-container.open .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 24px 12px 48px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #38bdf8 0%, #60a5fa 100%);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.mobile-dropdown-item:hover::before,
.mobile-dropdown-item:active::before,
.mobile-dropdown-item:focus::before {
  transform: scaleY(1);
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active,
.mobile-dropdown-item:focus {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding-left: 52px;
  transform: translateX(2px);
}

.mobile-dropdown-item:active {
  background: rgba(56, 189, 248, 0.15);
  transform: translateX(4px) scale(0.98);
}

.mobile-dropdown-item.highlighted {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
  color: #fca5a5;
  border-left: 3px solid #ef4444;
  animation: pulse 2s ease-in-out infinite;
}

.mobile-dropdown-item.highlighted:hover,
.mobile-dropdown-item.highlighted:active,
.mobile-dropdown-item.highlighted:focus {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.3) 100%);
  color: #fecaca;
}

.mobile-dropdown-item.highlighted:active {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(220, 38, 38, 0.4) 100%);
  transform: translateX(4px) scale(0.98);
}

.mobile-sidebar-accessibility {
  padding: 20px 24px;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  margin-top: auto;
  animation: fadeIn 0.8s ease-out 0.8s backwards;
  background: rgba(15, 23, 42, 0.5);
}

.mobile-accessibility-title {
  color: #38bdf8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.3));
  animation: shimmer 3s ease-in-out infinite;
}

/* Mobile Top Header */
.mobile-top-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 0.6s ease-out;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.mobile-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.mobile-logo-wrapper:hover,
.mobile-logo-wrapper:active,
.mobile-logo-wrapper:focus {
  transform: scale(1.05) rotate(2deg);
}

.mobile-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  animation: emergencyPulse 2s ease-out infinite;
  pointer-events: none;
}

.mobile-header-logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 30px rgba(239, 68, 68, 0.6));
  animation: emergencyGlow 2s ease-in-out infinite;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.mobile-logo-wrapper:hover .mobile-header-logo,
.mobile-logo-wrapper:active .mobile-header-logo,
.mobile-logo-wrapper:focus .mobile-header-logo {
  filter: drop-shadow(0 8px 30px rgba(239, 68, 68, 0.8));
}

.mobile-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: fadeIn 0.8s ease-out 0.4s backwards;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-header-text:hover,
.mobile-header-text:active,
.mobile-header-text:focus {
  transform: translateX(2px);
}

.mobile-header-title {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.3));
  transition: all 0.3s ease;
}

.mobile-header-text:hover .mobile-header-title,
.mobile-header-text:active .mobile-header-title,
.mobile-header-text:focus .mobile-header-title {
  filter: drop-shadow(0 4px 15px rgba(56, 189, 248, 0.5));
}

.mobile-header-subtitle {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin: 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-header-text:hover .mobile-header-subtitle,
.mobile-header-text:active .mobile-header-subtitle,
.mobile-header-text:focus .mobile-header-subtitle {
  color: #cbd5e1;
}

.floating-hamburger {
  display: none;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  animation: fadeIn 0.8s ease-out 0.6s backwards;
  position: relative;
  overflow: hidden;
}

.floating-hamburger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-hamburger:hover::before {
  opacity: 1;
}

.floating-hamburger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 30px rgba(56, 189, 248, 0.6);
}

.floating-hamburger:active {
  transform: translateY(0) scale(0.98);
}

.floating-hamburger-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.floating-hamburger.open .floating-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.floating-hamburger.open .floating-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.floating-hamburger.open .floating-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 968px) {
  .top-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6px 16px;
    font-size: 12px;
  }

  .contact-info-gmail {
    justify-content: center;
    margin-bottom: 8px;
  }

  .top-bar-right {
    justify-content: center;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons .icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .download-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .branding-section {
    padding: 8px 20px;
    gap: 15px;
  }

  .brand-left,
  .brand-right {
    gap: 15px;
  }

  .logo {
    height: 70px;
  }

  .center-logo {
    width: 80px;
    height: 80px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .branding-section {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hamburger-btn {
    display: none;
  }

  .mobile-top-header {
    display: flex;
  }

  .floating-hamburger {
    display: flex;
  }

  .mobile-sidebar-overlay {
    display: block;
  }

  .mobile-sidebar {
    display: block;
  }

  /* Hide original navigation elements on mobile */
  .nav-list {
    display: none !important;
  }

  /* Add top padding to main content to account for fixed header */
  .main-content {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .mobile-top-header {
    height: 70px;
    padding: 0 15px;
  }

  .mobile-header-logo {
    height: 45px;
    width: 45px;
  }

  .mobile-logo-pulse {
    width: 45px;
    height: 45px;
  }

  .mobile-header-title {
    font-size: 11px;
  }

  .mobile-header-subtitle {
    font-size: 9px;
  }

  .floating-hamburger {
    width: 40px;
    height: 40px;
  }

  .floating-hamburger-line {
    width: 18px;
    height: 2px;
  }

  .mobile-sidebar {
    top: 70px;
    height: calc(100vh - 70px);
    width: 280px;
  }

  .mobile-nav-link {
    padding: 14px 20px;
    font-size: 13px;
  }

  .main-content {
    padding-top: 70px;
  }
}

@media (max-width: 360px) {
  .mobile-top-header {
    height: 65px;
    padding: 0 12px;
  }

  .mobile-header-logo {
    height: 40px;
    width: 40px;
  }

  .mobile-logo-pulse {
    width: 40px;
    height: 40px;
  }

  .mobile-header-title {
    font-size: 10px;
  }

  .mobile-header-subtitle {
    font-size: 8px;
  }

  .floating-hamburger {
    width: 36px;
    height: 36px;
  }

  .floating-hamburger-line {
    width: 16px;
    height: 2px;
  }

  .mobile-sidebar {
    top: 65px;
    height: calc(100vh - 65px);
    width: 260px;
  }

  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 12px;
  }

  .main-content {
    padding-top: 65px;
  }
}

/* ===== AccessibilityControls.css ===== */
.accessibility-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px 10px;
  background-color: rgba(37, 52, 163, 0.1);
  border-radius: 4px;
  z-index: 99999;
  position: relative;
}

/* Font Size Controls */
.font-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.font-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  transition: all 0.3s ease;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.font-btn:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.font-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.font-btn.decrease {
  font-size: 12px;
}

.font-btn.normal {
  font-size: 14px;
}

.font-btn.increase {
  font-size: 16px;
}

/* Language Selector */
.language-selector {
  position: relative;
  z-index: 999999;
  display: none;
}

.language-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 99999;
  position: relative;
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* CLOSED BY DEFAULT */
.language-dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;

  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);

  min-width: 220px;
  margin-top: 8px;
  z-index: 2147483647 !important;
  overflow: hidden;
  backdrop-filter: blur(20px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

/* OPEN ONLY WHEN THE SELECTOR HAS .open */
.language-selector.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  z-index: 99999;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.language-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #38bdf8 0%, #60a5fa 100%);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-option:hover::before {
  transform: scaleY(1);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding-left: 22px;
}

.language-option.active {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  color: white;
  padding-left: 22px;
}

.language-option.active::before {
  transform: scaleY(1);
  background: white;
}

.language-option.active:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
}

.lang-english {
  display: block;
  font-weight: 600;
  color: inherit;
  font-size: 14px;
}

.lang-native {
  display: block;
  font-size: 16px;
  margin-top: 4px;
  color: #94a3b8;
  font-weight: 500;
}

.language-option.active .lang-native {
  color: rgba(255, 255, 255, 0.9);
}

.language-option:hover .lang-native {
  color: rgba(56, 189, 248, 0.8);
}

/* Keep the dropdown above surrounding header elements */
.accessibility-controls,
.top-bar,
.header-container,
.main-nav {
  overflow: visible !important;
}

@media (max-width: 768px) {
  .accessibility-controls {
    gap: 10px;
    padding: 3px 6px;
  }

  .font-btn {
    padding: 3px 6px;
    font-size: 12px;
    min-width: 25px;
    height: 25px;
  }

  .font-btn.decrease {
    font-size: 10px;
  }

  .font-btn.normal {
    font-size: 12px;
  }

  .font-btn.increase {
    font-size: 14px;
  }

  .language-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

  .language-dropdown {
    min-width: 150px;
    right: -20px !important;
  }

  .language-option {
    padding: 10px 12px;
  }

  .lang-native {
    font-size: 14px;
  }
}

/* ===== MarqueeBanner.css ===== */
/* Marquee Banner Styles */
.marquee-banner {
  width: 100%;
  background: linear-gradient(135deg, #dc9f26 0%, #ef9144 50%, #dc7e26 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.marquee-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 25%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 75%, 
    transparent 100%
  );
  animation: shimmerEffect 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerEffect {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.marquee-content {
  height: 25px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.marquee-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 55s linear infinite;
  gap: 80px;
  will-change: transform;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-item {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  position: relative;
  letter-spacing: 0.5px;
}

.marquee-item::after {
  content: "•";
  color: #fbbf24;
  font-size: 20px;
  margin-left: 40px;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.marquee-item:last-child::after {
  display: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Emergency glow effect */
.marquee-banner {
  animation: emergencyGlow 2s ease-in-out infinite;
}

@keyframes emergencyGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(220, 38, 38, 0.2);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .marquee-content {
    height: 50px;
  }
  
  .marquee-item {
    font-size: 15px;
    padding: 0 18px;
  }
  
  .marquee-item::after {
    margin-left: 35px;
    font-size: 19px;
  }
  
  .marquee-text {
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .marquee-content {
    height: 45px;
  }
  
  .marquee-item {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .marquee-item::after {
    margin-left: 30px;
    font-size: 18px;
  }
  
  .marquee-text {
    gap: 60px;
  }
}

@media (max-width: 640px) {
  .marquee-content {
    height: 42px;
  }
  
  .marquee-item {
    font-size: 13px;
    padding: 0 12px;
  }
  
  .marquee-item::after {
    margin-left: 25px;
    font-size: 17px;
  }
  
  .marquee-text {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .marquee-content {
    height: 40px;
  }
  
  .marquee-item {
    font-size: 13px;
    padding: 0 10px;
  }
  
  .marquee-item::after {
    margin-left: 20px;
    font-size: 16px;
  }
  
  .marquee-text {
    gap: 40px;
  }
}

@media (max-width: 360px) {
  .marquee-content {
    height: 38px;
  }
  
  .marquee-item {
    font-size: 12px;
    padding: 0 8px;
  }
  
  .marquee-item::after {
    margin-left: 16px;
    font-size: 15px;
  }
  
  .marquee-text {
    gap: 32px;
  }
}

/* Pause animation on hover */
.marquee-banner:hover .marquee-text {
  animation-play-state: paused;
}

/* Add subtle gradient overlay for better text readability */
.marquee-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(220, 38, 38, 1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.marquee-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(270deg, rgba(220, 38, 38, 1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ===== Hero.css ===== */
/* Modern theme with gradient backgrounds and glassmorphism */
.hero-container {
  position: relative;
  display: flex;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  padding: 40px 60px;
  width: 100%;
  margin: 0 auto;
  gap: 60px;
  min-height: 90vh;
  box-sizing: border-box;
  overflow: hidden;
}

/* Animated background elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero-gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-gradient-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 2s;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Updated left column layout for logo and leadership */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 2px;
  z-index: 1;
  position: relative;
  gap: 5vh;
}

/* Enhanced logo section with glassmorphism */
.hero-top-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  width: 100%;
}

.hero-logo-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.hero-map,
.hero-police-logo {
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* New Dial 112 logo section styling */
.hero-dial-logo-section {
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin-bottom: 20px; */
}

.hero-dial-logo-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 3px solid rgb(149, 71, 71);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 12px 48px rgba(255, 0, 0, 0.3), 0 0 60px rgba(255, 0, 0, 0.2);
  transition: all 0.4s ease;
  animation: pulseGlow 3s in-out infinite;
}

.hero-dial-logo-wrapper:hover {
  box-shadow: 0 16px 64px rgba(255, 0, 0, 0.3), 0 0 80px rgba(255, 0, 0, 0.2);
  transform: translateY(-5px);
}

.hero-dial-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 16px 64px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.4);
  }
}

/* Enhanced text styling with gradients */
.hero-text-content {
  margin: 0;
  width: 100%;
  text-align:center;
  padding: 20px 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: #ffd700;
  font-size: 1.8rem;
  padding-top: 0;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.subtitle-text {
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
}

.subtitle-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  min-width: 100px;
}

.hero-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 20px 0 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.title-highlight {
  /* background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%); */
  background: #ffd700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

.title-welcome {
  color: #f7f6f4;
  font-size: 1.6rem;
}

.title-mission {
  color: #ff6b6b;
  font-size: 1.9rem;
  font-weight: bold;
  text-transform: uppercase;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.title-mission::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b 0%, #f5576c 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.subtitle-mission {
  color: #fbfbfb;
  font-size: 1.5rem;
  font-weight: 500;
}

.title-erss {
  /* background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%); */
  background-color: #ffd700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.7rem;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.8));
  }
}

.hero-section-title {
  color: #ff6b6b;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
  letter-spacing: 2px;
}

.section-title-decorator {
  color: #ffd700;
  font-size: 0.8rem;
}

/* Leadership section container */
.hero-leadership-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Enhanced leadership cards with glassmorphism and 3D effects */
.hero-leadership {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  width: 100%;
  margin-top: 20px;
}

.leader-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
  cursor: pointer;
}

.leader-card {
  background: rgba(73, 249, 229, 0.244);
  backdrop-filter: blur(15px);
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
  border-radius: 24px;
  padding: 20px 20px;
  box-shadow: 0 8px 32px rgba(66, 59, 59, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(28, 28, 137, 0.404), transparent);
  transition: left 0.5s ease;
}

.leader-profile:hover .leader-card::before {
  left: 100%;
}

.leader-profile:hover .leader-card {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.leader-img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-img-wrapper-dgp {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-img-wrapper-dgp img {
  width: 200px;
  height: 200px;
  object-fit:fill;
  object-position: 0px;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
  display: block;
}

.leader-img-wrapper-director {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-img-wrapper-director img {
  width: 200px;
  height: 200px;
  object-fit:cover;
  object-position: center 35%;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
  display: block;
}

.leader-img-wrapper img {
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  object-fit: fill;
  object-position: 0px;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
  display: block;
}

.leader-img-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  z-index: -1;
}



.leader-name {
  color: #ffffff;
  font-weight: 700;
  margin: 20px 0 10px;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.leader-title {
  color: #ffd700;
  font-size: 0.8rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

/* Updated right column for building image and text */
.hero-right {
  flex: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 75px;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 70vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.hero-image-frame:hover {

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Added decorative corner accents */
.image-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #ffd700;
  z-index: 10;
}

.image-corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.image-corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.image-corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.image-corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.hero-overlay-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.hero-overlay-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Enhanced responsive design for new layout */
@media (max-width: 1200px) {
  .hero-container {
    padding: 25px 40px;
    gap: 50px;
  }

  .hero-dial-logo {
    width: 240px;
    height: 240px;
  }

  .hero-image-frame {
    height: 60vh;
  }

  .hero-services-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 600px;
  }

  .service-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .service-name {
    font-size: 0.65rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    padding: 30px;
    gap: 40px;
    min-height: auto;
  }

  .hero-dial-logo {
    width: 220px;
    height: 220px;
  }

  .hero-right {
    min-height: auto;
  }

  .hero-image-frame {
    height: 300px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-leadership {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .leader-profile {
    max-width: 180px;
  }


  .leader-name {
    font-size: 0.9rem;
  }

  .leader-title {
    font-size: 0.75rem;
  }

 

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .service-name {
    font-size: 0.65rem;
  }

  .title-mission {
    font-size: 1.6rem;
  }

  .subtitle-mission {
    font-size: 1.3rem;
  }

  .title-highlight {
    font-size: 1.7rem;
  }

  .title-welcome {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 25px 20px;
    gap: 30px;
  }

  .hero-dial-logo {
    width: 200px;
    height: 200px;
  }

  .hero-leadership {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  .leader-profile {
    max-width: 160px;
  }


  .leader-card {
    padding: 15px 10px;
  }

  .leader-name {
    font-size: 0.85rem;
    margin: 15px 0 8px;
  }

  .leader-title {
    font-size: 0.7rem;
  }

 
  .service-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .service-name {
    font-size: 0.6rem;
  }

  .hero-image-frame {
    height: 280px;
  }

  .title-mission {
    font-size: 1.4rem;
  }

  .subtitle-mission {
    font-size: 1.2rem;
  }

  .title-highlight {
    font-size: 1.5rem;
  }

  .title-welcome {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-container {
    padding: 22px 18px;
    gap: 28px;
  }

  .hero-dial-logo {
    width: 190px;
    height: 190px;
  }

  .hero-image-frame {
    height: 260px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .title-welcome {
    font-size: 1.2rem;
  }

  .hero-leadership {
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
  }

  .leader-profile {
    max-width: 145px;
  }

  .leader-card {
    padding: 14px 9px;
  }

 
  .leader-name {
    font-size: 0.82rem;
    margin: 14px 0 7px;
  }

  .leader-title {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 300px;
  }

  .service-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .service-name {
    font-size: 0.58rem;
    max-width: 75px;
  }

  .title-mission {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .title-mission::after {
    width: 220px;
  }

  .subtitle-mission {
    font-size: 1.15rem;
  }

  .title-highlight {
    font-size: 1.4rem;
  }

  .title-welcome {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .hero-section-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .hero-text-content {
    padding: 16px 22px 22px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 20px 15px;
    gap: 25px;
  }

  .hero-dial-logo {
    width: 180px;
    height: 180px;
  }

  .hero-image-frame {
    height: 250px;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .title-welcome {
    font-size: 1.1rem;
  }

  .hero-leadership {
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
  }

  .leader-profile {
    max-width: 140px;
  }

  .leader-card {
    padding: 15px 8px;
  }



  .leader-name {
    font-size: 0.8rem;
    margin: 12px 0 6px;
  }

  .leader-title {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 280px;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .service-name {
    font-size: 0.55rem;
    max-width: 70px;
  }

  .title-mission {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .title-mission::after {
    width: 200px;
  }

  .subtitle-mission {
    font-size: 1.1rem;
  }

  .title-highlight {
    font-size: 1.3rem;
  }

  .title-welcome {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .hero-section-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .hero-text-content {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 360px) {
  .hero-container {
    padding: 15px 10px;
    gap: 20px;
  }

  .hero-dial-logo {
    width: 160px;
    height: 160px;
  }

  .hero-leadership {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .leader-profile {
    max-width: 200px;
  }



  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 240px;
  }

  .service-icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .service-name {
    font-size: 0.5rem;
    max-width: 60px;
  }

  .title-mission {
    font-size: 1.1rem;
  }

  .title-mission::after {
    width: 150px;
  }

  .subtitle-mission {
    font-size: 1rem;
  }

  .title-highlight {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .hero-section-title {
    font-size: 1.2rem;
  }
}
.hero-services-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 650px;
}

.service-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.3);
  transform: scale(1.1);
}

.service-icon {
  width: calc(103% - 0px);
  height: calc(103% - 0px);
  object-fit: cover;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.service-icon-wrapper:hover .service-icon {
  transform: scale(1.05);
}

.service-name {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  max-width: 80px;
}


/* ===== HelplineSection.css ===== */
.helpline-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Same gradient background as Hero section */
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  overflow: hidden;
  /* padding-bottom: 4rem; */
}

/* Added animated gradient orbs and grid pattern for visual consistency */
.helpline-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.helpline-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.helpline-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.helpline-gradient-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.helpline-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.helpline-gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Transformed banner with glassmorphism and glow effects */
.helpline-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: white;
  text-align: center;
  padding: 60px 40px;
  margin: 80px auto 60px;
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.banner-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation: bannerGlow 8s infinite ease-in-out;
}

@keyframes bannerGlow {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(10%, 10%);
    opacity: 0.5;
  }
}

.helpline-banner-subtitle {
  position: relative;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-weight: 600;
  letter-spacing: 3px;
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

/* Added pulsing indicator dots */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #60a5fa, 0 0 20px #60a5fa;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.helpline-banner-title {
  position: relative;
  font-size: 2rem;
  margin: 0 0 25px 0;
  line-height: 1.4;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Added gradient highlight effect */
.banner-title-highlight {
  background: linear-gradient(135deg, #f2eac4 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.5));
}

.dial-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 50px rgba(251, 191, 36, 0.4);
  letter-spacing: 2px;
  display: inline-block;
  animation: numberGlow 2s infinite alternate;
}

@keyframes numberGlow {
  from {
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
  }
  to {
    text-shadow: 0 0 50px rgba(251, 191, 36, 0.9), 0 0 80px rgba(251, 191, 36, 0.5);
  }
}

.helpline-banner-text {
  position: relative;
  font-size: 1.15rem;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced content section with better spacing */
.helpline-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
  z-index: 1;
}

/* Added glassmorphism frame and glow to image */
.helpline-image-wrapper {
  position: relative;
  flex: 0 0 auto;
}

.agent-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.agent-image {
  height: 380px;
  width: auto;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.agent-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.agent-image-frame:hover .agent-glow {
  opacity: 1;
}

/* Enhanced 24/7 icon with glassmorphism and glow ring */
.icon-wrapper {
  position: absolute;
  bottom: 20px;
  right: -60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-glow-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.icon-247 {
  width: 70px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Added glassmorphism card for text content */
.helpline-text-wrapper {
  flex: 1;
  max-width: 700px;
}

.text-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.helpline-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

/* Added decorative lines */
.heading-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #60a5fa 50%, transparent 100%);
  max-width: 80px;
}

.helpline-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  color: #60a5fa;
  text-align: center;
  text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.helpline-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  text-align: justify;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Added highlight for emergency number */
.number-highlight {
  color: #fbbf24;
  font-weight: 800;
  font-size: 1.15em;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .helpline-content {
    gap: 45px;
    padding: 50px 35px;
  }

  .icon-wrapper {
    right: -35px;
  }

  .helpline-banner {
    padding: 50px 35px;
  }

  .helpline-banner-title {
    font-size: 1.9rem;
  }

  .dial-number {
    font-size: 2.3rem;
  }
}

@media (max-width: 1024px) {
  .helpline-content {
    gap: 50px;
    padding: 40px 30px;
  }

  .icon-wrapper {
    right: -40px;
  }
}

@media (max-width: 900px) {
  .helpline-container {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .helpline-banner {
    margin: 35px auto 35px;
    padding: 45px 30px;
    width: 92%;
  }

  .helpline-banner-title {
    font-size: 1.7rem;
  }

  .dial-number {
    font-size: 2.1rem;
  }

  .helpline-content {
    flex-direction: column;
    align-items: center;
    padding: 35px 25px;
    gap: 35px;
  }

  .text-card {
    padding: 40px 30px;
  }

  .helpline-text-wrapper {
    width: 100%;
  }

  .helpline-paragraph {
    text-align: left;
  }

  .icon-wrapper {
    right: 15px;
    bottom: 15px;
  }

  .helpline-heading {
    font-size: 1.6rem;
  }

  .helpline-subheading {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .helpline-container {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .helpline-banner {
    margin: 40px auto 40px;
    padding: 40px 30px;
    width: 95%;
  }

  .helpline-banner-title {
    font-size: 1.5rem;
  }

  .dial-number {
    font-size: 2rem;
  }

  .helpline-content {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
  }

  .text-card {
    padding: 35px 25px;
  }

  .helpline-text-wrapper {
    width: 100%;
  }

  .helpline-paragraph {
    text-align: left;
  }

  .icon-wrapper {
    right: 10px;
    bottom: 10px;
  }

  .helpline-heading {
    font-size: 1.5rem;
  }

  .helpline-subheading {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .helpline-banner {
    padding: 35px 25px;
    width: 96%;
  }

  .helpline-banner-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .helpline-banner-title {
    font-size: 1.4rem;
  }

  .dial-number {
    font-size: 1.8rem;
  }

  .helpline-banner-text {
    font-size: 1.05rem;
  }

  .agent-image {
    height: 320px;
  }

  .icon-247 {
    width: 60px;
  }

  .text-card {
    padding: 30px 22px;
  }

  .helpline-heading {
    font-size: 1.4rem;
  }

  .helpline-subheading {
    font-size: 1.05rem;
  }

  .helpline-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .helpline-banner {
    padding: 30px 20px;
  }

  .helpline-banner-subtitle {
    font-size: 0.8rem;
  }

  .helpline-banner-title {
    font-size: 1.2rem;
  }

  .dial-number {
    font-size: 1.6rem;
  }

  .agent-image {
    height: 250px;
  }

  .icon-247 {
    width: 50px;
  }

  .text-card {
    padding: 25px 20px;
  }

  .helpline-heading {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 10px;
  }

  .heading-line {
    max-width: 60px;
  }

  .helpline-subheading {
    font-size: 1rem;
  }

  .helpline-paragraph {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .helpline-banner {
    padding: 25px 16px;
  }

  .helpline-banner-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .helpline-banner-title {
    font-size: 1.1rem;
  }

  .dial-number {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .helpline-banner-text {
    font-size: 0.95rem;
  }

  .agent-image {
    height: 220px;
  }

  .icon-247 {
    width: 45px;
  }

  .text-card {
    padding: 22px 18px;
  }

  .helpline-heading {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 8px;
  }

  .heading-line {
    max-width: 50px;
  }

  .helpline-subheading {
    font-size: 0.95rem;
  }

  .helpline-paragraph {
    font-size: 0.9rem;
  }
}


/* ===== Features.css ===== */
/* Features Section - Dark gradient background matching Hero */
.features-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  /* Ensure smooth animations on mobile */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Animated floating orbs for depth */
.features-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 20s infinite ease-in-out;
}

.features-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3b82f6, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.features-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: -7s;
}

.features-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #06b6d4, transparent);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Container */
.features-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== TITLE (WHITE + GLOW) ===== */
.features-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;

  text-shadow:
    0 0 8px rgba(34, 211, 238, 0.9),   /* sharp cyan glow */
    0 0 20px rgba(34, 211, 238, 0.8),  /* medium glow */
    0 0 45px rgba(34, 211, 238, 0.6),  /* soft halo */
    0 0 80px rgba(59, 130, 246, 0.4);  /* outer blue aura */

  animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
}


.features-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

@keyframes titlePop {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Subtitle */
.features-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Grid layout for features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Individual feature card */
.feature-card {
  position: relative;
  padding: 40px 30px;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out var(--delay) backwards;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon wrapper */
.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.feature-icon-circle {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  padding: 8px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconPulse 3s infinite ease-in-out;
}

.feature-card:hover .feature-icon-circle {
  transform: scale(1.1) ;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
  animation: none;
}

.feature-icon-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 10px;
}

@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 10px 50px rgba(59, 130, 246, 0.6);
  }
}

/* Feature title */
.feature-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Feature description */
.feature-description {
  text-align: center;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}



/* Responsive design */
@media (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .features-section {
    padding: 80px 30px;
  }

  .features-title {
    font-size: 3rem;
    text-shadow:
      0 0 8px rgba(34, 211, 238, 0.9),
      0 0 20px rgba(34, 211, 238, 0.8),
      0 0 45px rgba(34, 211, 238, 0.6),
      0 0 80px rgba(59, 130, 246, 0.4);
    animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .feature-icon-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s infinite ease-in-out;
  }

  .feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out var(--delay) backwards;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
    animation: none;
  }

  .features-orb-1 {
    width: 350px;
    height: 350px;
    animation-delay: 0s;
  }

  .features-orb-2 {
    width: 400px;
    height: 400px;
    animation-delay: -7s;
  }

  .features-orb-3 {
    width: 280px;
    height: 280px;
    animation-delay: -14s;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 20px;
  }

  .features-title {
    font-size: 2.2rem;
    text-shadow:
      0 0 8px rgba(34, 211, 238, 0.9),
      0 0 20px rgba(34, 211, 238, 0.8),
      0 0 45px rgba(34, 211, 238, 0.6),
      0 0 80px rgba(59, 130, 246, 0.4);
    animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
  }

  .features-subtitle {
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .feature-icon-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s infinite ease-in-out;
  }

  .feature-card {
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out var(--delay) backwards;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
    animation: none;
  }

  /* Enable touch interactions for mobile */
  .feature-card:active {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  }

  .feature-card:active::before {
    opacity: 1;
  }

  .feature-card:active .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
    animation: none;
  }

  .features-orb {
    animation: float 20s infinite ease-in-out;
  }

  .features-orb-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
  }

  .features-orb-2 {
    width: 350px;
    height: 350px;
    animation-delay: -7s;
  }

  .features-orb-3 {
    width: 250px;
    height: 250px;
    animation-delay: -14s;
  }
}

@media (max-width: 640px) {
  .features-section {
    padding: 50px 18px;
  }

  .features-title {
    font-size: 2rem;
    text-shadow:
      0 0 8px rgba(34, 211, 238, 0.9),
      0 0 20px rgba(34, 211, 238, 0.8),
      0 0 45px rgba(34, 211, 238, 0.6),
      0 0 80px rgba(59, 130, 246, 0.4);
    animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
  }

  .features-subtitle {
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
  }

  .feature-icon-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s infinite ease-in-out;
  }

  .feature-card {
    padding: 25px 18px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out var(--delay) backwards;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .features-orb-1 {
    width: 250px;
    height: 250px;
  }

  .features-orb-2 {
    width: 300px;
    height: 300px;
  }

  .features-orb-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 15px;
  }

  .features-title {
    font-size: 1.8rem;
    text-shadow:
      0 0 8px rgba(34, 211, 238, 0.9),
      0 0 20px rgba(34, 211, 238, 0.8),
      0 0 45px rgba(34, 211, 238, 0.6),
      0 0 80px rgba(59, 130, 246, 0.4);
    animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
  }

  .features-subtitle {
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
  }

  .feature-icon-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s infinite ease-in-out;
  }

  .feature-card {
    padding: 22px 16px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out var(--delay) backwards;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .features-orb-1 {
    width: 220px;
    height: 220px;
  }

  .features-orb-2 {
    width: 270px;
    height: 270px;
  }

  .features-orb-3 {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 360px) {
  .features-section {
    padding: 35px 12px;
  }

  .features-title {
    font-size: 1.6rem;
    text-shadow:
      0 0 8px rgba(34, 211, 238, 0.9),
      0 0 20px rgba(34, 211, 238, 0.8),
      0 0 45px rgba(34, 211, 238, 0.6),
      0 0 80px rgba(59, 130, 246, 0.4);
    animation: fadeInUp 0.8s ease-out, titlePop 0.6s ease-out;
  }

  .features-subtitle {
    font-size: 0.85rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
  }

  .feature-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s infinite ease-in-out;
  }

  .feature-card {
    padding: 20px 14px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out var(--delay) backwards;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .features-orb-1 {
    width: 200px;
    height: 200px;
  }

  .features-orb-2 {
    width: 240px;
    height: 240px;
  }

  .features-orb-3 {
    width: 160px;
    height: 160px;
  }
}


/* ===== works.css ===== */
.works-container {
  max-width: 100%;
  margin: 0;
  padding: 80px 0;
  /* Applied dark gradient background matching Hero */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

/* Added animated background orbs for consistency */
.works-background-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.works-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.works-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.works-orb-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  bottom: -100px;
  right: -100px;
  animation-delay: 7s;
}

.works-orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

.works-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Left Section - How it Works */
.how-it-works-section {
  /* Applied glassmorphism effect */
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 60px 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out;
}

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

/* Enhanced title with glow effect */
.main-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.title-highlight-works {
  background: linear-gradient(135deg, #f3ebdf, #eead95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

.description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
}

.emergency-number-inline {
  color: #f59e0b;
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

/* Redesigned steps with cards, images, and animations */
.steps-works-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.steps-works {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: slideInLeft 0.8s ease-out backwards;
  position: relative;
  overflow: hidden;
}

.steps-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b, #f97316);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.steps-works:hover::before {
  opacity: 1;
}

.steps-works[data-step="1"] {
  animation-delay: 0.2s;
}

.steps-works[data-step="2"] {
  animation-delay: 0.4s;
}

.steps-works[data-step="3"] {
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.steps-works:hover {
  transform: translateX(10px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.step-image-container {
  position: relative;
  flex-shrink: 0;
}

.step-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.1);
  padding: 1px;
}

.step-number-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
  border: 2px solid #0f172a;
}

.step-text-content {
  flex: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #f59e0b;
  margin: 0 0 12px 0;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.steps-works-content {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Right Section - Video and Notices */
.video-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.video-header {
  text-align: center;
  margin-bottom: 10px;
}

.video-header h2 {
  font-size: 28px;
  color: white;
  margin: 0 0 15px 0;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.video-header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

/* Enhanced video container with glassmorphism */
.video-container {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  transition: all 0.4s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Thumbnail Container */
.video-thumbnail-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-icon {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .play-icon {
  transform: scale(1.1);
}

/* Enhanced request help section with pulse animation */
.request-help-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.request-help-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.request-help-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.request-help-icon {
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.request-help-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

/* Enhanced emergency notice */
.emergency-notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(220, 38, 38, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.emergency-notice:hover {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.notice-icon {
  color: #ef4444;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.notice-content {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.notice-content strong {
  color: #fca5a5;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .works-content {
    gap: 35px;
    padding: 0 30px;
  }

  .how-it-works-section {
    padding: 50px 40px;
  }

  .main-title {
    font-size: 38px;
  }

  .description {
    font-size: 17px;
  }

  .video-section {
    top: 80px;
  }
}

@media (max-width: 1024px) {
  .works-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-section {
    position: relative;
    top: 0;
  }
}

@media (max-width: 900px) {
  .works-container {
    padding: 70px 0;
  }

  .works-content {
    padding: 0 25px;
  }

  .how-it-works-section {
    padding: 45px 35px;
    border-radius: 20px;
  }

  .main-title {
    font-size: 36px;
    text-align: center;
  }

  .description {
    font-size: 16px;
    text-align: center;
  }

  .steps-works {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
  }

  .step-text-content {
    width: 100%;
  }

  .video-header h2 {
    font-size: 26px;
  }

  .request-help-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .works-container {
    padding: 60px 0;
  }

  .works-content {
    padding: 0 20px;
  }

  .how-it-works-section {
    padding: 40px 30px;
    border-radius: 16px;
  }

  .main-title {
    font-size: 32px;
    text-align: center;
  }

  .description {
    font-size: 16px;
    text-align: center;
  }

  .steps-works {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .step-text-content {
    width: 100%;
  }

  .video-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .works-container {
    padding: 50px 0;
  }

  .works-content {
    padding: 0 18px;
  }

  .how-it-works-section {
    padding: 35px 25px;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .steps-works {
    padding: 22px;
  }

  .step-image {
    width: 90px;
    height: 90px;
  }

  .step-number-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .step-title {
    font-size: 20px;
  }

  .steps-works-content {
    font-size: 15px;
  }

  .video-header h2 {
    font-size: 22px;
  }

  .request-help-text {
    font-size: 16px;
  }

  .notice-content {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .works-container {
    padding: 40px 0;
  }

  .works-content {
    padding: 0 15px;
  }

  .how-it-works-section {
    padding: 30px 20px;
  }

  .main-title {
    font-size: 26px;
  }

  .description {
    font-size: 15px;
  }

  .steps-works {
    padding: 20px;
  }

  .step-image {
    width: 80px;
    height: 80px;
  }

  .step-number-badge {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .step-title {
    font-size: 18px;
  }

  .steps-works-content {
    font-size: 14px;
  }

  .video-header h2 {
    font-size: 20px;
  }

  .request-help-text {
    font-size: 16px;
  }

  .emergency-notice {
    padding: 16px;
  }

  .notice-content {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .works-container {
    padding: 35px 0;
  }

  .works-content {
    padding: 0 12px;
  }

  .how-it-works-section {
    padding: 25px 16px;
  }

  .main-title {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .steps-works {
    padding: 18px;
    gap: 20px;
  }

  .step-image {
    width: 70px;
    height: 70px;
  }

  .step-number-badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .step-title {
    font-size: 16px;
  }

  .steps-works-content {
    font-size: 13px;
  }

  .video-header h2 {
    font-size: 18px;
  }

  .video-header-line {
    width: 60px;
    height: 3px;
  }

  .request-help-section {
    padding: 16px 24px;
  }

  .request-help-text {
    font-size: 15px;
  }

  .emergency-notice {
    padding: 14px;
  }

  .notice-content {
    font-size: 11px;
  }
}


/* ===== faq.css ===== */
/* FAQ Section - Matching Hero Page Theme */

.faq-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  padding: 80px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Animated background elements - matching Hero */
.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.faq-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.faq-gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.faq-gradient-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 2s;
}

.faq-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

/* Container */
.faq-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  padding: 40px 60px;
}

/* Header - matching Hero style */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.faq-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.faq-title-underline {
  color: #ffd700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.faq-title-underline::before,
.faq-title-underline::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  min-width: 150px;
}

.faq-title-underline::before {
  margin-right: 20px;
}

.faq-title-underline::after {
  margin-left: 20px;
}

.faq-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FAQ List */
.faq-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item - glassmorphism like Hero */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out backwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.faq-item.open {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f79595;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.faq-item:hover .question-text {
  color: #fa847a;
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  color: #ffd700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-arrow.rotate {
  transform: rotate(180deg);
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.3);
}

.faq-item:hover .faq-arrow {
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

/* FAQ Answer Wrapper */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-wrapper.expanded {
  max-height: 2000px;
}

/* FAQ Answer */
.faq-answer {
  padding: 0 30px 30px 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeIn 0.5s ease-out;
}

.faq-answer p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.faq-answer ul {
  margin: 15px 0;
  padding-left: 24px;
}

.faq-answer li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

.faq-answer li::marker {
  color: #ffd700;
}

.faq-answer b,
.faq-answer strong {
  color: #ffffff;
  font-weight: 700;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-container {
    padding: 35px 25px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1.05rem;
  }

  .faq-question {
    padding: 26px;
  }

  .question-text {
    font-size: 1.15rem;
  }

  .faq-answer {
    padding: 0 26px 26px 26px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .faq-container {
    padding: 30px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 24px;
  }

  .question-text {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 18px;
  }

  .faq-container {
    padding: 25px 18px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-title-underline {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .faq-title-underline::before,
  .faq-title-underline::after {
    min-width: 100px;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 22px;
  }

  .question-text {
    font-size: 1.05rem;
    padding-right: 16px;
  }

  .faq-answer {
    padding: 0 22px 22px 22px;
    font-size: 0.92rem;
  }

  .faq-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-container {
    padding: 20px 15px;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-title-underline {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .faq-title-underline::before,
  .faq-title-underline::after {
    min-width: 80px;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 20px;
  }

  .question-text {
    font-size: 1rem;
    padding-right: 14px;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
  }

  .faq-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 12px;
  }

  .faq-container {
    padding: 18px 12px;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-title-underline {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .faq-title-underline::before,
  .faq-title-underline::after {
    min-width: 60px;
  }

  .faq-subtitle {
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 18px;
  }

  .question-text {
    font-size: 0.95rem;
    padding-right: 12px;
  }

  .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 0.85rem;
  }

  .faq-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 360px) {
  .faq-section {
    padding: 35px 10px;
  }

  .faq-container {
    padding: 15px 10px;
  }

  .faq-title {
    font-size: 1.3rem;
  }

  .faq-title-underline {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .faq-title-underline::before,
  .faq-title-underline::after {
    min-width: 40px;
  }

  .faq-subtitle {
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 16px;
  }

  .question-text {
    font-size: 0.9rem;
    padding-right: 10px;
  }

  .faq-answer {
    padding: 0 16px 16px 16px;
    font-size: 0.8rem;
  }

  .faq-arrow {
    width: 30px;
    height: 30px;
  }

  .faq-list-wrapper {
    gap: 16px;
  }
}


/* ===== aboutus.css ===== */
/* Page wrapper */
.about-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
}

/* Background floating orbs */
.about-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.about-orb-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    left: -150px;
}

.about-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -120px;
    right: -120px;
}

/* Main content card (glassmorphism) */
.about-card {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 50px;
}

/* Page title */
.about-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: #ffda1f;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 243, 250, 0.6);
}

/* Subtitle */
.about-subtitle {
    text-align: center;
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Sections */
.about-section {
    margin-bottom: 35px;
}

.about-section h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.about-section p,
.about-section li {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: justify;
}

/* List */
.about-section ul {
    padding-left: 20px;
}

.about-section li {
    margin-bottom: 8px;
}

/* Footer note */
.about-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 25px;
    }

    .about-title {
        font-size: 1.8rem;
    }
}

/* ===== terms.css ===== */
/* ============================
   TERMS & CONDITIONS THEME
   Matches hero.css perfectly
============================ */

/* Page wrapper */
.terms-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Background effects (same as hero) */
.terms-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.terms-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.terms-orb-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    left: -150px;
}

.terms-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -120px;
    right: -120px;
}

/* Main content card */
.terms-card {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 50px;
}

/* Title */
.terms-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: #ffda1f;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 243, 250, 0.6);
}

/* Subtitle */
.terms-subtitle {
    text-align: center;
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Section */
.terms-section {
    margin-bottom: 35px;
}

.terms-section h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.terms-section p,
.terms-section li {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: justify;
}

/* List */
.terms-section ul {
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
}

/* Footer note */
.terms-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .terms-card {
        padding: 30px 25px;
    }

    .terms-title {
        font-size: 1.8rem;
    }
}

/* ===== privacy.css ===== */
/* ============================
   PRIVACY POLICY THEME
   Matches Hero & Terms theme
============================ */

.privacy-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Background */
.privacy-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.privacy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.privacy-orb-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    left: -150px;
}

.privacy-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -120px;
    right: -120px;
}

/* Card */
.privacy-card {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 50px;
}

/* Title */
.privacy-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: #ffda1f;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 243, 250, 0.6);
}

.privacy-subtitle {
    text-align: center;
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Sections */
.privacy-section {
    margin-bottom: 35px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.privacy-section p,
.privacy-section li {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: justify;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
}

/* Footer */
.privacy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 25px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }
}

/* ===== copyright.css ===== */
/* ============================
   COPYRIGHT PAGE THEME
   Matches Hero / Terms / Privacy
============================ */

/* Page wrapper */
.copyright-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
}

/* Background floating orbs */
.copyright-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.copyright-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.copyright-orb-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    left: -150px;
}

.copyright-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -120px;
    right: -120px;
}

/* Main content card (glassmorphism) */
.copyright-card {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 50px;
}

/* Page title */
.copyright-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: #ffda1f;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 243, 250, 0.6);
}

/* Subtitle */
.copyright-subtitle {
    text-align: center;
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Sections */
.copyright-section {
    margin-bottom: 35px;
}

.copyright-section h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.copyright-section p,
.copyright-section li {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* List */
.copyright-section ul {
    padding-left: 20px;
}

.copyright-section li {
    margin-bottom: 8px;
}

/* Footer note */
.copyright-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .copyright-card {
        padding: 30px 25px;
    }

    .copyright-title {
        font-size: 1.8rem;
    }
}

/* ===== Footer.css ===== */
.footer {
  /* Updated to gradient background matching Hero and HelplineSection */
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

/* Added animated floating orbs for visual consistency */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 20s infinite ease-in-out;
}

.footer-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.footer-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 100px;
  right: -100px;
  animation-delay: 7s;
}

.footer-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 14s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-section {
  display: flex;
  flex-direction: column;
  /* Added fade-up animation */
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

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

.footer-title {
  /* Enhanced title with glow effect */
  color: #fbbf24;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, transparent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  /* Enhanced link styling with glassmorphism hover */
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-links a:hover {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Added animated link icon */
.link-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #fbbf24;
}

.footer-links a:hover .link-icon {
  transform: translateX(3px);
}

/* Styled social icons with brand colors */
.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links a:hover .social-icon::before {
  opacity: 1;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  /* filter: brightness(0) invert(1);
  transition: filter 0.3s ease; */
}

.social-links a:hover .social-icon-img {
  filter: brightness(1) invert(0);
}

.email-icon::after {
  content: "✉";
  color: #fbbf24;
  font-size: 18px;
}

.social-links a:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
  border-color: #fbbf24;
  background: rgba(251, 191, 36, 0.2);
}

/* Enhanced pageview counter with glassmorphism and animation */
.pageviews-section {
  text-align: center;
}

.pageview-counter {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.counter-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.pageview-number {
  font-size: 42px;
  font-weight: 800;
  color: #fbbf24;
  display: block;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
  letter-spacing: 2px;
}

.pageview-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Location & Contact Section */
.location-section {
  grid-column: span 1;
}

/* Map Section - Hidden by default, shown only on mobile */
.mobile-map {
  display: none;
}

/* Desktop map - shown by default */
.desktop-map {
  display: block;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 150px;
}

.map-container:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.map-container iframe {
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
  width: 100%;
  height: 150px;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 20px;
  min-width: 24px;
  text-align: left;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  color: #fbbf24;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.contact-text p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-text a {
  color: #ebe6db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #f8aaaa;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.footer-bottom {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.copyright {
  text-align: center;
  font-size: 15px;
  color: #94a3b8;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.copyright a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.25s ease;
}

.copyright a:hover {
  opacity: 0.95;
}

.dev-credit {
  display: inline-block;
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.45);
  margin-left: 4px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.5);
}

.highlight {
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.45);
  padding: 0 2px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 20px;
  }

  .location-section {
    grid-column: span 1;
  }

  .footer-orb {
    filter: blur(60px);
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "resources follow"
      "quick-links location"
      "map map";
    gap: 30px;
    padding: 40px 20px;
  }

  /* Assign grid areas to specific sections */
  .footer-section:nth-child(1) { /* Quick Links */
    grid-area: quick-links;
  }

  .footer-section:nth-child(2) { /* Resources */
    grid-area: resources;
  }

  .footer-section:nth-child(3) { /* Follow Us */
    grid-area: follow;
  }

  .footer-section:nth-child(4) { /* Location */
    grid-area: location;
  }

  .footer-section:nth-child(5) { /* Map Section */
    grid-area: map;
  }

  .footer-section {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-links li:hover {
    transform: translateX(5px);
  }

  .pageview-counter {
    padding: 28px 20px;
  }

  .pageview-number {
    font-size: 36px;
  }

  /* Map section styling for mobile */
  .map-section {
    margin-top: 20px;
  }

  .map-section .map-container {
    margin-top: 0;
  }

  .map-container iframe {
    height: 200px;
  }

  /* Hide map section on desktop */
  .map-section {
    display: none;
  }
}

/* Show map section only on mobile */
@media (max-width: 768px) {
  .mobile-map {
    display: block !important;
  }
  
  /* Hide desktop map from location section on mobile */
  .desktop-map {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "resources"
      "quick-links"
      "follow"
      "location"
      "map";
    gap: 25px;
    padding: 35px 18px;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .footer-links a {
    font-size: 14px;
    padding: 7px 11px;
  }

  .pageview-counter {
    padding: 25px 18px;
  }

  .pageview-number {
    font-size: 34px;
  }

  .pageview-label {
    font-size: 13px;
  }

  .copyright {
    font-size: 14px;
    padding: 0 18px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .map-container iframe {
    height: 180px;
  }

  .contact-item {
    padding: 11px;
  }

  .contact-text strong {
    font-size: 13px;
  }

  .contact-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 15px;
    gap: 22px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .pageview-number {
    font-size: 32px;
  }

  .pageview-label {
    font-size: 12px;
  }

  .copyright {
    font-size: 13px;
    padding: 0 15px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

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

  .contact-item {
    padding: 10px;
  }

  .contact-text strong {
    font-size: 12px;
  }

  .contact-text p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .footer-content {
    padding: 25px 12px;
    gap: 20px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 13px;
    padding: 5px 8px;
  }

  .pageview-counter {
    padding: 20px 15px;
  }

  .pageview-number {
    font-size: 28px;
  }

  .pageview-label {
    font-size: 11px;
  }

  .copyright {
    font-size: 12px;
    padding: 0 12px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon-img {
    width: 16px;
    height: 16px;
  }

  .map-container iframe {
    height: 140px;
  }

  .contact-item {
    padding: 8px;
  }

  .contact-text strong {
    font-size: 11px;
  }

  .contact-text p {
    font-size: 11px;
  }

  .contact-row {
    gap: 8px;
  }

  .contact-icon {
    font-size: 16px;
    min-width: 20px;
  }
}

