/* Premium Aesthetics Override */
:root {
  --primary-color: #4f46e5;
  --primary-dark: #3730a3;
  --secondary-color: #0ea5e9;
  --accent-color: #ec4899;
  --bg-dark: #0f172a;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-main) !important;
  color: var(--text-dark) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}

/* Typography */
.slider_section .detail-box h3 {
  color: var(--secondary-color) !important;
  letter-spacing: 2px;
  font-weight: 600;
}
.slider_section .detail-box h1 {
  color: var(--text-light) !important;
  font-size: 4rem !important;
  line-height: 1.1;
  margin-bottom: 20px;
}
.heading_container h2 {
  color: var(--text-dark) !important;
}
.heading_container h2::before {
  background-color: var(--primary-color) !important;
}

/* Language Switcher */
.language-switcher {
  position: absolute;
  top: 25px;
  right: 80px;
  z-index: 999;
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.85rem;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Hero Section */
.hero_area {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%) !important;
}
.slider_section .detail-box a {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 15px 45px !important;
  font-weight: 600 !important;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.slider_section .detail-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.6) !important;
  color: white !important;
}

/* Feature Boxes */
.feature_section { background-color: #f8fafc !important; }
.feature_section .box {
  background: white !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
  border: 1px solid rgba(0,0,0,0.02) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  padding: 30px 20px !important;
}
.feature_section .box:hover {
  transform: translateY(-10px);
  background: white !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
  color: var(--text-dark) !important;
}
.feature_section .box .head-box .img-box svg { fill: var(--primary-color) !important; }
.feature_section .box:hover .head-box .img-box svg { fill: var(--secondary-color) !important; }
.feature_section a {
  background: var(--primary-color) !important;
  border: none !important;
  border-radius: 30px !important;
  box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}

/* Download/Solutions Section */
.download_section .box {
  background: linear-gradient(145deg, #1e293b, var(--bg-dark)) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
  transition: transform 0.3s ease !important;
}
.download_section .box:hover { transform: translateY(-5px); }
.download_section .btn-1 {
  background: var(--primary-color) !important;
  border-radius: 30px !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}

/* About Section */
.about_section {
  position: relative;
}
.about_section::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(15, 23, 42, 0.85); /* Dark overlay */
}
.about_section .container { position: relative; z-index: 2; }
.about_section .heading_container h2 { color: white !important; }
.about_section .detail-box p { color: #e2e8f0 !important; font-size: 1.1rem; line-height: 1.8; }
.about_section .detail-box.b-1 a {
  background: var(--primary-color) !important;
  border-radius: 30px !important;
  border: none !important;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}

/* Contact Section */
.contact_form-container button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3) !important;
  transition: transform 0.3s !important;
}
.contact_form-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(79, 70, 229, 0.4) !important;
}
.contact_section input {
  border-bottom: 2px solid #cbd5e1 !important;
  transition: border-color 0.3s !important;
  padding-bottom: 10px !important;
}
.contact_section input:focus {
  border-color: var(--primary-color) !important;
}

/* Info & Footer */
.info_section { background-color: var(--bg-dark) !important; }
.info_section h2 { border-bottom-color: var(--primary-color) !important; }
.info_section ul li a:hover { color: var(--primary-color) !important; }
.footer_section { background-color: #020617 !important; border-top: 1px solid rgba(255,255,255,0.05); }

/* Custom Menu Toggle Override */
.custom_menu-btn span {
  background-color: var(--primary-color) !important;
}
.hero_area .custom_menu-btn span {
  background-color: #fff !important; /* White on dark background */
}
