:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  --primary: 199 89% 48%;
  /* #00b4d8 / #0099cc */
  --primary-foreground: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222 47% 11%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222 47% 11%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 199 89% 48%;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.875rem;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid hsl(var(--border));
  background: white;
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--secondary));
}

.badge {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: hsl(var(--primary) / 0.2);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.brand-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #475569;
  min-width: 140px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.brand-box:hover {
  background: white;
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Process Section Specifics */
.process-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 1rem;
}

.process-container::before {
  content: '';
  position: absolute;
  top: 32px;
  /* Center of the icon box */
  left: 50px;
  right: 50px;
  height: 1px;
  background: hsl(var(--primary) / 0.2);
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon-box {
  width: 64px;
  height: 64px;
  background: hsl(200, 50%, 95%);
  border: 1px solid hsl(200, 50%, 90%);
  color: hsl(var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-icon-box {
  background: hsl(var(--primary) / 0.1);
  transform: translateY(-5px);
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.process-step p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 235px;
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .process-container::before {
    display: none;
  }

  .process-step p {
    max-width: 100%;
  }
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 2rem 0;
}

.marquee-content {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
}

/* Navigation Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0f172a;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    display: none !important;
  }

  nav.active {
    display: flex !important;
    position: fixed;
    top: 3rem; /* Match header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 3rem);
    background: white;
    flex-direction: column;
    padding: 2rem;
    z-index: 99;
    gap: 1.5rem !important;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-link {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
  }

  .btn-get-support {
    width: 100%;
    margin-top: 1rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .section-padding {
    padding: 4rem 0;
  }
}

/* Responsiveness Match */
@media (max-width: 768px) {
  header .container {
    flex-direction: row !important;
    /* Keep logo and hamburger horizontal */
    height: 5rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.25rem !important;
    line-height: 1.2;
    text-align: center;
  }

  p {
    text-align: left;
    font-size: 0.95rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .card {
    padding: 1.25rem;
    transform: none !important; /* Disable hover lifts on mobile for better tap feel */
  }
}

@media (max-width: 480px) {
 /* .stats-grid {
    grid-template-columns: 1fr !important;
  }
*/
  h1 {
    font-size: 2rem !important;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Base Animations (Updated to trigger with .active) */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.animate-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  min-width: 240px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Invisible bridge to prevent gap flickering */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
}

.dropdown-content a {
  color: #475569;
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f8fafc;
  color: hsl(var(--primary));
  padding-left: 1.5rem;
}

/* Submenu Arrow/Indicator */
.dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.8em;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: #f8fafc;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    transform: none;
  }
}

/* Navigation */
nav a {
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: hsl(var(--primary));
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

/* Footer */
footer {
  background-color: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-links h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: #94a3b8;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

.cta-section {
  width: 100%;
  padding: 80px 20px;
  background: #fbfbfc;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.cta-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0284c7;
  color: #fff;
}

.btn-primary:hover {
  background: #0369a1;
}

.btn-outline {
  background: #f5f5f5;
  color: #000;
  border: 1px solid #ddd;
}

.btn-outline:hover {
  background: #eaeaea;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item span {
  background: #eaf6ff;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px #eee;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form .row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #0284c7;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form .row {
    flex-direction: column;
  }
}

.form-card {
  max-width: 520px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e6eaf0;
  background: #fff;
}

.form-card h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  width: 100%;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #5f6b7a;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e1e6ed;
  background: #f7f9fb;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  height: 110px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8b95a5;
}

.send-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  background: #0284c7;
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.send-btn:hover {
  background: #0369a1;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .form-card {
    margin: 20px;
    padding: 20px;
  }
}

.topbar {
  background: #deeff8;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #64748b;
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 9px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 16px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar-right span {
  color: #0284c7;
  font-weight: 700;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .email {
    display: none;   /* Hide email on mobile */
  }

  .topbar-container {
    font-size: 14px;
  }
}

.footer-bottom{
  border-top: 1px solid hsl(var(--border) / 0.5);
  padding-top: 2rem;
  color: #576375;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* Mobile responsive */
@media (max-width: 768px){
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
}
.brand-slider {
  overflow: hidden;
  position: relative;
}

.brand-track {
  display: flex;
    gap: 2rem;  
  width: max-content;
  animation: scroll 20s linear infinite;
}

.brand-box {
  min-width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  padding: 10px;
}

.brand-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.main_container {
  width: 100%;
  padding: 80px 20px;
  background: #f8fafc;
}

.inner_contant {
  max-width: 1100px;
  margin: 0 auto;
}

.inner_contant h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.inner_contant h6 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inner_contant p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main_container {
    padding: 50px 15px;
  }

  .inner_contant h2 {
    font-size: 2rem;
  }

  .inner_contant h6 {
    font-size: 1rem;
  }

  .inner_contant p {
    font-size: 16px;
  }
}
.repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Tablet */
@media (max-width: 992px) {
  .repair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .repair-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SLIDER BUTTONS ===== */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.6);
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  z-index: 20;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.9);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}
@media only screen and (max-width: 768px) {
    .next {
        right: 20px;
        margin-top: 67px;
    }
}
@media only screen and (max-width: 768px) {
    .prev {
        left: 20px;
        margin-top: 67px;
    }
}

.home-badge {
    background: hsl(var(--primary) / 0.1);
    color: hsl(207.62deg 86.32% 54.12%);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;

}

/* Mobile view adjustments */
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr !important; /* single column */
    gap: 2rem !important;
  }

  .card {
    display: flex !important;
    flex-direction: column !important; /* stack icon above text */
    align-items: center !important; /* center horizontally */
    text-align: center !important; /* center all text inside card */
  }

  .card h3,
  .card p {
    text-align: center !important; /* force headings and paragraph center */
  }

  .card .icon-box {
    margin-bottom: 1rem !important; /* space below icon */
    display: flex !important;
    justify-content: center !important;
  }
}
.top-item.phone {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.top-item.phone a {
  text-decoration: none;
  color: #000;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .top-item.phone {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
    