/* ============================================================
   DOLLARVIZZ — EXACT BLUE & WHITE THEME (Reference Match)
   All !important to override old CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== GLOBAL ===== */
* { box-sizing: border-box !important; }

body {
  font-family: 'Poppins', sans-serif !important;
  background: #ffffff !important;
  color: #1a1a2e !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif !important;
}

/* ===== BANNER / HERO ===== */
.banner {
  background: linear-gradient(160deg, #1565C0 0%, #1976D2 40%, #1E88E5 70%, #42A5F5 100%) !important;
  background-image: linear-gradient(160deg, #1565C0 0%, #1976D2 40%, #1E88E5 70%, #42A5F5 100%) !important;
  min-height: 92vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 120px 0 80px !important;
  position: relative !important;
  overflow: hidden !important;
}

.banner::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  right: 0 !important;
  height: 80px !important;
  background: #ffffff !important;
  clip-path: ellipse(55% 100% at 50% 100%) !important;
  z-index: 1 !important;
}

.banner::before {
  content: '' !important;
  position: absolute !important;
  top: -100px !important;
  right: -100px !important;
  width: 500px !important;
  height: 500px !important;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.banner__content h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 10px !important;
}

.banner__content h3 .color--secondary-color,
.banner__content h1 .color--theme-color {
  color: #90CAF9 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #90CAF9 !important;
  background-clip: unset !important;
}

.banner__content h1 {
  font-size: clamp(32px, 4.5vw, 58px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
}

.banner__content p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  max-width: 560px !important;
  margin-bottom: 32px !important;
}

.btn-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
}

.default-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 13px 15px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  font-family: 'Poppins', sans-serif !important;
  transition: all 0.28s ease !important;
  cursor: pointer !important;
  background: #ffffff !important;
  color: #1565C0 !important;
  border: none !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15) !important;
  text-decoration: none !important;
}

.default-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2) !important;
  color: #1565C0 !important;
  background: #f0f8ff !important;
}

.default-btn span {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.default-btn--secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  box-shadow: none !important;
}

.default-btn--secondary:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}

.banner__thumb {
  position: relative !important;
  z-index: 2 !important;
}

.banner__thumb img {
  width: 100% !important;
  max-width: 460px !important;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2)) !important;
  animation: dvFloat 3.5s ease-in-out infinite !important;
}

@keyframes dvFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

/* ===== COUNTER SECTION ===== */
.counter {
  background: #f0f7ff !important;
  padding: 70px 0 !important;
}

.counter--uplifted { margin-top: 0 !important; }

.counter__wrapper {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.counter__item { padding: 8px !important; }

.counter__item-content {
  background: #ffffff !important;
  border-radius: 18px !important;
  padding: 36px 24px !important;
  text-align: center !important;
  box-shadow: 0 6px 30px rgba(21,101,192,0.1) !important;
  border: 1.5px solid #BBDEFB !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.counter__item-content::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #1565C0, #42A5F5) !important;
  border-radius: 0 0 18px 18px !important;
}

.counter__item-content:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(21,101,192,0.2) !important;
}

.counter__item-content h2 {
  font-size: 44px !important;
  font-weight: 900 !important;
  color: #1565C0 !important;
  margin-bottom: 6px !important;
  background: linear-gradient(135deg, #1565C0, #42A5F5) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-family: 'Nunito', sans-serif !important;
}

.counter__item-content p {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #5a6a8a !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin: 0 !important;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #ffffff !important;
  padding: 90px 0 !important;
}

.about__content .subtitle {
  color: #1565C0 !important;
  -webkit-text-fill-color: #1565C0 !important;
  background: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 14px !important;
}

.about__content h2 {
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
}

.about__content h2 .color--secondary-color {
  color: #1565C0 !important;
  background: none !important;
  -webkit-text-fill-color: #1565C0 !important;
}

.about__content p {
  font-size: 14.5px !important;
  color: #546e7a !important;
  line-height: 1.85 !important;
}

.about__thumb img {
  width: 100% !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(21,101,192,0.15) !important;
}

/* ===== HOW IT WORKS (TEAM) ===== */
.team {
  background: linear-gradient(160deg, #1565C0 0%, #1976D2 50%, #1E88E5 100%) !important;
  background-image: linear-gradient(160deg, #1565C0 0%, #1976D2 50%, #1E88E5 100%) !important;
  padding: 90px 0 !important;
}

.team .section-header h2 {
  color: #ffffff !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 800 !important;
}

.team .section-header .subtitle {
  color: rgba(255,255,255,0.85) !important;
  background: none !important;
  -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

.team__item {
  background: rgba(255,255,255,0.13) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
  transition: all 0.35s ease !important;
  overflow: hidden !important;
  height: 100% !important;
}

.team__item:hover {
  transform: translateY(-8px) !important;
  background: rgba(255,255,255,0.22) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.team__item-inner {
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  padding: 28px !important;
}

.team__item-thumb img {
  width: 72px !important;
  height: 72px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  padding: 8px !important;
  flex-shrink: 0 !important;
  background: rgba(255,255,255,0.2) !important;
}

.team__item-author h4 {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.team__item-content p {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.svg-shape svg path { fill: rgba(255,255,255,0.25) !important; }

/* ===== COMMUNITY / NUMBERS ===== */
.community {
  background: #f0f7ff !important;
  background-image: none !important;
  padding: 90px 0 !important;
}

.comminity__wrapper .section-header h2 {
  color: #1a1a2e !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 800 !important;
}

.comminity__wrapper .section-header .subtitle {
  color: #1565C0 !important;
  -webkit-text-fill-color: #1565C0 !important;
  background: none !important;
}

.comminity__wrapper p {
  color: #546e7a !important;
  font-size: 15px !important;
}

.comminity__wrapper h1 {
  font-size: clamp(56px, 9vw, 100px) !important;
  font-weight: 900 !important;
  font-family: 'Nunito', sans-serif !important;
  letter-spacing: -3px !important;
  margin-bottom: 30px !important;
  background: linear-gradient(135deg, #1565C0, #42A5F5) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.comminity__wrapper .default-btn {
  background: linear-gradient(135deg, #1565C0, #1976D2) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(21,101,192,0.35) !important;
}

.comminity__wrapper .default-btn:hover { color: #ffffff !important; }

.comminity__wrapper .default-btn--secondary {
  background: transparent !important;
  color: #1565C0 !important;
  border: 2px solid #1565C0 !important;
  box-shadow: none !important;
}

/* ===== PARTNERS ===== */
.partner {
  background: #ffffff !important;
  padding: 80px 0 !important;
}

.partner .section-header h2 {
  color: #1a1a2e !important;
  font-weight: 800 !important;
}

.partner__item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 22px !important;
  margin: 8px !important;
  border-radius: 14px !important;
  background: #1870cc !important;
  border: 1.5px solid #BBDEFB !important;
  transition: all 0.3s ease !important;
}

.partner__item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 28px rgba(21,101,192,0.12) !important;
  border-color: #1976D2 !important;
  background: #1870cc !important;
}

.partner__item img {
  max-height: 46px !important;
  filter: grayscale(30%) !important;
  opacity: 0.8 !important;
  transition: all 0.3s ease !important;
}

.partner__item:hover img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(160deg, #1565C0 0%, #1976D2 50%, #1E88E5 100%) !important;
  background-image: linear-gradient(160deg, #1565C0 0%, #1976D2 50%, #1E88E5 100%) !important;
  padding: 90px 0 !important;
}

.faq .section-header h2 {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.faq .section-header .subtitle {
  color: rgba(255,255,255,0.85) !important;
  background: none !important;
  -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
}

.accordion__item {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
}

.accordion__button {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 18px 22px !important;
  text-align: left !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Poppins', sans-serif !important;
}

.accordion__button:not(.collapsed) {
  color: #90CAF9 !important;
  background: rgba(255,255,255,0.08) !important;
}

.accordion__button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.accordion__body {
  padding: 0 22px 18px !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.8 !important;
}

.faq .about__thumb img {
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
  width: 100% !important;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 50px !important; }

.section-header .subtitle {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #1565C0 !important;
  background: none !important;
  -webkit-text-fill-color: #1565C0 !important;
  display: block !important;
  margin-bottom: 10px !important;
}

/* ===== PADDING ===== */
.padding-top    { padding-top:    90px !important; }
.padding-bottom { padding-bottom: 90px !important; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px !important; }
::-webkit-scrollbar-track { background: #f0f7ff !important; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#1565C0, #42A5F5) !important;
  border-radius: 10px !important;
}

::selection { background: #1565C0 !important; color: #ffffff !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .banner { padding: 90px 0 70px !important; min-height: auto !important; }
  .banner::after { display: none !important; }
  .banner__thumb { margin-top: 40px !important; text-align: center !important; }
  .team__item-inner { flex-direction: column !important; }
}

@media (max-width: 767px) {
  .banner__content h1 { font-size: 32px !important; }
  
  .counter__item-content h2 { font-size: 34px !important; }
  .comminity__wrapper h1 { font-size: 54px !important; letter-spacing: -1px !important; }
}