/* Modern 2025 Hardware Startup Design Updates for LocShark Sections */

/* Enhanced CSS Variables for Navy Gradient Theme */
:root {
  --navy-primary: #003171;
  --navy-secondary: #1e3a8a;
  --navy-light: #3b82f6;
  --navy-gradient: linear-gradient(135deg, #003171 0%, #1e3a8a 50%, #3b82f6 100%);
  --navy-gradient-subtle: linear-gradient(135deg, rgba(0, 49, 113, 0.05) 0%, rgba(30, 58, 138, 0.1) 100%);
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

/* About Us Section - Modern Clean Design */
.section-29 {
  padding: 4rem 2rem;
  background: var(--navy-gradient-subtle);
  position: relative;
  overflow: hidden;
}

.section-29::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy-gradient);
}

.section-29 .secc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-29 .heading-23 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.section-29 .heading-23::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--navy-gradient);
  border-radius: 2px;
}

.section-29 .paragraph-17.dfsdg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* How It Works Section - Modern Grid Layout */
.section_features {
  padding: 5rem 2rem;
  background: var(--white);
  position: relative;
}

.section_features .heading-19.mobile.headersssc {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: capitalize;
}

.features_component {
  grid-row-gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.features_focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 49, 113, 0.1);
  transition: all 0.3s ease;
}

.features_focus-grid:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.features_focus-grid:nth-child(even) {
  background: var(--navy-gradient-subtle);
}

.features_focus-grid:nth-child(even) .features_content-wrapper {
  order: 2;
}

.features_focus-grid:nth-child(even) .features_image-wrapper {
  order: 1;
}

.features_content-wrapper {
  padding: 1rem 0;
}

.text-weight-semibold.text-color-blue {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 49, 113, 0.1);
  border-radius: 8px;
}

.features_content-wrapper .paragraph-9,
.features_content-wrapper .paragraph-8,
.features_content-wrapper .paragraph-7 {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.features_image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.features_image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Who We Support Section - Clean Minimal Design */
.section-28.dark {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 3rem 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 49, 113, 0.1);
}

.section-28.dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy-gradient);
  pointer-events: none;
}

.section-28 .container-6.mw-800 {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-28 .h2.center.jk {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-28 .paragraph-17 {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 0.75rem;
}

.grid_logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}

.logo-code.grayscale {
  background: var(--white);
  border: 1px solid rgba(0, 49, 113, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
  flex: 0 1 auto;
  box-shadow: var(--shadow-sm);
}

.logo-code.grayscale::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 49, 113, 0.05), transparent);
  transition: left 0.4s ease;
}

.logo-code.grayscale:hover::before {
  left: 100%;
}

.logo-code.grayscale:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
}

.logo-code.grayscale img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(1352%) hue-rotate(215deg) brightness(91%) contrast(101%);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-code.grayscale:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(215deg) brightness(102%) contrast(97%);
}

.logo-code.grayscale h5 {
  color: var(--navy-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .features_focus-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .features_focus-grid:last-child {
    margin-bottom: 0;
  }
  
  .features_component {
    grid-row-gap: 3rem;
  }
  
  .features_focus-grid:nth-child(even) .features_content-wrapper,
  .features_focus-grid:nth-child(even) .features_image-wrapper {
    order: initial;
  }
  
  .section-29 {
    padding: 2.5rem 1rem;
  }
  
  .section_features {
    padding: 3rem 1rem;
  }
  
  .section-28.dark {
    padding: 2rem 1rem;
    margin: 1rem auto;
  }
  
  .team-slider {
    padding: 3rem 1rem;
  }
  
  .team-slider .heading-23 {
    font-size: 2rem;
  }
  
  .team-member-image-two {
    height: 160px;
  }
  
  .team-block-info {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 3rem 1rem;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .grid_logos {
    gap: 0.5rem;
  }
  
  .section-28.dark {
    padding: 2.5rem 1rem;
    margin: 1.5rem auto;
  }
  
  .logo-code.grayscale {
    min-width: 140px;
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }
  
  .logo-code.grayscale img {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .section-29 {
    padding: 2rem 1rem;
  }
  
  .section_features {
    padding: 2.5rem 1rem;
  }
  
  .section-29 .heading-23,
  .section_features .heading-19.mobile.headersssc,
  .section-28 .h2.center.jk {
    font-size: 2rem;
  }
  
  .features_focus-grid {
    padding: 2rem 1rem;
    margin-bottom: 4rem;
  }
  
  .features_focus-grid:last-child {
    margin-bottom: 0;
  }
  
  .features_component {
    grid-row-gap: 4rem;
  }
  
  .section_features {
    padding: 4rem 1rem;
  }
  
  .features_content-wrapper {
    padding: 1.5rem 0;
  }
  
  .logo-code.grayscale {
    padding: 1.5rem 1rem;
  }
  
  .grid_logos {
    gap: 0.375rem;
    justify-content: center;
  }
  
  .section-28.dark {
    padding: 1.5rem 1rem;
    margin: 0.5rem auto;
  }
  
  .section-28 .h2.center.jk {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .section-28 .paragraph-17 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .logo-code.grayscale {
    min-width: 110px;
    padding: 0.625rem 0.875rem;
    gap: 0.375rem;
  }
  
  .logo-code.grayscale img {
    width: 20px;
    height: 20px;
  }
  
  .logo-code.grayscale h5 {
    font-size: 0.6875rem;
  }
  
  .team-slider .heading-23,
  .contact-form .no-bottom-margins.fsdfsf.pree {
    font-size: 1.75rem;
  }
  
  .team-slider {
    padding: 2rem 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .team-member-image-two {
    height: 140px;
  }
  
  .team-block-info {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .team-member-name-two {
    font-size: 0.875rem;
  }
  
  .text-link-arrow {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }
  
  .team-slide-wrapper {
    margin: 0 0.5rem;
  }
}

/* Remove excessive padding classes */
.padding-bottom.padding-huge,
.padding-bottom.padding-xlarge,
.padding-bottom.padding-medium,
.padding-bottom.padding-small,
.padding-bottom.padding-custom1 {
  display: none;
}

/* Blog Section - Modern Clean Design */
.team-slider {
  background: var(--white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.team-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy-gradient);
}

.team-slider .container-7 {
  max-width: 1200px;
  margin: 0 auto;
}

.team-slider .heading-23 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.team-slider .heading-23::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--navy-light);
  border-radius: 1px;
}

.team-slider-wrapper {
  background: transparent;
  margin-top: 2.5rem;
}

.team-slide-wrapper {
  margin: 0 0.75rem;
}

.team-block {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 49, 113, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.team-member-image-two {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-block:hover .team-member-image-two {
  transform: scale(1.03);
}

.team-block-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.team-member-name-two {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-member-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy-primary);
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
  padding: 0.5rem 0.75rem;
  background: var(--gray-50);
  border-radius: 6px;
  border: 1px solid rgba(0, 49, 113, 0.1);
}

.text-link-arrow:hover {
  color: var(--white);
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  transform: translateY(-1px);
}

.text-link-arrow .arrow-embed {
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.text-link-arrow:hover .arrow-embed {
  transform: translateX(2px);
  opacity: 1;
}

.text-link-arrow .arrow-embed svg {
  width: 14px;
  height: 14px;
}

.team-slider-nav {
  margin-top: 2.5rem;
  text-align: center;
}

.team-slider-arrow {
  background: var(--white);
  border: 1px solid rgba(0, 49, 113, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.team-slider-arrow:hover {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  box-shadow: var(--shadow-md);
}

.team-slider-arrow:hover .w-icon-slider-left,
.team-slider-arrow:hover .w-icon-slider-right {
  color: var(--white);
}

/* Contact Form Section - Modern Design */
.contact-form {
  background: var(--navy-gradient);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.contact-form .w-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form .no-bottom-margins.fsdfsf.pree {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: lowercase;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form-grid > div:nth-child(n+5) {
  grid-column: 1 / -1;
}

.contact-form-grid label {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.contact-form-grid .blk.w-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-grid .blk.w-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-grid .blk.w-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.submit-button-5.w-button {
  background: var(--white);
  color: var(--navy-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  min-width: 150px;
}

.submit-button-5.w-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.w-form-done,
.w-form-fail {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: var(--white);
  margin-top: 1rem;
}

.w-form-done {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.w-form-fail {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

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

.features_focus-grid[style*="opacity:0"] {
  animation: fadeInUp 0.6s ease forwards;
}

.wrapper_center-text[style*="opacity:0"] {
  animation: fadeInUp 0.6s ease forwards;
}
