:root {
  --primary-blue: #0066c3;
  --primary-pink: #ff0080;
  --dark-pink: #c2006b;
  --bg-gradient-start: #fdfbfb;
  --bg-gradient-end: #ebedee;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --text-main: #333333;
  --text-light: #666666;
  --shadow-sm: 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);
  --font-main: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, #e0f7fa 0%, #ffe6f2 100%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background blob animations for that "alive" feel */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: float 10s infinite ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: #a5d3ff;
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: #ffb3d9;
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(20px) scale(1.05);
  }
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: #0066c3 !important;
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--glass-border);
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, #0066c3, #004a8f);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 102, 195, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 195, 0.4);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.bento-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Featured / Large Items */
.bento-item.large {
  grid-column: span 2;
  background: linear-gradient(135deg, white, #fff0f7);
}

@media (max-width: 768px) {
  .bento-item.large {
    grid-column: span 1;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/* SEO Content Section */
.seo-text {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.seo-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0066c3 !important;
}

.seo-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Footer */
footer {
  background: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid #eee;
}

footer a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: bold;
}