:root {
  /* Colors */
  --primary: 215 60% 35%; /* #23508e */
  --primary-foreground: 0 0% 100%;
  
  --secondary: 175 45% 45%; /* #3fafa6 */
  --secondary-foreground: 0 0% 100%;

  --accent: 15 85% 60%; /* #f27a42 */
  --accent-foreground: 0 0% 100%;
  
  --background: 210 20% 99%;
  --foreground: 215 30% 20%;
  
  --muted: 210 20% 96%;
  --muted-foreground: 215 20% 45%;

  --border: 215 20% 90%;
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing & Radius */
  --radius-md: 0.5rem;
  --radius-lg: 0.8rem;
  --radius-full: 9999px;
  --web-radius: 30px;
  
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

body {
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: hsl(var(--primary));
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--web-radius);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 14px 0 hsla(var(--primary), 0.3);
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: hsla(var(--primary), 0.2);
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsla(var(--primary), 0.05);
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 4px 14px 0 hsla(var(--accent), 0.3);
}

.btn-accent:hover {
  background-color: hsl(var(--accent) / 0.9);
}

.text-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.2s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(var(--primary), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  /* width: 1.5rem; */
  /* height: 1.5rem; */
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
  color: hsl(var(--primary));
}

.logo-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-sans);
  font-weight: 500;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: hsl(var(--primary));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: hsl(var(--accent));
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(var(--foreground));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsl(var(--background) / 0.30), hsl(var(--background) / 0.2));
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: hsla(var(--primary), 0.1);
  border: 1px solid hsla(var(--primary), 0.2);
  color: hsl(var(--primary));
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  position: relative;
}

.pulsing-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  opacity: 0.4;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  font-family: var(--font-sans);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.feature-item svg {
  color: hsl(var(--secondary));
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeLeft 0.8s ease-out 0.2s forwards;
}

.image-card {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 3px solid white;
}

.floating-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid hsl(var(--border));
}

.stat-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #dcfce7;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Features Grid */
.features-section {
  background: var(--off);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--web-radius);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-color: hsla(var(--primary), 0.2);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  background-color: hsla(var(--primary), 0.05);
  border-radius: var(--web-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background-color: hsl(var(--primary));
  color: white;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.card-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background-color: hsl(var(--primary));
  /* background-color: #3184ff; */
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--web-radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #e2e8f0;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 1.5rem 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  background-color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link:hover {
  background-color: hsl(var(--primary));
  color: white;
}

.footer-heading {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.75rem;
}

/* Contact Form */
.form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--web-radius);
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsla(var(--primary), 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  font-size: 1.125rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    display: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}


