/* Bhojal Mobile Apps - Cherry Blossom Theme */

:root {
  --primary: #2d232e;
  --accent: #f7b6c2;
  --bg: #fff8fa;
  --bg-secondary: #fbe9ef;
  --text: #2d232e;
  --text-secondary: #6d5a6e;
  --shadow: 0 4px 24px 0 rgba(247, 182, 194, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="dark"] {
  --primary: #fbe9ef;
  --accent: #c23a5c;
  --bg: #1a151b;
  --bg-secondary: #2d232e;
  --text: #fbe9ef;
  --text-secondary: #f7b6c2;
  --shadow: 0 4px 24px 0 rgba(194, 58, 92, 0.1);
}

.why-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.why-svg {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.why-blob {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.why-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--bg-secondary);
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
  padding: 1.3rem 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(247, 182, 194, 0.18);
}
.why-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 0.1rem;
}
.why-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.why-card strong {
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0.2rem 0 0 0;
  line-height: 1.5;
}
@media (min-width: 700px) {
  .why-flex {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .why-svg {
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .why-content {
    align-items: flex-start;
  }
  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: "Josefin Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar {
  background: var(--bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--transition);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.logo span {
  font-weight: 400;
  color: var(--accent);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-links a:hover:after {
  width: 100%;
}
.theme-toggle {
  background: var(--bg-secondary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  margin-left: 1rem;
}
.toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
  background: none;
  position: relative;
}
[data-theme="dark"] .toggle-icon {
  /* Sun/Moon icon color swap */
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero-text p {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
}
.btn {
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--accent);
}
.btn-secondary {
  background: var(--primary);
  color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
}
.hero-svg {
  align-self: center;
  margin-top: 1rem;
}
.blob-svg {
  width: 220px;
  height: 220px;
  display: block;
}
.wave {
  width: 100%;
  height: 60px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section {
  padding: 3.5rem 0 2.5rem 0;
}
.section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.about-svg {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.about-blob {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.about-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}
.about-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.about-highlights li svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(247, 182, 194, 0.1));
  transition: filter var(--transition);
}
.about-highlights li:hover {
  color: var(--accent);
}
.about-highlights li:hover svg ellipse {
  filter: brightness(1.1);
}
@media (min-width: 700px) {
  .about-flex {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .about-svg {
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .about-content {
    align-items: flex-start;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.new-service-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.new-service-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 10px 36px 0 rgba(247, 182, 194, 0.2);
}
.service-bg-svg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}
.service-bg-svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.service-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.service-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}
.new-service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--primary);
  z-index: 1;
}
.new-service-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  z-index: 1;
}
@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .new-service-card {
    padding: 2.5rem 1.2rem 2rem 1.2rem;
  }
}
.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
.why-list li {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}
.why-list li:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.05);
}

.contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.contact-svg {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.contact-blob {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.contact-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}
.contact-card {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  font-size: 1.08rem;
  color: var(--primary);
}
.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 0.1rem;
}
.contact-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.contact-row strong {
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact-row a {
  color: var(--accent);
  text-decoration: underline;
  transition: color var(--transition);
}
.contact-row a:hover {
  color: var(--primary);
}
@media (min-width: 700px) {
  .contact-flex {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .contact-svg {
    margin-bottom: 0;
    justify-content: flex-end;
  }
  .contact-content {
    align-items: flex-start;
  }
  .contact-card {
    padding: 2.5rem 2.5rem;
  }
}

.footer {
  background: var(--bg-secondary);
  padding: 2.2rem 0 0.5rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  position: relative;
  text-align: center;
}
.new-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.2rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.footer-logo span {
  font-weight: 400;
  color: var(--accent);
}
.footer-svg-wrap {
  width: 180px;
  margin: 0.2rem 0 0.7rem 0;
}
.footer-blob {
  width: 100%;
  height: 32px;
  display: block;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-links {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.2rem;
}
.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  transition: background var(--transition);
}
.footer-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  transition: filter var(--transition);
}
.footer-icon:hover svg ellipse,
.footer-icon:focus svg ellipse {
  filter: brightness(1.2);
}
@media (min-width: 700px) {
  .new-footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2.5rem;
  }
  .footer-brand {
    margin-bottom: 0;
  }
  .footer-meta {
    align-items: flex-end;
  }
}
/* Animations */
.fade-section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Responsive Styles */
@media (min-width: 600px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-text {
    flex: 1 1 60%;
  }
  .hero-svg {
    flex: 1 1 40%;
    margin-top: 0;
  }
  .services .service-cards {
    flex-direction: row;
    gap: 2rem;
  }
  .service-card {
    flex: 1 1 0;
  }
  .contact-info {
    flex-direction: row;
    gap: 4rem;
  }
}
@media (min-width: 900px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
  .section h2 {
    font-size: 2.4rem;
  }
}
