:root {
  --vb-maroon: #00214c;
  --vb-maroon-2: #fad30c;
  --vb-pink: #efcfdd;
  --vb-pink-deep: #f3c201;
  --vb-cream: #fcf8ed;
  --vb-cream-2: #f7f0e7;
  --vb-ink: #292126;
  --vb-muted: #6f6667;
  --vb-white: #fffdf9;
  --vb-border: rgba(43, 0, 0, .12);
  --shadow-soft: 0 18px 50px rgba(43, 0, 0, .09);
  --shadow-card: 0 12px 35px rgba(43, 0, 0, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vb-ink);
  background: var(--vb-cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body::selection { background: var(--vb-maroon); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { scroll-margin-top: 92px; }

/* Loader */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--vb-cream);
  display: grid; place-items: center;
  transition: opacity .55s ease, visibility .55s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-mark { position: relative; width: 120px; height: 120px; }
.loader-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--vb-maroon); }
.loader-mark span {
  position: absolute; inset: -12px; border: 2px solid transparent;
  border-top-color: var(--vb-pink-deep); border-right-color: var(--vb-maroon);
  border-radius: 50%; animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Background */
.site-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: -2; filter: blur(1px); opacity: .5; }
.orb-one { width: 320px; height: 320px; background: rgba(239, 207, 221, .32); top: 18%; left: -150px; }
.orb-two { width: 240px; height: 240px; background: rgba(184, 107, 145, .08); bottom: 5%; right: -100px; }

/* Top */
.top-strip {
  background: var(--vb-maroon); color: #fff;
  font-size: 12px; letter-spacing: .04em; padding: 9px 0;
}
.top-strip a { opacity: .9; }
.top-strip a:hover { color: var(--vb-pink); }

/* Navbar */
.main-navbar {
  background: rgba(252,248,237,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43,0,0,.08);
  transition: .3s ease;
}
.main-navbar.nav-scrolled { box-shadow: 0 8px 30px rgba(43,0,0,.08); background: rgba(252,248,237,.97); }
.brand-logo { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(43,0,0,.12); }
.brand-copy { margin-left: 12px; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-family: "Playfair Display", serif; color: var(--vb-maroon);  font-size: 17px;
    line-height: 24px; }
.brand-copy small { color: var(--vb-muted); font-size: 9px; max-width: 210px; line-height: 1.3; margin-top: 4px; }
.navbar-nav .nav-link {
  color: var(--vb-ink); font-size: 13px; font-weight: 600;
  padding: 27px 10px !important; position: relative;
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 18px; height: 2px;
  background: var(--vb-maroon); transform: scaleX(0); transform-origin: center; transition: .25s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--vb-maroon); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.dropdown-menu { background: var(--vb-white); border-radius: 14px; padding: 10px; }
.dropdown-item { border-radius: 9px; padding: 9px 12px; font-size: 13px; }
.dropdown-item:hover { background: var(--vb-pink); color: var(--vb-maroon); }
.btn-brand {
  background: var(--vb-maroon); color: #fff !important; border: 1px solid var(--vb-maroon);
  border-radius: 999px; font-weight: 700; padding: 12px 22px;
  box-shadow: 0 10px 22px rgba(43,0,0,.16); transition: .25s ease;
}
.btn-brand:hover { background: var(--vb-maroon-2); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(43,0,0,.22); }
.btn-outline-brand {
  border: 1px solid var(--vb-maroon); color: var(--vb-maroon); border-radius: 999px;
  font-weight: 700; padding: 12px 22px; transition: .25s ease;
}
.btn-outline-brand:hover { background: var(--vb-maroon); color: #fff; transform: translateY(-2px); }

/* Mobile nav */
.mobile-nav { width: min(390px, 92vw); background: var(--vb-cream); }
.mobile-logo { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.mobile-nav h5 { font-family: "Playfair Display", serif; color: var(--vb-maroon); }
.mobile-nav small { color: var(--vb-muted); }
.mobile-links { display: grid; gap: 7px; margin-top: 20px; }
.mobile-links a {
  padding: 13px 15px; border-radius: 12px; background: rgba(255,255,255,.45);
  font-weight: 600; display: flex; align-items: center; gap: 13px;
}
.mobile-links a i { width: 22px; color: var(--vb-pink-deep); }
.mobile-links a:hover { background: var(--vb-pink); color: var(--vb-maroon); }
.mobile-cta { margin-top: 22px; }

/* Hero */
.hero-section {
  min-height: calc(100vh - 106px); display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0 110px;
  background:
    radial-gradient(circle at 78% 40%, rgba(239,207,221,.6), transparent 27%),
    radial-gradient(circle at 7% 95%, rgba(184,107,145,.1), transparent 25%),
    var(--vb-cream);
}
.hero-watercolor {
  position: absolute; width: 780px; height: 560px; right: -160px; top: 4%;
  border-radius: 45% 55% 60% 40%;
  background: radial-gradient(circle at 45% 45%, rgba(239,207,221,.72), rgba(239,207,221,.25) 46%, transparent 70%);
  filter: blur(8px); transform: rotate(-7deg);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: rotate(-3deg) scale(1.05); } }
.hero-line { position: absolute; border: 1px solid rgba(43,0,0,.12); border-radius: 50%; }
.line-a { width: 720px; height: 720px; right: -290px; top: -180px; }
.line-b { width: 900px; height: 900px; right: -410px; top: -275px; border-color: rgba(184,107,145,.16); }
.eyebrow, .section-kicker {
  color: var(--vb-pink-deep); text-transform: uppercase; letter-spacing: .19em;
  font-size: 11px; font-weight: 800; margin-bottom: 13px;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--vb-maroon); border-radius: 50%; box-shadow: 0 0 0 6px rgba(43,0,0,.08); }
.hero-title {
  font-family: "Playfair Display", serif; font-weight: 800; color: var(--vb-maroon);
  font-size: clamp(48px, 6vw, 82px); line-height: .99; letter-spacing: -.04em;
  max-width: 780px; margin: 0 0 22px;
}
.hero-title span, em { color: var(--vb-pink-deep); font-style: normal; }
.hero-lead { max-width: 680px; font-size: 17px; line-height: 1.8; color: var(--vb-muted); margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: var(--vb-muted); font-size: 12px; font-weight: 700; }
.hero-trust i { color: var(--vb-pink-deep); margin-right: 7px; }
.hero-art { min-height: 560px; position: relative; display: grid; place-items: center; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(43,0,0,.14); }
.ring-one { width: 470px; height: 470px; animation: orbit 18s linear infinite; }
.ring-two { width: 570px; height: 570px; border-color: rgba(184,107,145,.18); animation: orbit 25s linear reverse infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-card-main {
  width: min(390px, 84%); padding: 25px; background: rgba(255,253,249,.75);
  border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-soft);
  border-radius: 32px; backdrop-filter: blur(16px); position: relative; z-index: 2;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-12px); } }
.hero-logo-wrap { background: var(--vb-cream); border-radius: 24px; padding: 14px; border: 1px solid var(--vb-border); }
.hero-logo-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; }
.hero-card-copy { padding: 17px 3px 2px; display: flex; flex-direction: column; gap: 5px; }
.hero-card-copy span { color: var(--vb-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card-copy strong { color: var(--vb-maroon); font-family: "Playfair Display", serif; font-size: 24px; }
.floating-badge {
  position: absolute; z-index: 3; background: var(--vb-white); border: 1px solid var(--vb-border);
  box-shadow: var(--shadow-card); border-radius: 999px; padding: 12px 15px;
  display: flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 800; color: var(--vb-maroon);
  animation: float 4s ease-in-out infinite;
}
.floating-badge i { color: var(--vb-pink-deep); }
.badge-one { top: 9%; left: 3%; }
.badge-two { right: 2%; top: 45%; animation-delay: -1.2s; }
.badge-three { bottom: 10%; left: 7%; animation-delay: -2.2s; }
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--vb-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .15em;
  display: flex; flex-direction: column; align-items: center; gap: 6px; animation: cue 1.8s ease-in-out infinite;
}
.scroll-cue i { color: var(--vb-maroon); }
@keyframes cue { 50% { transform: translate(-50%, 6px); } }

/* Sections */
.section-padding { padding: 110px 0; }
.section-heading { max-width: 720px; margin: 0 auto 36px; }
.section-title {
  color: var(--vb-maroon); font-family: "Playfair Display", serif; font-weight: 800;
  font-size: clamp(38px, 4vw, 58px); line-height: 1.06; letter-spacing: -.035em; margin-bottom: 18px;
}
.section-title em { color: var(--vb-pink-deep); }
.section-subtitle, .section-text { color: var(--vb-muted); line-height: 1.8; }
.section-subtitle { font-size: 15px; max-width: 680px; margin: 0 auto; }
.accent-rule { width: 62px; height: 4px; background: var(--vb-maroon); border-radius: 99px; margin: 24px 0; }
.text-link { color: var(--vb-maroon); font-size: 13px; font-weight: 800; }
.text-link i { margin-left: 6px; transition: transform .2s ease; }
.text-link:hover i { transform: translateX(5px); }

/* Mission */
.mission-section { background: var(--vb-white); }
.mission-panel {
  background: linear-gradient(135deg, var(--vb-cream), #fff);
  border: 1px solid var(--vb-border); border-radius: var(--radius-lg); padding: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; box-shadow: var(--shadow-soft);
}
.mission-stat { background: #fff; border-radius: 20px; padding: 24px 18px; border: 1px solid var(--vb-border); }
.stat-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--vb-pink); color: var(--vb-maroon); margin-bottom: 16px; }
.mission-stat strong { display: block; font-family: "Playfair Display", serif; font-size: 36px; color: var(--vb-maroon); }
.mission-stat span { color: var(--vb-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.mission-values { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }
.mission-values span { border: 1px solid var(--vb-border); background: rgba(255,255,255,.75); border-radius: 999px; padding: 8px 13px; font-size: 11px; font-weight: 700; color: var(--vb-maroon); }

/* Programs */
.programs-section { background: var(--vb-cream); }
.program-card {
  height: 100%; padding: 30px; border-radius: var(--radius-md); background: var(--vb-white);
  border: 1px solid var(--vb-border); box-shadow: 0 8px 25px rgba(43,0,0,.035);
  transition: .35s ease; position: relative; overflow: hidden;
}
.program-card::before { content:""; position:absolute; width:110px; height:110px; border-radius:50%; background:rgba(239,207,221,.45); right:-45px; top:-45px; transition:.35s ease; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(184,107,145,.25); }
.program-card:hover::before { transform: scale(1.5); }
.program-card.featured { background: var(--vb-maroon); color: #fff; }
.program-card.featured h3, .program-card.featured p, .program-card.featured a { color: #fff; }
.program-card.featured .program-icon { background: var(--vb-pink); color: var(--vb-maroon); }
.program-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: var(--vb-pink); color: var(--vb-maroon); font-size: 21px; margin-bottom: 24px; position: relative; }
.program-card h3 { font-family: "Playfair Display", serif; font-size: 25px; margin-bottom: 11px; color: var(--vb-maroon); position: relative; }
.program-card p { color: var(--vb-muted); font-size: 13px; line-height: 1.75; position: relative; }
.program-card a { color: var(--vb-maroon); font-size: 12px; font-weight: 800; position: relative; }
.program-card a i { margin-left: 5px; }

/* President */
.president-section { background: var(--vb-cream-2); }
.president-box {
  background: var(--vb-maroon); border-radius: 34px; padding: 60px; color: #fff;
  position: relative; overflow: hidden; box-shadow: 0 25px 65px rgba(43,0,0,.18);
}
.president-box::after {
  content:""; position:absolute; width:500px; height:500px; border:1px solid rgba(255,255,255,.12);
  border-radius:50%; right:-220px; top:-180px;
}
.section-kicker.light { color: var(--vb-pink); }
.portrait-placeholder {
  aspect-ratio: 1 / 1; border-radius: 28px; background: linear-gradient(145deg, rgba(239,207,221,.85), rgba(255,253,249,.2));
  display: grid; place-items: center; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.2);
}
.portrait-placeholder::before { content:""; position:absolute; width:80%; height:80%; border:1px solid rgba(43,0,0,.2); border-radius:50%; }
.portrait-circle { width: 120px; height: 120px; display:grid; place-items:center; background:rgba(255,253,249,.75); border-radius:50%; color:var(--vb-maroon); font-size:42px; position:relative; z-index:1; }
.portrait-placeholder > span { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); background:rgba(43,0,0,.75); padding:7px 12px; border-radius:99px; font-size:10px; white-space:nowrap; }
.president-box .section-title { color: #fff; }
.quote-mark { font-family:"Playfair Display", serif; font-size:90px; line-height:.6; color:var(--vb-pink); margin-top:25px; }
.president-copy { max-width: 650px; color: rgba(255,255,255,.75); line-height:1.9; font-size:15px; }
.signature-line { border-left:2px solid var(--vb-pink); padding-left:14px; display:flex; flex-direction:column; gap:3px; margin-top:25px; }
.signature-line strong { font-size:13px; }
.signature-line span { color:rgba(255,255,255,.55); font-size:11px; }

/* Leadership */
.leadership-section { background: var(--vb-white); }
.leader-card { height:100%; background:var(--vb-cream); border:1px solid var(--vb-border); border-radius:22px; overflow:hidden; transition:.3s ease; }
.leader-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-card); }
.leader-photo { aspect-ratio:1/.92; display:grid; place-items:center; background:linear-gradient(145deg,var(--vb-pink),var(--vb-cream)); color:var(--vb-maroon); font-size:60px; }
.leader-info { padding:20px; position:relative; }
.leader-info h3 { font-family:"Playfair Display", serif; font-size:21px; color:var(--vb-maroon); margin-bottom:4px; }
.leader-info > span { font-size:10px; color:var(--vb-pink-deep); text-transform:uppercase; letter-spacing:.13em; font-weight:800; }
.leader-info p { font-size:12px; color:var(--vb-muted); line-height:1.6; margin:12px 0 0; }
.leader-info > a { position:absolute; right:18px; top:19px; width:32px; height:32px; border-radius:50%; display:grid; place-items:center; background:#fff; color:var(--vb-maroon); font-size:12px; }
.advisory-row { margin-top:55px; padding:28px; border:1px solid var(--vb-border); border-radius:22px; display:grid; grid-template-columns:2fr repeat(3,1fr); gap:15px; align-items:center; background:var(--vb-cream); }
.advisory-row h3 { font-family:"Playfair Display", serif; color:var(--vb-maroon); font-size:28px; margin:0 0 6px; }
.advisory-row p { margin:0; color:var(--vb-muted); font-size:12px; line-height:1.6; max-width:450px; }
.advisory-person { min-height:120px; border-radius:17px; background:#fff; border:1px solid var(--vb-border); display:grid; place-items:center; gap:7px; align-content:center; color:var(--vb-maroon); }
.advisory-person i { font-size:28px; color:var(--vb-pink-deep); }
.advisory-person span { font-size:10px; font-weight:800; }

/* Events */
.events-section { background:var(--vb-cream-2); }
.event-card { background:#fff; border-radius:22px; overflow:hidden; border:1px solid var(--vb-border); box-shadow:0 8px 30px rgba(43,0,0,.045); transition:.3s ease; height:100%; }
.event-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-card); }
.event-image, .news-image { position:relative; background-size:cover; background-position:center; }
.event-image { height:225px; }
.image-one { background:linear-gradient(rgba(43,0,0,.12),rgba(43,0,0,.12)), url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1000&q=80") center/cover; }
.image-two { background:linear-gradient(rgba(43,0,0,.08),rgba(43,0,0,.08)), url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1000&q=80") center/cover; }
.image-three { background:linear-gradient(rgba(43,0,0,.08),rgba(43,0,0,.08)), url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=1000&q=80") center/cover; }
.event-tag { position:absolute; top:15px; left:15px; padding:7px 10px; background:var(--vb-maroon); color:#fff; border-radius:99px; font-size:9px; text-transform:uppercase; font-weight:800; letter-spacing:.1em; }
.date-badge { position:absolute; bottom:15px; right:15px; width:60px; height:60px; background:rgba(255,253,249,.94); border-radius:16px; display:grid; place-items:center; align-content:center; color:var(--vb-maroon); box-shadow:0 8px 20px rgba(43,0,0,.12); }
.date-badge strong { font-family:"Playfair Display", serif; font-size:25px; line-height:1; }
.date-badge small { font-size:9px; font-weight:800; letter-spacing:.12em; }
.event-body { padding:23px; }
.event-meta { display:flex; flex-wrap:wrap; gap:12px; color:var(--vb-muted); font-size:10px; margin-bottom:12px; }
.event-meta i { color:var(--vb-pink-deep); margin-right:4px; }
.event-body h3, .news-body h3 { font-family:"Playfair Display", serif; color:var(--vb-maroon); font-size:23px; line-height:1.2; }
.event-body p, .news-body p { color:var(--vb-muted); font-size:12px; line-height:1.7; }
.event-body a, .news-body a { color:var(--vb-maroon); font-size:11px; font-weight:800; }

/* News */
.news-section { background:var(--vb-white); }
.news-card { height:100%; border:1px solid var(--vb-border); border-radius:22px; overflow:hidden; background:var(--vb-cream); transition:.3s ease; }
.news-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-card); }
.news-image { height:220px; display:flex; align-items:flex-end; padding:16px; }
.news-one { background-image:url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1000&q=80"); }
.news-two { background-image:url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1000&q=80"); }
.news-three { background-image:url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1000&q=80"); }
.news-image span { background:rgba(43,0,0,.9); color:#fff; border-radius:99px; padding:7px 11px; font-size:9px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.news-body { padding:23px; }
.news-body small { color:var(--vb-pink-deep); font-size:9px; text-transform:uppercase; font-weight:800; letter-spacing:.1em; }
.news-body h3 { margin:9px 0 11px; }

/* Gallery */
.gallery-section { background:var(--vb-cream); }
.gallery-grid { display:grid; grid-template-columns:1.3fr .8fr .8fr; grid-template-rows:230px 230px; gap:14px; }
.gallery-item { border-radius:22px; overflow:hidden; position:relative; background-size:cover; background-position:center; isolation:isolate; }
.gallery-item::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(43,0,0,.72)); z-index:-1; transition:.35s ease; }
.gallery-item:hover::before { background:linear-gradient(180deg,rgba(43,0,0,.08),rgba(43,0,0,.88)); }
.gallery-item span { position:absolute; bottom:17px; left:18px; color:#fff; font-size:12px; font-weight:800; }
.gallery-item span i { color:var(--vb-pink); margin-right:6px; }
.gallery-large { grid-row:1 / 3; }
.gallery-wide { grid-column:2 / 4; }
.g1 { background-image:url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1200&q=80"); }
.g2 { background-image:url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=1000&q=80"); }
.g3 { background-image:url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=1000&q=80"); }
.g4 { background-image:url("https://images.unsplash.com/photo-1504159506876-f8338247a14a?auto=format&fit=crop&w=1000&q=80"); }
.g5 { background-image:url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1000&q=80"); }
.g6 { background-image:url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=1200&q=80"); }

/* Sponsors */
.sponsors-section { background:var(--vb-white); }
.sponsor-tier { border:1px solid var(--vb-border); border-radius:20px; overflow:hidden; margin-top:18px; background:var(--vb-cream); }
.tier-label { display:inline-flex; padding:10px 15px; margin:15px 0 0 15px; border-radius:99px; background:var(--vb-maroon); color:#fff; font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.tier-label.silver { background:var(--vb-pink-deep); }
.sponsor-track { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; padding:20px 15px 15px; }
.sponsor-logo { min-height:85px; border-radius:15px; border:1px dashed rgba(43,0,0,.18); display:flex; align-items:center; justify-content:center; gap:8px; color:var(--vb-maroon); font-weight:800; font-size:11px; letter-spacing:.08em; background:rgba(255,255,255,.55); }
.sponsor-logo i { color:var(--vb-pink-deep); }

/* Donate */
.donate-section { background:var(--vb-cream-2); }
.donate-card { position:relative; overflow:hidden; padding:65px; border-radius:34px; background:var(--vb-maroon); color:#fff; box-shadow:0 25px 65px rgba(43,0,0,.17); }
.donate-card::before { content:""; position:absolute; width:600px; height:600px; border:1px solid rgba(255,255,255,.1); border-radius:50%; right:-300px; top:-230px; }
.donate-card h2 { max-width:850px; font-family:"Playfair Display",serif; font-size:clamp(36px,4vw,58px); line-height:1.05; letter-spacing:-.035em; }
.donate-card p { color:rgba(255,255,255,.7); max-width:700px; line-height:1.8; margin-top:16px; }
.donate-decoration { position:absolute; border-radius:50%; background:rgba(239,207,221,.13); }
.d-one { width:90px; height:90px; left:5%; bottom:-35px; }
.d-two { width:45px; height:45px; left:15%; top:35px; }

/* Volunteers */
.volunteers-section { background:var(--vb-white); }
.volunteer-visual { min-height:410px; position:relative; display:grid; place-items:center; }
.volunteer-visual::before { content:""; position:absolute; width:370px; height:370px; border-radius:50%; background:var(--vb-pink); opacity:.55; }
.volunteer-visual::after { content:""; position:absolute; width:300px; height:300px; border:1px solid var(--vb-maroon); border-radius:50%; opacity:.14; }
.volunteer-circle { width:190px; height:190px; border-radius:50%; display:grid; place-items:center; background:var(--vb-maroon); color:var(--vb-pink); font-size:68px; z-index:2; box-shadow:0 25px 45px rgba(43,0,0,.2); }
.mini-card { position:absolute; z-index:3; background:#fff; border:1px solid var(--vb-border); border-radius:14px; padding:11px 14px; box-shadow:var(--shadow-card); display:flex; align-items:center; gap:8px; font-size:11px; font-weight:800; color:var(--vb-maroon); }
.mini-card i { color:var(--vb-pink-deep); }
.mc-one { top:7%; left:5%; }
.mc-two { top:35%; right:0; }
.mc-three { bottom:7%; left:12%; }
.volunteer-list { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:25px 0; }
.volunteer-list div { font-size:12px; color:var(--vb-muted); }
.volunteer-list i { color:var(--vb-pink-deep); margin-right:7px; }

/* Membership */
.membership-section { background:var(--vb-pink); padding:55px 0; }
.membership-inner { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.membership-inner h2 { font-family:"Playfair Display",serif; color:var(--vb-maroon); font-size:clamp(30px,3vw,45px); margin:0; }

/* Contact */
.contact-section { background:var(--vb-cream); }
.contact-detail { display:flex; align-items:center; gap:13px; margin-top:20px; }
.contact-icon { width:46px; height:46px; border-radius:50%; background:var(--vb-pink); display:grid; place-items:center; color:var(--vb-maroon); }
.contact-detail small { display:block; font-size:9px; text-transform:uppercase; letter-spacing:.1em; color:var(--vb-pink-deep); font-weight:800; margin-bottom:2px; }
.contact-detail strong { display:block; font-size:13px; color:var(--vb-maroon); }
.social-row { display:flex; gap:9px; margin-top:25px; }
.social-row a { width:37px; height:37px; border-radius:50%; background:#fff; border:1px solid var(--vb-border); display:grid; place-items:center; color:var(--vb-maroon); font-size:12px; transition:.25s ease; }
.social-row a:hover { background:var(--vb-maroon); color:#fff; transform:translateY(-3px); }
.contact-form { background:#fff; padding:30px; border-radius:24px; border:1px solid var(--vb-border); box-shadow:var(--shadow-soft); }
.contact-form label { display:block; font-size:10px; font-weight:800; color:var(--vb-maroon); margin:0 0 7px; text-transform:uppercase; letter-spacing:.08em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width:100%; border:1px solid rgba(43,0,0,.12); background:var(--vb-cream); border-radius:12px;
  padding:12px 13px; outline:none; color:var(--vb-ink); font-size:12px; transition:.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:var(--vb-pink-deep); box-shadow:0 0 0 4px rgba(184,107,145,.1); }
.contact-form textarea { resize:vertical; }
.form-note { color:var(--vb-muted); font-size:10px; }
.form-note i { color:var(--vb-pink-deep); margin-right:4px; }
.map-placeholder { min-height:190px; border:1px dashed rgba(43,0,0,.2); border-radius:24px; background:linear-gradient(135deg,rgba(239,207,221,.5),rgba(255,255,255,.5)); display:grid; place-items:center; }
.map-placeholder div { text-align:center; color:var(--vb-maroon); display:grid; gap:5px; }
.map-placeholder i { font-size:30px; color:var(--vb-pink-deep); }
.map-placeholder strong { font-family:"Playfair Display",serif; font-size:20px; }
.map-placeholder span { font-size:11px; color:var(--vb-muted); }

 /* Footer */
.site-footer {
    background: var(--vb-maroon);
    color: #fff;
    padding: 70px 0 0;
}

/* Footer Logo */
.footer-logo {
    width: 100px;
    height:100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: block;
}

/* Footer About */
.footer-about {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.8;
}

/* Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 25px;
    padding: 0;
}

/* Social Icon Circle */
.footer-social a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;

    padding: 0;
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    text-decoration: none;
    line-height: 1;
    text-align: center;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

/* Font Awesome Icons */
.footer-social a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    margin: 0;
    padding: 0;

    font-size: 15px;
    line-height: 1;

    text-align: center;
}

/* SVG Icons */
.footer-social a svg {
    display: block;

    width: 15px;
    height: 15px;

    margin: 0;
    padding: 0;
}

/* Individual icon alignment */
.footer-social a .fa-facebook-f {
    font-size: 14px;
}

.footer-social a .fa-instagram {
    font-size: 15px;
}

.footer-social a .fa-youtube {
    font-size: 14px;
}

.footer-social a .fa-linkedin-in {
    font-size: 14px;
}

/* Hover */
.footer-social a:hover {
    background: var(--vb-pink);
    color: var(--vb-maroon);
    border-color: var(--vb-pink);
    transform: translateY(-2px);
}

/* Prevent unwanted styles from global anchor rules */
.site-footer .footer-social a:hover {
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .site-footer {
        padding-top: 55px;
    }

    .footer-social {
        gap: 9px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-footer {
        padding-top: 45px;
    }

    .footer-social {
        gap: 8px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .footer-social a i,
    .footer-social a svg {
        width: 14px;
        height: 14px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-social {
        gap: 7px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
}
.site-footer h4 { font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--vb-pink); margin:10px 0 18px; }
.site-footer > .container a:not(.footer-donate) { display:block; color:rgba(255,255,255,.65); font-size:14px; margin:0 0 10px; }
.site-footer > .container a:not(.footer-donate):hover { color:#fff; }
.site-footer p { color:rgba(255,255,255,.65); font-size:14px; line-height:1.7; }
.site-footer p i { width:18px; color:var(--vb-pink); }
.footer-donate { display:inline-flex; align-items:center; gap:8px; color:#fff; font-size:11px; font-weight:800; margin-top:8px; }
.footer-bottom { margin-top:50px; padding:20px 0; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.42); font-size: 14px; letter-spacing:.04em; }

/* Utilities */
.back-to-top {
  position:fixed; right:22px; bottom:22px; width:43px; height:43px; border:0; border-radius:50%;
  background:var(--vb-maroon); color:#fff; box-shadow:var(--shadow-card); z-index:100; opacity:0; visibility:hidden; transform:translateY(10px); transition:.25s ease;
}
.back-to-top.show { opacity:1; visibility:visible; transform:none; }
.toast-message {
  position:fixed; right:20px; bottom:78px; z-index:200; background:var(--vb-maroon); color:#fff;
  padding:14px 18px; border-radius:13px; box-shadow:var(--shadow-card); display:flex; gap:10px; align-items:center;
  font-size:11px; transform:translateY(20px); opacity:0; visibility:hidden; transition:.3s ease;
}
.toast-message.show { transform:none; opacity:1; visibility:visible; }
.toast-message i { color:var(--vb-pink); font-size:17px; }

/* Reveal animation */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; } .delay-2 { transition-delay:.22s; } .delay-3 { transition-delay:.32s; } .delay-4 { transition-delay:.42s; }

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-section { min-height:auto; padding-top:70px; }
  .hero-art { min-height:500px; }
  .navbar { padding:8px 0; }
}
@media (max-width: 991.98px) {
  .section-padding { padding:80px 0; }
  .hero-section { padding-bottom:90px; }
  .hero-art { min-height:470px; margin-top:15px; }
  .hero-title { font-size:clamp(46px,8vw,68px); }
  .president-box, .donate-card { padding:42px 30px; }
  .advisory-row { grid-template-columns:1fr 1fr 1fr; }
  .advisory-row > div:first-child { grid-column:1 / -1; }
  .membership-inner { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 767.98px) {
  .top-strip { font-size:10px; }
  .brand-logo { width:54px; height:54px; }
  .hero-section { padding:58px 0 80px; }
  .hero-title { font-size:46px; }
  .hero-lead { font-size:15px; }
  .hero-art { min-height:410px; }
  .ring-one { width:330px; height:330px; }
  .ring-two { width:410px; height:410px; }
  .hero-card-main { width:280px; padding:18px; }
  .hero-card-copy strong { font-size:19px; }
  .floating-badge { font-size:10px; padding:9px 11px; }
  .badge-one { left:0; top:6%; } .badge-two { right:0; top:43%; } .badge-three { left:2%; bottom:7%; }
  .mission-panel { grid-template-columns:1fr 1fr; padding:18px; }
  .mission-values { grid-column:1 / -1; }
  .president-box { padding:28px 20px; border-radius:25px; }
  .portrait-placeholder { max-width:390px; margin:auto; }
  .advisory-row { grid-template-columns:1fr 1fr; }
  .advisory-row > div:first-child { grid-column:1 / -1; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:190px 190px 190px; }
  .gallery-large { grid-row:1 / 3; }
  .gallery-wide { grid-column:1 / -1; }
  .sponsor-track { grid-template-columns:1fr 1fr; }
  .donate-card { padding:38px 24px; border-radius:25px; }
  .volunteer-list { grid-template-columns:1fr; }
  .volunteer-visual { min-height:350px; }
  .volunteer-visual::before { width:300px; height:300px; }
  .volunteer-visual::after { width:245px; height:245px; }
  .volunteer-circle { width:150px; height:150px; font-size:54px; }
  .footer-bottom { flex-direction:column; gap:6px; }
}
@media (max-width: 575.98px) {
  .top-strip .top-welcome { width:100%; text-align:center; }
  .hero-title { font-size:40px; }
  .hero-art { min-height:350px; }
  .hero-card-main { width:235px; }
  .hero-logo-wrap { padding:9px; }
  .hero-card-copy { padding-top:11px; }
  .hero-card-copy strong { font-size:16px; }
  .ring-one { width:280px; height:280px; }
  .ring-two { width:340px; height:340px; }
  .hero-trust { gap:9px; flex-direction:column; }
  .section-title { font-size:37px; }
  .mission-panel { grid-template-columns:1fr; }
  .mission-values { grid-column:auto; }
  .advisory-row { grid-template-columns:1fr; }
  .advisory-row > div:first-child { grid-column:auto; }
  .gallery-grid { display:grid; grid-template-columns:1fr; grid-template-rows:240px 180px 180px 180px 180px 180px; }
  .gallery-large { grid-row:auto; }
  .gallery-wide { grid-column:auto; }
  .sponsor-track { grid-template-columns:1fr; }
  .contact-form { padding:20px; }
  .scroll-cue { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.001ms !important; }
}

/* =========================================================
   REFERENCE HOMEPAGE — WATERCOLOUR NAV + HERO
   ========================================================= */
:root{
  --vb-maroon:#07345f;
  --vb-maroon-2:#0b477d;
  --vb-pink:#e7efc9;
  --vb-pink-deep:#0b477d;
  --vb-cream:#fbfaf3;
  --vb-cream-2:#f4f7f0;
  --vb-ink:#082b4d;
  --vb-muted:#173b59;
  --vb-white:#fffef9;
  --vb-border:rgba(8,43,77,.14);
  --shadow-soft:0 18px 50px rgba(8,43,77,.10);
  --shadow-card:0 12px 35px rgba(8,43,77,.09);
}

body{background:#fbfaf3;color:var(--vb-ink)}
.top-strip{display:none!important}
.hero-shell{
  position:relative;
  background-image:url('../assets/back.jpg');
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center top;
  overflow:hidden;
}
.main-navbar{
  position:absolute!important;
  top:0;left:0;right:0;
  z-index:1000;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
}
.main-navbar .container{min-height:128px}
.brand-logo{width:82px;height:82px;border:0;box-shadow:none;background:transparent}
.brand-copy{margin-left:16px}
.brand-copy strong{
  color:#082b4d;
  font-family:"DM Sans",sans-serif;
  font-size: 12px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.09em;
}
.navbar-nav .nav-link{
  color:#082b4d;
  font-size:15px;
  font-weight:600;
  padding:42px 15px 30px!important;
}
.navbar-nav .nav-link::after{
  left:15px;right:15px;bottom:23px;
  background:#1d5a35;
  height:2px;
}
.navbar-nav .nav-link:hover,.navbar-nav .nav-link.active{color:#082b4d}
.dropdown-menu{background:rgba(255,255,250,.97)}
.btn-brand{
  background:#164e7e;
  border-color:#164e7e;
  box-shadow:none;
  padding:14px 25px;
}
.btn-brand:hover{background:#0d3d67;border-color:#0d3d67}

.hero-section{
  min-height:770px;
  padding:145px 0 60px;
  display:flex;
  align-items:center;
  position:relative;
  background:transparent!important;
  overflow:hidden;
}
.hero-section:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-1px;height:95px;
  background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(251,250,243,.95) 75%,#fbfaf3 100%);
  pointer-events:none;
}
.hero-watercolor,.hero-line,.scroll-cue{display:none!important}
.hero-content{position:relative;z-index:2}
.hero-copy{padding-left:30px;padding-top:30px}
.hero-title{
  color:#06365f;
  font-family:"Playfair Display",serif;
  font-size:clamp(54px,5vw,70px);
  line-height:1.03;
  letter-spacing:-.035em;
  font-weight:700;
  margin:0 0 25px;
  max-width:700px;
}
.hero-title span,.hero-title em{color:inherit}
.hero-lead{
  color:#102f49;
  font-size:19px;
  line-height:1.55;
  margin-bottom:30px;
  max-width:560px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:28px}
.hero-btn{
  min-width:198px;
  padding:13px 22px;
  font-size:16px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}
.btn-outline-brand{
  border:1.5px solid #2f713b;
  color:#082b4d;
  background:rgba(255,255,255,.14);
}
.btn-outline-brand:hover{background:#2f713b;border-color:#2f713b;color:#fff}
.reference-logo-area{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:35px 55px 20px 20px;
}
.reference-hero-logo{
  width:min(560px,100%);
  height:auto;
  filter:drop-shadow(0 8px 8px rgba(0,35,65,.06));
}

.reference-features{
  position:relative;
  z-index:5;
  margin-top:-1px;
  padding:22px 0 44px;
  background:#fbfaf3;
}
.reference-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
  align-items:center;
}
.reference-feature-item{display:flex;align-items:center;gap:18px;min-height:118px}
.reference-feature-icon{
  width:86px;height:86px;min-width:86px;
  border-radius:50%;
  display:grid;place-items:center;
  font-size:34px;color:#082b4d;
  border:8px solid rgba(255,255,255,.55);
}
.icon-yellow{background:#f5df63}.icon-green{background:#cfe5a9}.icon-blue{background:#c9e6dc}.icon-sky{background:#c9ddf1}
.reference-feature-item h3{
  margin:0 0 8px;color:#082b4d;font-size:16px;font-weight:700
}
.reference-feature-item p{
  margin:0;color:#173b59;font-size:13px;line-height:1.55;max-width:230px
}

/* Continue the same palette through the rest of the site */
.section-title,.section-kicker,.mission-section h2,.program-card h3,.contact-title,.footer-title{color:#07345f}
.section-kicker,.eyebrow{color:#fcdb1a}
.accent-rule{background:#e3c72f}
.mission-section{background:#fbfaf3}
.program-card{border-color:rgba(8,43,77,.10);background:#fffef9}
.program-card.featured{background:#07345f}
.program-icon{background:#e9f0d4;color:#07345f}
.text-link{color:#1f6338}
.footer{background:#07345f}

@media (max-width:1199.98px){
  .main-navbar .container{min-height:100px}
  .navbar{padding:0}
  .brand-logo{width:70px;height:70px}
  .brand-copy strong{font-size:17px}
  .hero-copy{padding-left:45px}
  .hero-title{font-size:58px}
  .reference-logo-area{padding-right:25px}
}
@media (max-width:991.98px){
  .main-navbar{position:absolute!important}
  .main-navbar .container{min-height:92px}
  .hero-section{min-height:auto;padding:120px 0 65px}
  .hero-copy{padding:20px 28px 0}
  .hero-title{font-size:54px}
  .hero-lead{font-size:17px}
  .reference-logo-area{min-height:auto;padding:25px 45px 35px}
  .reference-hero-logo{width:min(500px,90vw)}
  .reference-feature-grid{grid-template-columns:repeat(2,1fr);gap:22px}
}
@media (max-width:575.98px){
  .brand-logo{width:58px;height:58px}
  .brand-copy strong{font-size:12px;letter-spacing:.06em}
  .hero-section{padding-top:105px}
  .hero-copy{padding:20px 18px 0}
  .hero-title{font-size:43px;line-height:1.06}
  .hero-lead{font-size:15px}
  .hero-actions{gap:12px}
  .hero-btn{min-width:0;width:100%}
  .reference-logo-area{padding:20px 12px 35px}
  .reference-feature-grid{grid-template-columns:1fr;gap:10px}
  .reference-feature-item{padding:8px 12px}
  .reference-feature-icon{width:72px;height:72px;min-width:72px;font-size:28px}
}
.myhero-donate{
    min-height:350px!important;
}

/* =========================================================
   SAPTARANG DONATE PAGE
   VBCCS LOGO INSPIRED DESIGN
   Navy + Green + Yellow + Cream + Sky Blue
========================================================= */


/* =========================================================
   1. ROOT DONATE PAGE
========================================================= */

.donate-page {
    --donate-navy: #102B55;
    --donate-navy-dark: #071C3A;

    --donate-blue: #4F8FB5;
    --donate-sky: #8DB9CE;

    --donate-green: #7D9F4B;
    --donate-green-dark: #536F32;

    --donate-yellow: #E9C95D;
    --donate-yellow-light: #F7E9A6;

    --donate-cream: #FFF9DF;
    --donate-cream-dark: #F6EFCF;

    --donate-text: #172A43;
    --donate-muted: #66748A;

    --donate-border: #D9D5B8;

    --donate-white: #FFFFFF;

    width: 100%;
    position: relative;

    color: var(--donate-text);
    background-color: var(--donate-cream);

    overflow: hidden;
}


/* =========================================================
   2. RESET ONLY INSIDE DONATE PAGE
========================================================= */

.donate-page *,
.donate-page *::before,
.donate-page *::after {
    box-sizing: border-box;
}

.donate-page h1,
.donate-page h2,
.donate-page h3,
.donate-page h4,
.donate-page h5,
.donate-page h6,
.donate-page p {
    margin-top: 0;
}

.donate-page img {
    max-width: 100%;
    height: auto;
}

.donate-page a {
    text-decoration: none;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.donate-page .donate-container {
    width: min(1180px, calc(100% - 40px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. EYEBROW
========================================================= */

.donate-page .donate-eyebrow {
    display: inline-block;

    margin: 0 0 18px;

    color: var(--donate-green-dark);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;
}


/* =========================================================
   5. HERO SECTION
========================================================= */

.donate-page .donate-hero {
    position: relative;

    width: 100%;

    padding: 105px 0 85px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(79, 143, 181, 0.20) 0%,
            rgba(79, 143, 181, 0) 30%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(125, 159, 75, 0.18) 0%,
            rgba(125, 159, 75, 0) 30%
        ),
        linear-gradient(
            135deg,
            #FFF9DF 0%,
            #FFFDF0 55%,
            #F6EFCF 100%
        );

    overflow: hidden;
}


/* Decorative circle */

.donate-page .donate-hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -170px;
    top: -170px;

    border-radius: 50%;

    border: 1px solid rgba(16, 43, 85, 0.10);

    background: rgba(233, 201, 93, 0.15);

    pointer-events: none;
}


/* Decorative circle */

.donate-page .donate-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(125, 159, 75, 0.10);

    pointer-events: none;
}


.donate-page .donate-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.donate-page .donate-hero h1 {
    max-width: 850px;

    margin: 0;

    color: var(--donate-navy);

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -0.045em;
}


.donate-page .donate-hero p {
    max-width: 760px;

    margin: 30px 0 0;

    color: var(--donate-muted);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   6. DONATION METHOD NAVIGATION
========================================================= */

.donate-page .donation-method-nav {
    padding: 0 0 20px;

    background: var(--donate-cream);
}


.donate-page .donation-tabs {
    display: flex;

    align-items: stretch;

    width: 100%;

    border-top: 1px solid var(--donate-border);

    border-bottom: 1px solid var(--donate-border);

    background: rgba(255, 255, 255, 0.40);
}


.donate-page .donation-tab {
    position: relative;

    flex: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 64px;

    padding: 18px 25px;

    color: var(--donate-navy);

    font-size: 15px;

    font-weight: 700;

    text-align: center;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


.donate-page .donation-tab:not(:last-child) {
    border-right: 1px solid var(--donate-border);
}


.donate-page .donation-tab::after {
    content: "";

    position: absolute;

    left: 20%;
    right: 20%;

    bottom: -1px;

    height: 3px;

    background: transparent;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.donate-page .donation-tab:hover {
    color: var(--donate-green-dark);

    background: rgba(255, 255, 255, 0.65);
}


.donate-page .donation-tab:hover::after {
    background: var(--donate-green);

    transform: scaleX(1);
}


/* =========================================================
   7. WAYS TO GIVE
========================================================= */

.donate-page .ways-to-give {
    padding: 25px 0 110px;

    background: var(--donate-cream);
}


/* =========================================================
   8. SECTION HEADING
========================================================= */

.donate-page .section-heading {
    max-width: 760px;

    margin-bottom: 65px;
}


/*
   You added class="section-heading hedadsed"
   If you want this heading wider, this handles it.
*/

.donate-page .section-heading.hedadsed {
    max-width: 900px;
}


.donate-page .section-heading h2 {
    margin: 0;

    color: var(--donate-navy);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.donate-page .section-heading p {
    max-width: 720px;

    margin: 24px 0 0;

    color: var(--donate-muted);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   9. DONATION CARD
========================================================= */

.donate-page .donation-card {
    display: grid;

    grid-template-columns: 300px minmax(0, 1fr);

    width: 100%;

    min-height: 300px;

    margin: 0 0 30px;

    border: 1px solid var(--donate-border);

    background: rgba(255, 255, 255, 0.75);

    box-shadow:
        0 8px 30px rgba(16, 43, 85, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.donate-page .donation-card:hover {
    transform: translateY(-4px);

    border-color: rgba(125, 159, 75, 0.45);

    box-shadow:
        0 18px 45px rgba(16, 43, 85, 0.10);
}


/* =========================================================
   10. CARD IMAGE AREA
========================================================= */

.donate-page .donation-card-image {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 300px;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(246, 239, 207, 0.90),
            rgba(141, 185, 206, 0.16)
        );

    border-right: 1px solid var(--donate-border);
}


/* =========================================================
   11. LOGO BOX
========================================================= */

.donate-page .donation-logo-box {
    width: 180px;
    height: 130px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 15px;

    background: var(--donate-white);

    border: 1px solid var(--donate-border);

    box-shadow:
        0 8px 20px rgba(16, 43, 85, 0.06);
}


.donate-page .donation-logo-box img {
    display: block;

    width: auto;
    height: auto;

    max-width: 145px;
    max-height: 95px;

    object-fit: contain;
}


/* =========================================================
   12. CARD CONTENT
========================================================= */

.donate-page .donation-card-content {
    min-width: 0;

    padding: 55px 60px;
}


.donate-page .donation-card-content.full-width {
    grid-column: 1 / -1;
}


.donate-page .donation-card-content h3 {
    margin: 0 0 20px;

    color: var(--donate-navy);

    font-size: 30px;

    line-height: 1.2;

    font-weight: 500;

    letter-spacing: -0.02em;
}


.donate-page .donation-card-content p {
    max-width: 700px;

    margin: 0 0 28px;

    color: var(--donate-muted);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   13. DONATE BUTTON
========================================================= */

.donate-page .donate-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 13px 24px;

    color: #FFFFFF;

    background: var(--donate-navy);

    border: 1px solid var(--donate-navy);

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.donate-page .donate-btn span {
    display: inline-block;

    font-size: 17px;

    line-height: 1;

    transition: transform 0.25s ease;
}


.donate-page .donate-btn:hover {
    color: #FFFFFF;

    background: var(--donate-green);

    border-color: var(--donate-green);

    transform: translateY(-2px);
}


.donate-page .donate-btn:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   14. INTERAC RECIPIENT BOX
========================================================= */

.donate-page .recipient-box {
    display: inline-flex;

    flex-direction: column;

    gap: 7px;

    padding: 18px 22px;

    background: var(--donate-cream-dark);

    border-left: 4px solid var(--donate-green);
}


.donate-page .recipient-box span {
    color: var(--donate-green-dark);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.donate-page .recipient-box a {
    color: var(--donate-navy);

    font-size: 16px;

    line-height: 1.5;

    font-weight: 700;

    text-decoration: none;
}


.donate-page .recipient-box a:hover {
    color: var(--donate-blue);
}


/* =========================================================
   15. CHEQUE BOX
========================================================= */

.donate-page .cheque-payable {
    display: inline-flex;

    flex-direction: column;

    gap: 7px;

    padding: 18px 22px;

    background: var(--donate-cream-dark);

    border-left: 4px solid var(--donate-green);
}


.donate-page .cheque-payable span {
    color: var(--donate-green-dark);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.donate-page .cheque-payable strong {
    color: var(--donate-navy);

    font-size: 17px;

    line-height: 1.5;

    font-weight: 700;
}


/* =========================================================
   16. DONATE WITH CONFIDENCE
========================================================= */

.donate-page .donate-confidence {
    padding: 0 0 120px;

    background: var(--donate-cream);
}


/* =========================================================
   17. CONFIDENCE BOX
========================================================= */

.donate-page .confidence-box {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    width: 100%;

    overflow: hidden;

    background: var(--donate-navy);

    color: #FFFFFF;

    box-shadow:
        0 20px 50px rgba(16, 43, 85, 0.14);
}


/* Decorative circle */

.donate-page .confidence-box::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -150px;
    bottom: -170px;

    border-radius: 50%;

    background: rgba(125, 159, 75, 0.20);

    pointer-events: none;
}


/* Decorative circle */

.donate-page .confidence-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    top: -100px;

    border-radius: 50%;

    background: rgba(233, 201, 93, 0.10);

    pointer-events: none;
}


/* =========================================================
   18. CONFIDENCE CONTENT
========================================================= */

.donate-page .confidence-content,
.donate-page .confidence-contact {
    position: relative;

    z-index: 2;

    padding: 65px;
}


.donate-page .confidence-contact {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}


/* =========================================================
   19. CONFIDENCE EYEBROW
========================================================= */

.donate-page .confidence-box .donate-eyebrow {
    color: var(--donate-yellow);
}


/* =========================================================
   20. CONFIDENCE HEADINGS
========================================================= */

.donate-page .confidence-box h2 {
    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.donate-page .confidence-box h3 {
    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 500;
}


/* =========================================================
   21. CONFIDENCE PARAGRAPH
========================================================= */

.donate-page .confidence-box p {
    max-width: 520px;

    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   22. CONFIDENCE EMAIL
========================================================= */

.donate-page .confidence-box a:not(.donate-btn) {
    color: var(--donate-yellow);

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;
}


.donate-page .confidence-box a:not(.donate-btn):hover {
    color: #FFFFFF;
}


/* =========================================================
   23. CONFIDENCE BUTTON
========================================================= */

.donate-page .confidence-box .dark-btn {
    color: var(--donate-navy);

    background: var(--donate-yellow);

    border-color: var(--donate-yellow);
}


.donate-page .confidence-box .dark-btn:hover {
    color: #FFFFFF;

    background: var(--donate-green);

    border-color: var(--donate-green);
}


/* =========================================================
   24. ZEFFY / INTERAC / PAYPAL / CHEQUE
   OPTIONAL VISUAL DIFFERENCES
========================================================= */

.donate-page .zeffy-card .donation-card-image {
    background:
        linear-gradient(
            145deg,
            #FFF9DF,
            rgba(125, 159, 75, 0.12)
        );
}


.donate-page .interac-card .donation-card-image {
    background:
        linear-gradient(
            145deg,
            #F6EFCF,
            rgba(79, 143, 181, 0.12)
        );
}


.donate-page .paypal-card {
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.90),
            rgba(141, 185, 206, 0.08)
        );
}


.donate-page .cheque-card {
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.90),
            rgba(233, 201, 93, 0.08)
        );
}


/* =========================================================
   25. TABLET
========================================================= */

@media (max-width: 991px) {

    .donate-page .donate-container {
        width: min(100% - 40px, 900px);
    }


    /* Hero */

    .donate-page .donate-hero {
        padding: 80px 0 65px;
    }


    /* Navigation */

    .donate-page .donation-method-nav {
        padding-bottom: 55px;
    }


    /* Main */

    .donate-page .ways-to-give {
        padding-bottom: 80px;
    }


    /* Cards */

    .donate-page .donation-card {
        grid-template-columns: 230px minmax(0, 1fr);
    }


    .donate-page .donation-card-image {
        min-height: 280px;

        padding: 25px;
    }


    .donate-page .donation-card-content {
        padding: 40px;
    }


    /* Confidence */

    .donate-page .confidence-content,
    .donate-page .confidence-contact {
        padding: 45px;
    }

}


/* =========================================================
   26. MOBILE
========================================================= */

@media (max-width: 767px) {

    .donate-page .donate-container {
        width: calc(100% - 30px);
    }


    /* Hero */

    .donate-page .donate-hero {
        padding: 60px 0 50px;
    }


    .donate-page .donate-hero h1 {
        font-size: 43px;

        line-height: 1.08;
    }


    .donate-page .donate-hero p {
        margin-top: 22px;

        font-size: 16px;

        line-height: 1.65;
    }


    /* Eyebrow */

    .donate-page .donate-eyebrow {
        margin-bottom: 14px;

        font-size: 12px;
    }


    /* Tabs */

    .donate-page .donation-tabs {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }


    .donate-page .donation-tab {
        min-height: 56px;

        padding: 15px 10px;

        font-size: 14px;
    }


    .donate-page .donation-tab:nth-child(2) {
        border-right: 0;
    }


    .donate-page .donation-tab:nth-child(-n + 2) {
        border-bottom: 1px solid var(--donate-border);
    }


    /* Ways */

    .donate-page .ways-to-give {
        padding: 10px 0 70px;
    }


    .donate-page .section-heading {
        margin-bottom: 40px;
    }


    .donate-page .section-heading.hedadsed {
        max-width: 100%;
    }


    .donate-page .section-heading h2 {
        font-size: 38px;

        line-height: 1.1;
    }


    .donate-page .section-heading p {
        font-size: 16px;

        line-height: 1.65;
    }


    /* Cards */

    .donate-page .donation-card {
        display: block;

        min-height: auto;

        margin-bottom: 22px;
    }


    .donate-page .donation-card-image {
        min-height: 190px;

        padding: 25px;

        border-right: 0;

        border-bottom: 1px solid var(--donate-border);
    }


    .donate-page .donation-logo-box {
        width: 170px;
        height: 115px;
    }


    .donate-page .donation-card-content {
        padding: 30px 25px;
    }


    .donate-page .donation-card-content.full-width {
        padding: 30px 25px;
    }


    .donate-page .donation-card-content h3 {
        font-size: 26px;

        line-height: 1.2;
    }


    .donate-page .donation-card-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    /* Button */

    .donate-page .donate-btn {
        width: auto;

        min-height: 48px;

        padding: 13px 20px;
    }


    /* Confidence */

    .donate-page .donate-confidence {
        padding-bottom: 70px;
    }


    .donate-page .confidence-box {
        display: block;
    }


    .donate-page .confidence-content,
    .donate-page .confidence-contact {
        padding: 40px 25px;
    }


    .donate-page .confidence-contact {
        border-top: 1px solid rgba(255, 255, 255, 0.15);

        border-left: 0;
    }


    .donate-page .confidence-box h2 {
        font-size: 38px;
    }


    .donate-page .confidence-box h3 {
        font-size: 25px;
    }

}


/* =========================================================
   27. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .donate-page .donate-container {
        width: calc(100% - 24px);
    }


    .donate-page .donate-hero {
        padding: 50px 0 45px;
    }


    .donate-page .donate-hero h1 {
        font-size: 36px;

        letter-spacing: -0.035em;
    }


    .donate-page .donate-hero p {
        font-size: 15px;
    }


    .donate-page .donation-tabs {
        grid-template-columns: 1fr 1fr;
    }


    .donate-page .donation-tab {
        min-height: 52px;

        padding: 13px 7px;

        font-size: 13px;
    }


    .donate-page .section-heading h2 {
        font-size: 32px;
    }


    .donate-page .donation-card-content,
    .donate-page .donation-card-content.full-width {
        padding: 27px 20px;
    }


    .donate-page .donation-card-content h3 {
        font-size: 24px;
    }


    .donate-page .donation-card-content p {
        font-size: 15px;
    }


    .donate-page .recipient-box,
    .donate-page .cheque-payable {
        width: 100%;

        padding: 16px 18px;
    }


    .donate-page .donate-btn {
        width: 100%;
    }


    .donate-page .confidence-content,
    .donate-page .confidence-contact {
        padding: 35px 20px;
    }


    .donate-page .confidence-box h2 {
        font-size: 32px;
    }


    .donate-page .confidence-box h3 {
        font-size: 23px;
    }

}


/* =========================================================
   28. ACCESSIBILITY / TOUCH
========================================================= */

@media (hover: none) {

    .donate-page .donation-card:hover {
        transform: none;

        box-shadow:
            0 8px 30px rgba(16, 43, 85, 0.04);
    }

    .donate-page .donate-btn:hover {
        transform: none;
    }

}


/* =========================================================
   29. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .donate-page *,
    .donate-page *::before,
    .donate-page *::after {
        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;
    }

}
.hedadsed {
    max-width: 100%!important;
}
.donate-page{
    padding:50px 0!important;
}

/* =========================================================
   PAGE HERO / BREADCRUMB
========================================================= */

.inner-page-hero {
    position: relative;
    width: 100%;

    background-image: url("back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    overflow: hidden;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.page-breadcrumb {
    position: relative;

    width: 100%;

    /*
     * IMPORTANT
     * Header height ke liye space reserve
     */
    padding-top: 135px;

    padding-bottom: 65px;

    min-height: 360px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   OVERLAY
========================================================= */

.page-breadcrumb .breadcrumb-overlay {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(255,255,255,0.03);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.breadcrumb-container {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1130px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENT
========================================================= */

.breadcrumb-content {
    position: relative;

    width: 100%;

    max-width: 650px;
}


/* =========================================================
   ABOUT US SMALL LABEL
========================================================= */

.breadcrumb-label {
    display: block;

    margin: 0 0 12px 0;

    padding: 0;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 3px;

    color: #e1b900;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.breadcrumb-content h1 {

    position: relative;

    display: block;

    margin: 0 !important;

    padding: 0 !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;

    transform: none !important;

    font-size: 58px;

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1px;

    color: #003f68;

    z-index: 10;
}


/* =========================================================
   GOLD LINE
========================================================= */

.breadcrumb-content h1::after {

    content: "";

    display: block;

    width: 62px;

    height: 4px;

    margin-top: 20px;

    border-radius: 10px;

    background: #e3bd1c;
}


/* =========================================================
   BREADCRUMB PATH
========================================================= */

.breadcrumb-path {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    padding: 0;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    color: #064b70;
}


/* =========================================================
   HOME LINK
========================================================= */

.breadcrumb-path a {

    color: #004b73 !important;

    text-decoration: none !important;

    transition: color .3s ease;
}


.breadcrumb-path a:hover {

    color: #d5ad13 !important;

}


/* =========================================================
   CURRENT PAGE
========================================================= */

.breadcrumb-path span {

    color: #38667d;

}


/* =========================================================
   PREVENT HEADER CSS FROM AFFECTING BREADCRUMB
========================================================= */

.page-breadcrumb h1,
.page-breadcrumb .breadcrumb-label,
.page-breadcrumb .breadcrumb-path {

    position: relative;

    z-index: 10;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .page-breadcrumb {

        /*
         * Header screenshot mein approx 105-115px hai
         */
        padding-top: 135px;

        padding-bottom: 65px;

        min-height: 360px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .page-breadcrumb {

        padding-top: 120px;

        padding-bottom: 55px;

        min-height: 330px;
    }

    .breadcrumb-container {

        padding-left: 25px;
        padding-right: 25px;
    }

    .breadcrumb-content h1 {

        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .page-breadcrumb {

        padding-top: 105px;

        padding-bottom: 45px;

        min-height: 285px;
    }

    .breadcrumb-container {

        padding-left: 20px;
        padding-right: 20px;
    }

    .breadcrumb-label {

        font-size: 10px;

        letter-spacing: 2.5px;

        margin-bottom: 10px;
    }

    .breadcrumb-content h1 {

        font-size: 42px;

        line-height: 1.08;

        letter-spacing: -0.5px;
    }

    .breadcrumb-content h1::after {

        width: 52px;

        height: 3px;

        margin-top: 16px;
    }

    .breadcrumb-path {

        margin-top: 17px;

        font-size: 13px;

        gap: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .page-breadcrumb {

        padding-top: 95px;

        padding-bottom: 40px;

        min-height: 260px;
    }

    .breadcrumb-container {

        padding-left: 18px;
        padding-right: 18px;
    }

    .breadcrumb-content h1 {

        font-size: 36px;
    }

    .breadcrumb-label {

        font-size: 9px;

        letter-spacing: 2px;
    }

    .breadcrumb-path {

        font-size: 12px;
    }

}
/* =========================================================
   VANCOUVER BENGALI CLUB - CONTACT SECTION
========================================================= */

.vbc-contact-section {
    position: relative;

    width: 100%;

    padding: 100px 20px;

    background: #faf9f2;

    box-sizing: border-box;

    overflow: hidden;
}


/* Decorative soft circle */

.vbc-contact-section::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    left: -180px;
    top: 80px;

    border-radius: 50%;

    background: rgba(225, 195, 42, 0.08);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.vbc-contact-container {

    position: relative;

    z-index: 2;

    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.vbc-contact-info {
    position: relative;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.vbc-section-label {

    display: inline-block;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d9b51c;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.vbc-contact-info h2 {

    margin: 0 0 25px;

    font-size: 55px;

    line-height: 1.05;

    letter-spacing: -1px;

    color: #003f68;

    font-weight: 700;
}


/* =========================================================
   INTRO
========================================================= */

.vbc-contact-intro {

    max-width: 480px;

    margin: 0 0 35px;

    font-size: 15px;

    line-height: 1.8;

    color: #46667a;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.vbc-contact-item {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 23px;
}


/* =========================================================
   ICON
========================================================= */

.vbc-contact-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f0c9;

    color: #00446b;

    font-size: 17px;

    transition: all .3s ease;
}


.vbc-contact-item:hover .vbc-contact-icon {

    background: #e1bd22;

    color: #003f68;

    transform: translateY(-3px);
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.vbc-contact-item span {

    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #7a929f;
}


.vbc-contact-item a,
.vbc-contact-item p {

    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    color: #004b73;

    text-decoration: none;
}


.vbc-contact-item a {

    transition: color .3s ease;
}


.vbc-contact-item a:hover {

    color: #d3ad13;

}


/* =========================================================
   LOGO
========================================================= */

.vbc-contact-logo {

    margin-top: 35px;

    width: 120px;
    height: 120px;
}


.vbc-contact-logo img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   FORM BOX
========================================================= */

.vbc-contact-form-wrapper {

    position: relative;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #d9e1dc;

    border-radius: 25px;

    box-shadow:
        0 20px 55px rgba(0, 63, 104, 0.08);
}


/* =========================================================
   FORM HEADING
========================================================= */

.vbc-form-heading h3 {

    margin: 0 0 12px;

    font-size: 34px;

    line-height: 1.2;

    color: #003f68;
}


.vbc-form-heading p {

    margin: 0 0 30px;

    font-size: 14px;

    line-height: 1.7;

    color: #718894;
}


/* =========================================================
   FORM ROW
========================================================= */

.vbc-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.vbc-form-group {

    margin-bottom: 20px;
}


/* =========================================================
   LABEL
========================================================= */

.vbc-form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 700;

    color: #003f68;
}


.vbc-form-group label span {

    color: #d5ae17;
}


/* =========================================================
   INPUT + TEXTAREA
========================================================= */

.vbc-form-group input,
.vbc-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d7e0e3;

    border-radius: 9px;

    background: #fbfcf9;

    color: #003f68;

    font-size: 14px;

    outline: none;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.vbc-form-group input {

    height: 50px;
}


.vbc-form-group textarea {

    min-height: 145px;

    resize: vertical;
}


/* Placeholder */

.vbc-form-group input::placeholder,
.vbc-form-group textarea::placeholder {

    color: #9aabb2;
}


/* Focus */

.vbc-form-group input:focus,
.vbc-form-group textarea:focus {

    background: #ffffff;

    border-color: #005078;

    box-shadow:
        0 0 0 3px rgba(0, 80, 120, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.vbc-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-width: 175px;

    padding: 13px 18px 13px 23px;

    border: none;

    border-radius: 50px;

    background: #005078;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.vbc-submit-btn span {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3c12a;

    color: #003f68;

    transition: transform .3s ease;
}


.vbc-submit-btn:hover {

    background: #003b60;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 63, 104, 0.22);
}


.vbc-submit-btn:hover span {

    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vbc-contact-section {

        padding: 80px 25px;
    }

    .vbc-contact-container {

        grid-template-columns: 1fr;

        gap: 55px;

        max-width: 750px;
    }

    .vbc-contact-info h2 {

        font-size: 48px;
    }

    .vbc-contact-intro {

        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vbc-contact-section {

        padding: 65px 18px;
    }

    .vbc-contact-container {

        gap: 40px;
    }

    .vbc-contact-info h2 {

        font-size: 40px;

        line-height: 1.08;
    }

    .vbc-contact-intro {

        font-size: 14px;

        line-height: 1.7;
    }

    .vbc-contact-form-wrapper {

        padding: 28px 20px;

        border-radius: 18px;
    }

    .vbc-form-heading h3 {

        font-size: 29px;
    }

    .vbc-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .vbc-contact-logo {

        width: 100px;
        height: 100px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vbc-contact-section {

        padding: 55px 15px;
    }

    .vbc-contact-info h2 {

        font-size: 36px;
    }

    .vbc-contact-form-wrapper {

        padding: 25px 17px;
    }

    .vbc-form-heading h3 {

        font-size: 27px;
    }

    .vbc-submit-btn {

        width: 100%;
    }

}
/* =========================================================
   VANCOUVER BENGALI CLUB
   OUR TEAM SECTION
========================================================= */

.vbc-team-section {

    position: relative;

    width: 100%;

    padding: 105px 20px 110px;

    background: #faf9f2;

    overflow: hidden;

    box-sizing: border-box;

}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.vbc-team-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    top: 130px;

    border-radius: 50%;

    background: rgba(224, 191, 35, 0.08);

    pointer-events: none;

}


.vbc-team-section::after {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -200px;
    bottom: 100px;

    border-radius: 50%;

    background: rgba(0, 72, 112, 0.06);

    pointer-events: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.vbc-team-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1120px;

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.vbc-team-header {

    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;

}


/* =========================================================
   LABEL
========================================================= */

.vbc-team-label {

    display: inline-block;

    margin-bottom: 16px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d5af19;

    text-transform: uppercase;

}


/* =========================================================
   HEADING
========================================================= */

.vbc-team-header h1 {

    margin: 0;

    font-size: 55px;

    line-height: 1.05;

    letter-spacing: -1px;

    color: #003f68;

    font-weight: 700;

}


/* =========================================================
   YELLOW LINE
========================================================= */

.vbc-team-line {

    width: 62px;

    height: 4px;

    margin: 23px auto;

    border-radius: 10px;

    background: #e0bd22;

}


/* =========================================================
   HEADER DESCRIPTION
========================================================= */

.vbc-team-header p {

    max-width: 650px;

    margin: 0 auto;


    font-size: 15px;

    line-height: 1.8;

    color: #607c8b;

}


/* =========================================================
   TEAM GRID
========================================================= */

.vbc-team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

}


/* =========================================================
   TEAM CARD
========================================================= */

.vbc-team-card {

    position: relative;

    background: #ffffff;

    border: 1px solid #dce3df;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 55, 85, 0.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.vbc-team-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0, 55, 85, 0.12);

}


/* =========================================================
   IMAGE
========================================================= */

.vbc-team-image {

    position: relative;

    width: 100%;

    height: 285px;

    overflow: hidden;

    background: #e8f0c9;

}


/* =========================================================
   IMAGE
========================================================= */

.vbc-team-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .5s ease;

}


.vbc-team-card:hover .vbc-team-image img {

    transform: scale(1.06);

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.vbc-team-social {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 15px;

    display: flex;

    justify-content: center;

    gap: 8px;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity .35s ease,
        transform .35s ease;

}


.vbc-team-card:hover .vbc-team-social {

    opacity: 1;

    transform: translateY(0);

}


.vbc-team-social a {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #004b73;

    text-decoration: none;

    font-size: 13px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.vbc-team-social a:hover {

    background: #e2bd22;

    color: #003f68;

    transform: translateY(-3px);

}


/* =========================================================
   TEAM INFORMATION
========================================================= */

.vbc-team-info {

    padding: 23px 22px 25px;

    text-align: center;

}


/* =========================================================
   NAME
========================================================= */

.vbc-team-info h3 {

    margin: 0 0 7px;

    font-size: 23px;

    line-height: 1.2;

    color: #003f68;

}


/* =========================================================
   DESIGNATION
========================================================= */

.vbc-team-info > span {

    display: block;

    margin-bottom: 13px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #d1ab18;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.vbc-team-info p {

    margin: 0;


    font-size: 13px;

    line-height: 1.65;

    color: #718894;

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .vbc-team-container {

        max-width: 950px;

    }

    .vbc-team-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vbc-team-section {

        padding: 85px 25px;

    }

    .vbc-team-header {

        margin-bottom: 50px;

    }

    .vbc-team-header h1 {

        font-size: 48px;

    }

    .vbc-team-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

    .vbc-team-image {

        height: 310px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vbc-team-section {

        padding: 65px 18px 75px;

    }

    .vbc-team-header {

        margin-bottom: 40px;

    }

    .vbc-team-label {

        font-size: 10px;

        letter-spacing: 2.5px;

    }

    .vbc-team-header h1 {

        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -.5px;

    }

    .vbc-team-header p {

        font-size: 14px;

        line-height: 1.7;

    }

    .vbc-team-grid {

        grid-template-columns: 1fr;

        gap: 25px;

        max-width: 390px;

        margin: 0 auto;

    }

    .vbc-team-image {

        height: 360px;

    }

    .vbc-team-info {

        padding: 22px 20px 25px;

    }

    .vbc-team-info h3 {

        font-size: 24px;

    }

    .vbc-team-info p {

        font-size: 13px;

    }

    /* Always show social icons on touch devices */

    .vbc-team-social {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .vbc-team-section {

        padding: 55px 15px 65px;

    }

    .vbc-team-header h1 {

        font-size: 34px;

    }

    .vbc-team-header p {

        font-size: 13px;

    }

    .vbc-team-image {

        height: 320px;

    }

    .vbc-team-info h3 {

        font-size: 22px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 350px) {

    .vbc-team-section {

        padding-left: 12px;

        padding-right: 12px;

    }

    .vbc-team-header h1 {

        font-size: 31px;

    }

    .vbc-team-image {

        height: 290px;

    }

}
.reference-features-title {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 auto 35px;
    font-size: 36px;
    font-weight: 700;
}
