/* Main Styles */
:root {
  --primary-color: #1fc2dc;
  --primary-dark: #17a6be;
  --primary-light: #4cd3e9;
  --gray-900: #1a202c;
  --gray-800: #2d3748;
  --gray-700: #4a5568;
  --gray-600: #718096;
  --gray-500: #a0aec0;
  --gray-400: #cbd5e0;
  --gray-300: #e2e8f0;
  --gray-200: #edf2f7;
  --gray-100: #f7fafc;
  --gray-50: #f9fafb;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #0d9488; /* teal-500 */
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.clicktoprimary{
  background-color: #0d9488; /* teal-500 */

}

.btn-primary:hover {
  background-color: #0f766e; /* teal-600 */
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: white;
  font-weight: 500;
  border: 2px solid white;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: white;
  color: #0d9488; /* teal-500 */
}

.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #0d9488; /* teal-500 */
  font-weight: 500;
  border: 2px solid #0d9488; /* teal-500 */
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.btn-primary-outline:hover {
  background-color: #0d9488; /* teal-500 */
  color: white;
}

.btn-primary-outline:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.5);
}

/* Hero Section */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.fade-in-up {
  transform: translateY(30px);
}

.fade-in-down {
  transform: translateY(-30px);
}

.fade-in-left {
  transform: translateX(30px);
}

.fade-in-right {
  transform: translateX(-30px);
}

.fade-in {
  opacity: 0;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* Back to Top Button */
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Custom Form Styles */
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 194, 220, 0.2);
}

/* Image Hover Effects */
.image-hover-zoom {
  overflow: hidden;
}

.image-hover-zoom img {
  transition: transform 0.5s ease;
}

.image-hover-zoom:hover img {
  transform: scale(1.05);
}

/* Navigation */
#header {
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}


/* Alpine.js Cloak - Prevents FOUC (Flash of Unstyled Content) */
[x-cloak] {
  display: none !important;
}

/* Optimize menu transitions */
.menu-transition {
  transition: all 0.2s ease-out;
}