/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@500;700&display=swap");

:root {
  --brand-color: #e20074;
  --brand-color-hover: #ff3399;
}

/* Base Styling */
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  background: #fff;
  padding-top: 110px; /* account for fixed top-bar + navbar */
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}
section {
  padding: 60px 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Adjust to your sticky menu */
}

/* Top Bar */
.top-bar {
  background-color: var(--brand-color);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  font-size: 0.95rem;
}

/* Navbar */
.custom-navbar {
  background-color: #fff !important;
  position: fixed;
  top: 40px; /* sits under the top bar height */
  left: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

/* Navbar Links */
.custom-navbar .nav-link {
  color: #333 !important;
  margin: 0 12px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease-in-out;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--brand-color) !important;
}
.custom-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-color);
  border-radius: 2px;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(226, 0, 116, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Buttons */
.btn-main {
  background: var(--brand-color);
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.btn-main:hover {
  background: var(--brand-color-hover);
  color: #fff;
}
.btn-light {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.btn-light:hover {
  background-color: #fff !important;
  color: var(--brand-color) !important;
  transform: scale(1.05);
}

/* Cards */
.card {
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}
.row.g-4 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Icons in Circles */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(226, 0, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--brand-color);
  margin-bottom: 15px;
}


