/* Common Base Styles for MV Shetty Landing */
.hm-sjcl-landing {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
/* 
.hm-sjcl-landing * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

.hm-sjcl-landing html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.hm-sjcl-landing .mv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Common Button Styles */
.hm-sjcl-landing .mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.hm-sjcl-landing .mv-btn-primary {
  background: #2563eb;
  color: white;
}

.hm-sjcl-landing .mv-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.hm-sjcl-landing .mv-btn-outline {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.hm-sjcl-landing .mv-btn-outline:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.hm-sjcl-landing .mv-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.hm-sjcl-landing .mv-btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.hm-sjcl-landing .mv-btn-full {
  width: 100%;
  justify-content: center;
}

/* Common Section Styles */
.hm-sjcl-landing section {
  padding: 5rem 0;
  width: 100%;
  overflow: hidden;
}

.hm-sjcl-landing .mv-section-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}

.hm-sjcl-landing .mv-section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.hm-sjcl-landing .mv-section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Common Scrollable Sections */
.hm-sjcl-landing .mv-scrollable-section {
  position: relative;
  width: 100%;
}

.hm-sjcl-landing .mv-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hm-sjcl-landing .mv-scroll-btn:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
  transform: translateY(-50%) scale(1.1);
}

.hm-sjcl-landing .mv-scroll-btn-left {
  left: -25px;
}

.hm-sjcl-landing .mv-scroll-btn-right {
  right: -25px;
}

.hm-sjcl-landing .mv-scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.hm-sjcl-landing .mv-scroll-btn:disabled:hover {
  background: white;
  color: #6b7280;
  border-color: #e5e7eb;
}

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

/* Mobile Responsive Common Styles */
@media (max-width: 768px) {
  .hm-sjcl-landing .mv-container {
    padding: 0 1rem;
  }

  .hm-sjcl-landing .mv-section-header h2 {
    font-size: 1.875rem;
  }

  .hm-sjcl-landing .mv-section-header p {
    font-size: 1rem;
  }

  .hm-sjcl-landing section {
    padding: 3rem 0;
  }

  .hm-sjcl-landing .mv-scroll-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hm-sjcl-landing .mv-section-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 360px) {
  .hm-sjcl-landing .mv-container {
    padding: 0 0.75rem;
  }

  .hm-sjcl-landing .mv-section-header h2 {
    font-size: 1.5rem;
  }
}
