:root {
  --bg-color: #f0f8ff; /* Soft blue */
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --brand-blue-alt-main: #0d6efd; /* Blue */
  --brand-yellow-alt-main: #ffc107; /* Yellow */
  --brand-yellow-alt: #ffca2c; /* Bright Yellow */
  --brand-blue-alt: #87cefa; /* Light Blue */
  --nav-link: #4b5563;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
}

.btn-primary-custom {
  background-color: var(--brand-blue-alt-main);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #e67560;
  color: white;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  background-color: var(--brand-blue-alt-main);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: white !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
}

.navbar .btn-primary-custom {
  background-color: white;
  color: var(--brand-blue-alt-main);
}

.navbar .btn-primary-custom:hover {
  background-color: var(--brand-yellow-alt);
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  padding: 60px 0 100px;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  top: 10%;
  right: 0;
  width: 90%;
  height: 90%;
  background-color: var(--brand-blue-alt);
  border-radius: 50% 50% 10% 50%;
  z-index: -1;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  border-radius: 30px;
  /* if it's not a transparent png */
  object-fit: cover;
  mix-blend-mode: multiply;
  /* Helps blend white background images a bit if needed, but ideally transparent PNGs */
}

/* Shop by Need / Services Cards */
.pill-card {
  border-radius: 100px;
  padding: 30px 20px 20px;
  text-align: center;
  border: none;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-card:hover {
  transform: translateY(-10px);
}

.pill-card .icon-wrapper {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: transparent;
}

.pill-card .icon-wrapper i {
  font-size: 1.2rem;
}

.pill-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pill-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: auto;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.bg-blue-alt-main {
  background-color: var(--brand-blue-alt-main);
}

.bg-yellow-alt-main {
  background-color: var(--brand-yellow-alt-main);
}

.bg-yellow-alt {
  background-color: var(--brand-yellow-alt);
}

.bg-blue-alt {
  background-color: var(--brand-blue-alt);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
}

/* Meet Our Experts */
.expert-card {
  text-align: center;
}

.expert-img-wrapper {
  width: 220px;
  height: 280px;
  margin: 0 auto 20px;
  border-radius: 110px 110px 20px 20px;
  overflow: hidden;
  padding-top: 20px;
  transition: transform 0.3s;
}

.expert-card:hover .expert-img-wrapper {
  transform: scale(1.03);
}

.expert-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.expert-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.expert-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--brand-blue-alt-main);
  padding: 60px 0 20px;
  color: #fff;
  margin-top: 80px;
}

.footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-newsletter input {
  border-radius: 50px;
  padding: 12px 20px;
  border: none;
}

.footer-newsletter button {
  border-radius: 50px;
  padding: 12px 24px;
  background-color: var(--text-dark);
  color: white;
  border: none;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Pages generic spacing */
.page-header {
  padding: 80px 0;
  background-color: var(--brand-yellow-alt-main);
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

/* Utility to ensure consistent image aspect ratios if needed */
.object-fit-cover {
  object-fit: cover;
}

/* Scrolling Marquee */
.marquee-wrapper {
  background-color: var(--brand-blue-alt-main);
  color: rgb(255, 255, 255);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-content {
  display: inline-block;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
  padding: 0 20px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Picture Cards */
.picture-card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.picture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.picture-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.picture-card:hover img {
  transform: scale(1.05);
}

.picture-card-body {
  padding: 25px;
  text-align: center;
}

.bg-light-custom {
  background-color: #fdfaf4;
}