/* Custom CSS for QuickSense */
:root {
  --primary-color: #2ecc40;
  --primary-dark: #1b9930;
  --secondary-color: #39d87a;
  --accent-color: #0074d9;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
.py-5 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
}
.btn-primary{
  background-color: #000;
  border: 1px solid #000;
  transition: var(--transition);
}
.btn-primary:hover{
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
/* Header Styles */
.site-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-container {
  position: relative;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  animation: logoFloat 3s ease-in-out infinite;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--dark-color) !important;
}

.search-container {
  position: relative;
}

.search-box {
  position: relative;
  width: 250px;
}

.search-box input {
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid #e9ecef;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 204, 64, 0.25);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}
.site-header img {
    width: 200px;
    height: 70px;
    object-fit: cover;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(46, 204, 64, 0.3));
  z-index: -1;
}

#networkCanvas {
  z-index: -1;
  opacity: 0.3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow-text {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
  padding: 4rem 0;
}

.partner-logo {
  padding: 1rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
  max-height: 60px;
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  opacity: 1;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #e9ecef;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-badge.new {
  background: var(--accent-color);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.product-description {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-price {
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* ROI Section */
.roi-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.roi-calculator {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.roi-results {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.result-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 20px 40px rgba(46, 204, 64, 0.3);
}

.result-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.savings-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.currency {
  font-size: 2rem;
  opacity: 0.8;
}

.period {
  font-size: 1.2rem;
  opacity: 0.8;
}

.yearly-savings {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.payback-period {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Added Case Studies Section Styles */
.case-studies-section {
  padding: 5rem 0;
}

.case-study-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(46, 204, 64, 0.2);
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.case-study-description {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.case-study-kpis {
  margin-bottom: 1rem;
}

.kpi-badge {
  display: inline-block;
  background: rgba(46, 204, 64, 0.1);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.case-study-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.case-study-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Added Technology Stack Section Styles */
.technology-stack-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
  color: white;
  position: relative;
  overflow: hidden;
}

.technology-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(46, 204, 64, 0.1), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(57, 216, 122, 0.1), transparent 50%);
  z-index: 1;
}

.technology-stack-section .container {
  position: relative;
  z-index: 2;
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.tech-icon.connectivity {
  background: linear-gradient(135deg, #3498db, #2980b9);
}
.tech-icon.protocols {
  background: linear-gradient(135deg, #2ecc40, #27ae60);
}
.tech-icon.security {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.tech-icon.cloud {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.tech-icon.hardware {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.tech-icon.data {
  background: linear-gradient(135deg, #1abc9c, #16a085);
}

.tech-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.tech-badge:hover {
  background: var(--primary-color);
  color: white;
}

.tech-stat {
  color: white;
}

.tech-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.tech-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Added Testimonials Section Styles */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-container {
  position: relative;
}

.testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.testimonial-card {
  min-width: 320px;
  background: linear-gradient(135deg, white, #f8f9fa);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(46, 204, 64, 0.2);
  scroll-snap-align: start;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-quote i {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-quote p {
  color: var(--dark-color);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.9rem;
}

.testimonial-role {
  color: #7f8c8d;
  font-size: 0.8rem;
}

/* Added FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
}

.accordion-item {
  border: 1px solid rgba(46, 204, 64, 0.2);
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-button {
  background: white;
  color: var(--dark-color);
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: rgba(46, 204, 64, 0.1);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 204, 64, 0.25);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--dark-color);
  background: white;
}

/* Added Newsletter Section Styles */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(46, 204, 64, 0.1), rgba(57, 216, 122, 0.1));
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(46, 204, 64, 0.2);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.newsletter-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

.newsletter-form .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border: none;
}

/* CTA Section */
.cta-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 20px 40px rgba(46, 204, 64, 0.3);
}

/* Footer */
.site-footer {
  background: var(--dark-color) !important;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    transition: var(--transition);
    color: #fff !important;
}

.footer-links a:hover {
  color: var(--primary-color) !important;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .search-box {
    width: 200px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

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

  .testimonials-scroll {
    gap: 1rem;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .newsletter-card {
    padding: 2rem;
  }

  .newsletter-form .input-group {
    flex-direction: column;
    border-radius: var(--border-radius);
  }

  .newsletter-form .form-control {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .newsletter-form .btn {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .search-container {
    display: none;
  }

  .savings-amount {
    font-size: 2rem;
  }

  .result-card {
    padding: 2rem;
  }

  .tech-card {
    padding: 1.5rem;
  }

  .tech-stat-number {
    font-size: 2rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}


/* product category css */
/* Category Slider Custom Styles */
.category_progess_outer {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 4rem auto 0rem;
    align-items: center;
}
.category_progess_outer button:hover {
    background: #000;
    color: #fff;
}
.category_progess_outer button {
    border: 1px solid #000000;
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: transparent;
    transition: 0.4s all;
}
.category-progress {
    width: 80%;
    height: 8px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.category-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s;
}
.category-card{
  text-align: center;
}
.category-card p{
  margin: 12px 0px 0px 0px;
  font-size: 18px;
  color: #666;
}
.category-card img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin: auto;
    background: #0000000a;
    border-radius: 50%;
    padding: 24px;
}
.category-card img:hover {
  filter: grayscale(0%);
}

.footer-brand img {
    width: 55%;
    filter: brightness(0) invert(1);
}