html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  font-size: 16px;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}
.hero, .content {
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
}
.hero {
  min-height: 100vh;
  height: auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tagline {
  font-family: sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  color: #666;
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-family: sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #000;
  margin: 0;
  text-align: center;
  font-weight: 50;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.underline-anim {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.3em;
  height: 0.08em;
  width: 0%;
  background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.15) 100%);
  border-radius: 0.04em;
  filter: blur(0.5px);
  animation: underline-grow 4s infinite cubic-bezier(0.4,0,0.2,1) alternate;
  z-index: 0;
}
.content {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
h2 {
  font-family: sans-serif;
  font-size: 1.8vw;
  font-weight: 300;
  margin-bottom: 1rem;
}
p {
  font-family: sans-serif;
  font-size: 1.2vw;
  line-height: 1.6;
  color: #333;
}
@keyframes underline-grow {
  0% {
    width: 0%;
    opacity: 0.5;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0.5;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(-45deg);
  margin-top: 8px;
  animation: arrow-bounce 1.5s infinite;
  opacity: 0.7;
}
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
    opacity: 1;
  }
}
.footer {
  width: 100vw;
  background: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  font-family: sans-serif;
  font-size: 1vw;
  color: #888;
  box-sizing: border-box;
}

/* Social Media Buttons */
.btn-floating {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.btn-outline-dark {
  color: #000;
  border-color: #000;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.footer .btn-floating {
  margin: 0 0.3rem;
}

.footer p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .footer .btn-floating {
    width: 32px;
    height: 32px;
    margin: 0 0.2rem;
  }
  
  .footer p {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .footer {
    font-size: 2.5vw;
  }
}
.content-alt {
  min-height: 60vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: #fff;
}
.section-divider {
  border: none;
  border-top: .35px solid rgba(0,0,0,0.05);
  margin: 0;
  width: 100vw;
  box-sizing: border-box;
}
.showcase {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background-color: #fff;
  color: #000;
}
.showcase h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #000;
  word-wrap: break-word;
  text-align: left;
}
.showcase p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #333;
  text-align: left;
}
.gallery-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  position: relative;
}
.gallery-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: clamp(120px, 30vw, 300px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #eee;
  transition: box-shadow 0.2s;
}
.gallery-dots {
  position: absolute;
  bottom: clamp(5px, 2vw, 20px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}
.gallery-dot {
  width: clamp(6px, 1.5vw, 10px);
  height: clamp(6px, 1.5vw, 10px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.gallery-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}
.showcase-buttons {
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.read-more, .visit-app {
  font-family: inherit;
  font-size: clamp(0.8rem, 2vw, 1rem);
  padding: clamp(0.4rem, 2vw, 0.6rem) clamp(0.8rem, 4vw, 1.5rem);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  min-width: clamp(100px, 30vw, 120px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.read-more {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.read-more:hover {
  background-color: #f0f0f0;
  color: #000;
}
.visit-app {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.visit-app:hover {
  background-color: #333;
  color: #fff;
}
.summary {
  max-width: 500px;
  color: #444;
  font-size: 1.1rem;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .gallery-image {
    max-width: 100vw;
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-image {
    max-width: 100vw;
    min-height: 120px;
  }
  .showcase-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.feature-list li {
  position: relative;
  padding-left: 0.5rem;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.75rem;
  position: relative;
}
.feature-list li:before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.7rem;
  width: 1rem;
  height: 2px;
  background-color: #000;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
.stats-row {
  border-top: 1px solid rgba(0,0,0,0.05);
  flex-wrap: wrap;
}
.stat-item {
  padding: 1.5rem 0.5rem;
  margin-bottom: 1rem;
}
.stat-item h3 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: #666;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: #666;
  font-weight: 500;
}
@media (max-width: 767px) {
  .showcase h2,
  .showcase p {
    text-align: left;
  }
  
  .showcase-buttons {
    justify-content: flex-start !important;
  }
  .stat-item {
    padding: 1rem 0.25rem;
    margin-bottom: 1.5rem;
  }
  .row > .stat-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
  .stat-item h3 {
    font-size: clamp(1rem, 3.5vw, 1.8rem);
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .stats-row {
    display: flex;
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .arrow {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }
  
  .footer {
    padding: 1rem 0;
    font-size: 0.8rem;
  }
}
.btn-outline-primary {
  color: #000 !important;
  border-color: #000 !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover {
  background-color: #f0f0f0 !important;
  color: #000 !important;
}
.btn-primary {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #333 !important;
} 
/* SEO content styling */
.seo-content {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.seo-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.seo-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.seo-content p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
} 