/* Theme Switcher Styles */
.theme-switcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.theme-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glassBg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glassBorder);
  color: var(--textColor);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glassShadow);
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--secondaryColor);
}

.theme-options {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: var(--glassBg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: var(--glassShadow);
}

.theme-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--textColor);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: left;
}

.theme-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-option.active {
  background-color: var(--glassBg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--secondaryColor);
  color: var(--textColor);
}

.theme-option i {
  width: 20px;
  text-align: center;
}

/* Light/Dark Mode Specific Styles */
.light-mode {
  background-color: #f8fafc;
}

.light-mode header {
  background-color: var(--glassBg);
  box-shadow: var(--glassShadow);
}

.light-mode .nav-links a {
  color: var(--textColor);
}

.light-mode .hamburger span {
  background-color: var(--textColor);
}

.light-mode .hero p {
  color: var(--textLight);
}

.light-mode .section-title {
  color: var(--textColor);
}

.light-mode .solution-card h3,
.light-mode .product-content h3,
.light-mode .contact-card h3,
.light-mode .footer-column h3,
.light-mode .cta-content h2,
.light-mode .author-info h4 {
  color: var(--textColor);
}

.light-mode .solution-features li,
.light-mode .product-content p,
.light-mode .testimonial-content p,
.light-mode .contact-card p,
.light-mode .footer-column p {
  color: var(--textLight);
}

.light-mode .form-group label {
  color: var(--textColor);
}

.light-mode .form-group input,
.light-mode .form-group textarea {
  color: var(--textColor);
  background-color: rgba(0, 0, 0, 0.05);
}

.light-mode .feature-list li,
.light-mode .benefit-list li,
.light-mode .usecase-list li {
  color: var(--textLight);
}

/* BharatVerified Theme Specific Styles */
.theme-bharatverified {
  background-color: #ffffff;
}

.theme-bharatverified header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.theme-bharatverified .logo-text {
  color: #1e293b;
  font-weight: 700;
}

.theme-bharatverified .nav-links a {
  color: #1e293b;
  font-weight: 500;
}

.theme-bharatverified .nav-links a:hover {
  color: #ff9933;
}

.theme-bharatverified .nav-links a::after {
  background-color: #138808;
}

.theme-bharatverified .btn.primary-btn {
  background-color: #ff9933;
  color: white;
  border: none;
}

.theme-bharatverified .btn.secondary-btn {
  background-color: transparent;
  color: #1e293b;
  border: 2px solid #138808;
}

.theme-bharatverified .btn.secondary-btn:hover {
  background-color: #138808;
  color: white;
}

.theme-bharatverified .btn.glow-btn {
  background-color: #ff9933;
  color: white;
  border: none;
}

.theme-bharatverified .section-title {
  color: #1e293b;
}

.theme-bharatverified .section-tag {
  background-color: rgba(255, 153, 51, 0.1);
  color: #ff9933;
  border: none;
}

.theme-bharatverified .hero-bg .hero-shape.shape1 {
  background-color: rgba(255, 153, 51, 0.2);
}

.theme-bharatverified .hero-bg .hero-shape.shape2 {
  background-color: rgba(19, 136, 8, 0.2);
}

.theme-bharatverified .hero-bg .hero-shape.shape3 {
  background-color: rgba(0, 0, 128, 0.1);
}

.theme-bharatverified .about {
  background-color: #f5f7fa;
}

.theme-bharatverified .products {
  background-color: #ffffff;
}

.theme-bharatverified .solution-card,
.theme-bharatverified .product-card,
.theme-bharatverified .testimonial,
.theme-bharatverified .contact-card,
.theme-bharatverified .contact-form-container {
  background-color: #f5f7fa;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.theme-bharatverified .solution-card:hover,
.theme-bharatverified .product-card:hover,
.theme-bharatverified .testimonial:hover,
.theme-bharatverified .contact-card:hover {
  border-color: #138808;
  transform: translateY(-5px);
}

.theme-bharatverified .solution-icon,
.theme-bharatverified .contact-icon {
  color: #ff9933;
}

.theme-bharatverified .solution-features li::before {
  color: #138808;
}

.theme-bharatverified .card-hover {
  color: #138808;
}

.theme-bharatverified .stat-circle {
  background-color: #ff9933;
  color: white;
}

.theme-bharatverified footer {
  background-color: #1e293b;
}

.theme-bharatverified .footer-column h3::after {
  background-color: #ff9933;
}

.theme-bharatverified .social-links a:hover {
  background-color: #ff9933;
}

/* Day Theme Specific Styles */
.theme-day {
  background-color: #f8fafc;
}

.theme-day .hero-bg .hero-shape.shape1 {
  background-color: rgba(59, 130, 246, 0.2);
}

.theme-day .hero-bg .hero-shape.shape2 {
  background-color: rgba(14, 165, 233, 0.2);
}

.theme-day .hero-bg .hero-shape.shape3 {
  background-color: rgba(139, 92, 246, 0.2);
}

.theme-day .about {
  background-color: #f1f5f9;
}

.theme-day .products {
  background-color: #f8fafc;
}

/* Saffron Theme Specific Styles */
.theme-saffron .hero-bg .hero-shape.shape1 {
  background-color: rgba(255, 153, 51, 0.3);
}

.theme-saffron .hero-bg .hero-shape.shape2 {
  background-color: rgba(255, 119, 34, 0.2);
}

.theme-saffron .hero-bg .hero-shape.shape3 {
  background-color: rgba(255, 85, 0, 0.2);
}

.theme-saffron .about {
  background-color: #1a0d00;
}

.theme-saffron .products {
  background-color: #0d0600;
}

/* White Theme Specific Styles */
.theme-white {
  background-color: #ffffff;
}

.theme-white header {
  background-color: var(--glassBg);
  box-shadow: var(--glassShadow);
}

.theme-white .hero-bg .hero-shape.shape1 {
  background-color: rgba(0, 0, 128, 0.2);
}

.theme-white .hero-bg .hero-shape.shape2 {
  background-color: rgba(0, 0, 255, 0.1);
}

.theme-white .hero-bg .hero-shape.shape3 {
  background-color: rgba(65, 105, 225, 0.15);
}

.theme-white .about {
  background-color: #f5f5ff;
}

.theme-white .products {
  background-color: #ffffff;
}

/* Green Theme Specific Styles */
.theme-green .hero-bg .hero-shape.shape1 {
  background-color: rgba(19, 136, 8, 0.3);
}

.theme-green .hero-bg .hero-shape.shape2 {
  background-color: rgba(13, 110, 13, 0.2);
}

.theme-green .hero-bg .hero-shape.shape3 {
  background-color: rgba(80, 200, 120, 0.2);
}

.theme-green .about {
  background-color: #0a1a0a;
}

.theme-green .products {
  background-color: #050f05;
}
