/* landing.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #4b6bfb;
  --secondary-color: #1a202c;
  --bg-color: #f7f9fc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--secondary-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header Section */
.hero {
  position: relative;
  background-color: var(--primary-color);
  color: white;
  padding: 60px 20px 120px;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Wave shape divider */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom .shape-fill {
  fill: var(--bg-color);
}

/* Main Container */
.container {
  max-width: 1000px;
  margin: -60px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* White box container for grid */
.tools-container {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.tools-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* Grid Layout */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

/* Tool Card */
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tool-card .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.tool-card .icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.tool-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .tools-container {
    padding: 24px;
    margin-top: -30px;
  }
  
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

.developer-name {
  margin-top: 20px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.developer-name strong {
  color: #ffd700;
  font-weight: 700;
}
