/* style.css - DamohHub Core Stylesheet (Premium Light Theme) */

/* Fonts are preloaded and loaded via index.html link tags for better mobile PageSpeed performance */

:root {
  --bg-color: #f8fafc; /* Soft Off-White Background */
  --bg-card: #ffffff;  /* Pure White for Cards */
  --bg-input: #ffffff; /* White Inputs */
  --text-primary: #0f172a; /* Deep Slate Black */
  --text-secondary: #475569; /* Muted Slate Gray */
  --accent-purple: #7c3aed;  /* Premium Violet/Purple */
  --accent-purple-glow: rgba(124, 58, 237, 0.15);
  --accent-lavender: #a78bfa;
  --border-color: #e2e8f0; /* Soft Gray Border */
  --border-color-hover: #cbd5e1;
  --border-color-focus: #7c3aed;
  --glow-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --glow-shadow-active: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -6px rgba(124, 58, 237, 0.05);
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Soft Glow effect */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.app-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 1;
}

/* Sticky Navbar (Exact Logo Match Dark Header) */
header {
  position: sticky;
  top: 0;
  background: #090b11; /* Matches logo background perfectly */
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  height: 120px; /* Clean compact height for isolated logo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  z-index: 100;
  transition: var(--transition-smooth);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Render cropped logo brand-mark clearly */
.logo-img {
  height: 96px; /* Symmetrical height for brand-mark */
  width: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language and City select boxes (Dark styled for Header contrast) */
.btn-select {
  background-color: #101626; /* Dark background */
  color: #ffffff; /* White text */
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 10px 18px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}
.btn-select option {
  background-color: #090b11;
  color: #ffffff;
}

.btn-select:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--glow-shadow);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Hero Search Area */
.hero-section {
  padding: 90px 10% 60px 10%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(to right, #0f172a 40%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-trust {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-trust span {
  color: var(--accent-purple);
  font-weight: 600;
}

/* Search Bar Wrapper */
.search-wrapper {
  width: 100%;
  max-width: 680px;
  position: relative;
  margin-bottom: 20px;
}

.search-bar {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 18px 24px 18px 56px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-shadow);
}

.search-bar:focus {
  border-color: var(--accent-purple);
  box-shadow: var(--glow-shadow-active);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-purple);
  font-size: 20px;
  pointer-events: none;
}

/* Search Autocomplete Suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-color-hover);
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: var(--glow-shadow-active);
  max-height: 320px;
  overflow-y: auto;
  z-index: 90;
  display: none;
  text-align: left;
}

.suggestion-item {
  padding: 14px 24px;
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 12px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple);
}

.suggestion-item .item-type {
  font-size: 11px;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-purple);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

/* Service Grid Section */
.services-section {
  padding: 20px 8% 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--accent-purple);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Service Cards (Light Theme Premium) */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: var(--glow-shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-purple);
  transition: var(--transition-smooth);
}

.service-card:hover .card-icon-wrapper {
  background: var(--accent-purple);
  color: white;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 10px;
  font-weight: 700;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.service-card.coming-soon {
  opacity: 0.75;
  background: rgba(248, 250, 252, 0.65);
  cursor: default;
}

.service-card.coming-soon:hover {
  transform: none;
  border-color: var(--border-color);
  box-shadow: none;
}

/* Service Inner Form Pages styles */
.inner-container {
  max-width: 800px;
  margin: 40px auto 80px auto;
  padding: 0 24px;
  width: 100%;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--accent-lavender);
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glow-shadow);
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color-hover);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-purple);
  box-shadow: var(--accent-purple-glow);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #6d28d9 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Footer Section (Dark for Logo Blend) */
footer {
  margin-top: auto;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  background: #090b11; /* Matches logo background */
  padding: 40px 8%;
  text-align: center;
}

.footer-logo {
  height: 85px; /* Render logo banner clearly in footer */
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-text {
  font-size: 13px;
  color: #94a3b8; /* Light silver gray for contrast */
  line-height: 1.8;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-lavender);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 4%;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hero-section {
    padding: 60px 6% 40px 6%;
  }
  
  .hero-tagline {
    font-size: 32px;
  }
  
  .services-section {
    padding: 10px 4% 60px 4%;
  }
  
  .form-box {
    padding: 24px;
  }
}

/* Rich Text Styling for Legal & Blog Content */
.rich-text {
  margin-top: 20px;
}

.rich-text h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.rich-text h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.rich-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.rich-text ul, .rich-text ol {
  margin-bottom: 18px;
  padding-left: 20px;
}

.rich-text li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* Language Visibility Toggles */
body.lang-en .hi-text,
body.lang-en [lang="hi"] {
  display: none !important;
}
body.lang-hi .en-text,
body.lang-hi [lang="en"] {
  display: none !important;
}

/* ==========================================================================
   Upgraded Homepage Components (Navigation, About, Contact, Modals)
   ========================================================================== */

/* Navigation Menu Styling */
.nav-menu {
  display: flex;
  gap: 15px;
}

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
  font-family: var(--font-display);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background-color: rgba(139, 92, 246, 0.1);
}

/* Hamburger Menu Toggle (Hidden on Desktop) */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 150;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburger Active Transform */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* About Us Section Styling */
.about-section {
  padding: 80px 8% 60px 8%;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.about-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-purple);
}

.about-card.brand-rajnivesh::before {
  background: #3b82f6; /* Blue for RajNivesh */
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow-active);
  border-color: rgba(139, 92, 246, 0.2);
}

.about-card.brand-rajnivesh:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.about-brand-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.about-brand-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-purple);
  margin-top: 6px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card.brand-rajnivesh .about-brand-tagline {
  color: #3b82f6;
}

.about-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Contact Us Section Styling */
.contact-section {
  padding: 40px 8% 80px 8%;
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-hover);
  box-shadow: var(--glow-shadow-active);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glow-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form label .required {
  color: #ef4444;
  margin-left: 2px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
  color: var(--text-primary);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--border-color-focus);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--accent-purple-glow);
}

.btn-submit-contact {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #6d28d9 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.btn-submit-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

/* Success Modal Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 11, 17, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #10b981;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 30px;
}

.modal-desc strong {
  color: var(--accent-purple);
  font-family: var(--font-display);
}

.btn-modal-close {
  width: 100%;
  background: #10b981;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-modal-close:hover {
  background-color: #059669;
}

/* Mobile Responsive Optimization Overrides */
@media (max-width: 768px) {
  header {
    height: 80px !important;
    padding: 0 5% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .logo-img {
    height: 60px !important;
  }

  .nav-actions {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
  }

  /* Hide redundant items on mobile to fit the small header */
  #city-select, .nav-actions .btn-whatsapp {
    display: none !important;
  }

  #lang-select {
    padding: 6px 8px !important;
    font-size: 12px !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  .hamburger-menu {
    display: flex;
  }

  /* Slide down mobile drawer */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(9, 11, 17, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    flex-direction: column;
    padding: 24px 8%;
    gap: 12px;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    padding: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }
}

/* ==========================================================================
   News & Updates Alert Bar & History Modal
   ========================================================================== */

.news-alert-bar {
  background: rgba(13, 18, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #8b5cf6 0%, #d946ef 50%, #8b5cf6 100%) 1;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 80;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(139, 92, 246, 0.1);
}

.news-alert-bar:hover {
  background: rgba(20, 27, 45, 0.95);
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.18);
}

.news-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  overflow: hidden;
}

.news-live-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse-glow 1.5s infinite;
}

.news-ticker-text-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: block;
}

.news-ticker-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #ffd700; /* vibrant gold/yellow */
  animation: news-marquee 22s linear infinite;
  transition: color 0.2s;
  cursor: pointer;
}

.news-alert-bar:hover .news-ticker-text {
  animation-play-state: paused;
  color: #ffffff;
}

@keyframes news-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.news-view-all-btn {
  background: none;
  border: none;
  color: #a78bfa;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  transition: all 0.2s;
  white-space: nowrap;
}

.news-view-all-btn:hover {
  color: #ffffff;
  transform: translateX(2px);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Modal styles overrides for news */
.news-modal-card {
  background-color: #0b0f19 !important;
  color: #f3f4f6 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  max-width: 650px !important;
  max-height: 85vh !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1) !important;
}

.news-modal-card .modal-title {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px !important;
}

.modal-close-x {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}

.modal-close-x:hover {
  color: #ffffff;
}

.news-modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding-right: 10px;
  margin-bottom: 16px;
}

.news-modal-body::-webkit-scrollbar {
  width: 6px;
}

.news-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.news-modal-body::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 3px;
}

.news-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.5);
}

.news-history-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  animation: fadeIn 0.4s ease-out;
}

.news-history-item:last-child {
  border-bottom: none;
}

.news-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.news-history-date {
  font-size: 12px;
  color: #a78bfa;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.news-item-badge {
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.news-item-offer-badge {
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
  animation: pulse-glow-offer 2s infinite alternate;
}

.news-offer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

@keyframes pulse-glow-offer {
  0% { box-shadow: 0 0 3px rgba(245, 158, 11, 0.3); transform: scale(1); }
  100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.7); transform: scale(1.03); }
}


.news-history-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 12px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.news-history-details {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
  white-space: pre-line;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.news-loading, .news-empty {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
  font-size: 14px;
}

/* Mobile Tweak for News Bar */
@media (max-width: 600px) {
  .news-alert-bar {
    padding: 10px 4%;
    gap: 10px;
  }
  .news-live-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  .news-ticker-text {
    font-size: 12px;
  }
  .news-view-all-btn {
    font-size: 11px;
  }
  .news-modal-card {
    padding: 24px !important;
  }
  .news-history-headline {
    font-size: 15px;
  }
  .news-history-details {
    font-size: 12.5px;
    padding: 10px 12px;
  }
}

.news-history-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-history-image:hover {
  transform: scale(1.02);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 92, 246, 0.25);
}



/* Damoh Glory Gallery Section */
.gallery-section {
  padding: 60px 8%;
  position: relative;
  z-index: 10;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow-active);
  border-color: rgba(139, 92, 246, 0.2);
}

.gallery-img-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 0 !important; /* Reset margin from news-history-image */
  max-height: none !important; /* Reset max-height from news-history-image */
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 11, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.gallery-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Layout Redesign */
.about-layout-container {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: stretch;
}

.founder-card {
  flex: 0 0 380px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--glow-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.founder-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow-active);
  border-color: rgba(139, 92, 246, 0.2);
}

.founder-img-container {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-purple);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
  background-color: var(--border-color);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.founder-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.founder-tagline {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.founder-details-list {
  text-align: left;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.founder-bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.founder-contact-links {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: auto;
}

.founder-link {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  text-align: center;
}

.founder-link:hover {
  background-color: var(--border-color);
}

.founder-link.whatsapp {
  background-color: #25d366;
  color: white;
  border-color: #25d366;
}

.founder-link.whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

.about-brands-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-brands-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-brands-grid .about-card.brand-suvidha, 
.about-brands-grid .about-card.brand-rajnivesh {
  padding: 30px;
}

.about-brands-grid .about-card.brand-suvidha {
  border-left: 4px solid var(--accent-purple);
}

.about-brands-grid .about-card.brand-rajnivesh {
  border-left: 4px solid #3b82f6;
}

.founder-quote {
  background: rgba(59, 130, 246, 0.04);
  border-left: 3px solid #3b82f6;
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-style: italic;
  font-size: 13.5px;
  text-align: left;
  line-height: 1.6;
}

/* Responsive Overrides for new layouts */
@media (max-width: 992px) {
  .about-layout-container {
    flex-direction: column;
    align-items: center;
  }
  .founder-card {
    width: 100%;
    flex: none;
    max-width: 500px;
  }
  .about-brands-grid {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-brands-subgrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-section {
    padding: 40px 4%;
  }
  .gallery-grid {
    gap: 20px;
  }
  .about-brands-grid .about-card.brand-suvidha, 
  .about-brands-grid .about-card.brand-rajnivesh {
    padding: 20px;
  }
}

/* style.css Upgraded Layout Additions */

/* Hero Redesign Styles */
.hero-split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.hero-right-col {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: var(--accent-purple);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.badge-star {
  color: #d97706;
}

.hero-tagline {
  font-size: 40px;
  line-height: 1.25;
  background: linear-gradient(135deg, #0f172a 40%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: left;
}

.hero-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

.hero-quick-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.quick-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  font-size: 20px;
}

.stat-text {
  font-size: 12.5px;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.3;
}

.stat-text strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

/* Mockup Card styling */
.hero-mockup-wrapper {
  position: relative;
  padding-top: 20px;
  width: 100%;
  max-width: 440px;
}

.mockup-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  background: #10b981;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.mockup-top-badge .badge-icon {
  background: white;
  color: #10b981;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

.hero-mockup-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  width: 100%;
  transition: var(--transition-smooth);
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.mockup-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.mockup-header-icon {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-header-title {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mockup-header-title span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.mockup-sub-brand {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mockup-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.mockup-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.mockup-grid-item:hover {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

.mockup-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.gov-bg { background: rgba(124, 58, 237, 0.08); }
.mf-bg { background: rgba(16, 185, 129, 0.08); }
.travel-bg { background: rgba(59, 130, 246, 0.08); }
.print-bg { background: rgba(245, 158, 11, 0.08); }
.bill-bg { background: rgba(20, 184, 166, 0.08); }
.ins-bg { background: rgba(236, 72, 153, 0.08); }

.mockup-item-name {
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.mockup-card-footer {
  background: #0f172a;
  border-radius: 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  text-align: left;
}

.mockup-footer-info {
  display: flex;
  flex-direction: column;
}

.mockup-footer-info span {
  font-size: 10px;
  opacity: 0.7;
}

.mockup-footer-info strong {
  font-size: 12px;
  color: #ffd700;
}

.mockup-btn-call {
  background: white;
  color: #0f172a;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.mockup-btn-call:hover {
  background: #f1f5f9;
  transform: scale(1.05);
}

.mockup-floating-badge {
  position: absolute;
  bottom: 0px;
  left: -20px;
  z-index: 15;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-thunder {
  color: #ffd700;
  font-size: 14px;
}

/* Stats Banner Styling */
.stats-banner-section {
  width: 100%;
  background: linear-gradient(135deg, #090b11 0%, #1e1b4b 50%, #090b11 100%);
  padding: 50px 8%;
  color: white;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  z-index: 10;
  position: relative;
}

.stats-banner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-banner-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #ffd700; /* gold */
}

.stat-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Categories Section Styling */
.categories-section {
  padding: 80px 8% 40px 8%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.category-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.category-section-badge {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-main-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.category-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.categories-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card-item {
  border-radius: 24px;
  padding: 30px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.category-card-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.1);
}

.cat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-card-icon {
  font-size: 32px;
}

.cat-card-arrow {
  font-size: 20px;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.category-card-item:hover .cat-card-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

.cat-card-body {
  text-align: left;
}

.cat-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-card-desc {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}

/* Color Gradients for Category Cards */
.purple-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}
.blue-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.orange-gradient {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}
.green-gradient {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

/* Local News Grid Styling */
.local-news-section {
  padding: 60px 8%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.news-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.local-news-badge {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-main-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.news-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.news-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glow-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.news-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow-active);
  border-color: rgba(124, 58, 237, 0.15);
}

.news-card-header {
  padding: 14px 20px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.purple-head { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.blue-head { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.green-head { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.news-card-body {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-card-date {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-item .news-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.news-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Testimonials Styling */
.testimonials-section {
  padding: 80px 8% 60px 8%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.testimonial-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.testimonials-badge {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-main-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.testimonials-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--glow-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
}

.testimonial-card-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow-active);
  border-color: rgba(124, 58, 237, 0.15);
}

.testimonial-stars-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars-row {
  color: #f59e0b; /* gold */
  font-size: 16px;
  letter-spacing: 2px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: #f1f5f9;
  font-weight: 900;
}

.testimonial-quote-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
  font-style: italic;
  flex: 1;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.purple-bg { background: #7c3aed; }
.blue-bg { background: #3b82f6; }
.green-bg { background: #10b981; }

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-location {
  font-size: 11px;
  color: var(--text-secondary);
}

/* FAQ Section Accordion styling */
.faq-section {
  padding: 40px 8% 80px 8%;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.faq-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.faq-section-badge {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-main-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-accordion-item:hover {
  border-color: rgba(124, 58, 237, 0.2);
}

.faq-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  text-align: left;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon-arrow {
  font-size: 20px;
  color: var(--accent-purple);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon-arrow {
  transform: rotate(45deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f8fafc;
}

.faq-accordion-content p {
  padding: 0 24px 20px 24px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}

/* Floating WhatsApp Widget Styling */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.floating-whatsapp-widget::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-whatsapp-widget:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* CSS Media Queries for Redesigned Layout */
@media (max-width: 992px) {
  .hero-split-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .hero-left-col {
    align-items: center;
    text-align: center;
  }
  .hero-tagline {
    font-size: 32px;
    text-align: center;
  }
  .hero-description {
    text-align: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-quick-stats {
    justify-content: center;
  }
  .hero-mockup-wrapper {
    max-width: 400px;
  }
  .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-tagline {
    font-size: 26px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  .stats-banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-number {
    font-size: 32px;
  }
  .category-main-title, .news-main-title, .testimonials-main-title, .faq-main-title {
    font-size: 24px;
  }
  .categories-grid-cards, .news-grid-cards, .testimonials-grid-cards {
    grid-template-columns: 1fr;
  }
  .floating-whatsapp-widget {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

