body {
  font-family: 'Segoe UI', sans-serif;
}

.hero-section {
  background: linear-gradient(90deg, #00296B, #FFCE32);
  padding: 100px 0;
}

/* ================================================ INDEX FILE CSS ========================================================= */

/*  */

/* header section css start  */

/* ===== Custom Navbar ===== */

.custom-navbar {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 14px 0;
}

/* Brand */
.navbar-brand {
  color: #00296B !important;
  font-size: 22px;
}

.navbar-brand span {
  color: #FFCE32;
}

/* Links */
.nav-link {
  color: #00296B !important;
  font-weight: 500;
  margin-left: 18px;
  position: relative;
}

/* Hover underline animation */
.nav-anim::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: #FFCE32;
  transition: width 0.3s ease;
}

.nav-anim:hover::after {
  width: 100%;
}

/* CTA Button */
.nav-cta-btn {
  background: #235789;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-cta-btn:hover {
  background: #00296B;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile icon color fix */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}


/* header section css end  */

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */




/* Hero Participate Now Button Hover START */
.hero-section .btn {
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background-color: #235789 !important;
  border-color: #235789 !important;
  color: #fff !important;
}

/* Hero Participate Now Button Hover END */


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* Feature Cards Hover Effect START */
.card {
  transition: all 0.3s ease;
  border-radius: 16px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(35, 87, 137, 0.25);
}

.card-title {
  font-weight: 600;
}

.card-title {
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #235789;
}

.card:hover {
  background: #f4f8fc;
}

/* Feature Cards Hover Effect End */



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* <!-- WHY CHOOSE US SECTION START --> */

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.why-card p {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #e8f8f0;
  color: #28a745;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}


/* Custom Button Color */
.custom-btn {
  background-color: #235789 !important;
  border-color: #235789 !important;
  color: #fff !important;
}

.custom-btn:hover {
  background-color: #1d4a73 !important;
  border-color: #1d4a73 !important;
}

/* Outline Button */
.custom-btn-outline {
  border: 2px solid #235789 !important;
  color: #235789 !important;
  background: transparent !important;
}

.custom-btn-outline:hover {
  background-color: #235789 !important;
  color: #fff !important;
}


/* <!-- WHY CHOOSE US SECTION START --> */


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */



/* ===== Highlight Section START  ===== */

.highlight-section {
  background: #f5f8fc;
}

.highlight-tag {
  background: #e3ebf5;
  color: #00296B;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.highlight-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-left: 5px solid #FFCE32;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,41,107,0.18);
}

.highlight-card h5 {
  color: #00296B;
  font-weight: 600;
}

.highlight-card p {
  color: #555;
  margin-top: 10px;
  font-size: 15px;
}

/* CTA Button */
.highlight-btn {
  background: #235789;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
}

.highlight-btn:hover {
  background: #00296B;
  color: #fff;
}


/* ===== Highlight Section End ===== */


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */






/* ================================================ ABOUT FILE CSS ========================================================= */




/* ===== About Section Styling ===== */

.about-block {
  background: #f7f9fc;
}

/* Main Card */
.about-card-main {
  border-radius: 18px;
  border-left: 6px solid #FFCE32;
  transition: all 0.3s ease;
}

.about-card-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,41,107,0.15);
}

/* Small Cards */
.about-card {
  border-radius: 18px;
  transition: all 0.3s ease;
  border-top: 4px solid #235789;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,41,107,0.18);
  background: #ffffff;
}

/* Titles */
.about-title {
  color: #00296B;
  font-weight: 700;
}

.about-subtitle {
  color: #235789;
  font-weight: 600;
}

/* Text */
.about-text {
  color: #444;
  line-height: 1.7;
  font-size: 15.5px;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* ===== Donation Help Section ===== */

.donation-help-section {
  background: #fffdf5;
}

.highlight-text {
  color: #FFCE32;
  background: #00296B;
  padding: 4px 10px;
  border-radius: 6px;
}

.heading-line {
  width: 80px;
  height: 4px;
  background: #235789;
  margin-top: 10px;
  border-radius: 2px;
}

.section-subtitle {
  color: #00296B;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-text {
  color: #235789;
  font-size: 15.5px;
  line-height: 1.7;
}

.impact-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 41, 107, 0.1);
  border-left: 6px solid #FFCE32;
}

.impact-list {
  padding-left: 18px;
}

.impact-list li {
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.impact-list strong {
  color: #235789;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* trust wala  section  */



.trust-strip {
  background: #fff8e1;
  border-top: 3px solid #FFCE32;
  border-bottom: 3px solid #FFCE32;
}

.trust-item {
  font-weight: 600;
  color: #00296B;
}

.section-head {
  color: #00296B;
}
.section-head-1 {
  color: #FFCE32;
}


.section-text {
  color: #235789;
  line-height: 1.7;
}

.focus-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,41,107,0.1);
  transition: .3s;
  border-top: 4px solid #FFCE32;
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,41,107,0.2);
}

.faq-section .accordion-button:not(.collapsed) {
  background: #235789;
  color: #fff;
}


/* ===== Trust Scroll Replace Marquee ===== */

.trust-strip {
  background: #fff8e1;
  border-top: 3px solid #FFCE32;
  border-bottom: 3px solid #FFCE32;
}

.trust-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: trustScroll 25s linear infinite;
  font-weight: 600;
  color: #00296B;
}

.trust-track span {
  font-size: 16px;
}

/* animation */
@keyframes trustScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* ===== Background ===== */
body {
  background: linear-gradient(135deg,#00296B 0%, #235789 60%, #FFCE32 100%);
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ===== Card ===== */
.form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  padding: 42px;
  animation: fadeUp .6s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(30px)}
  to {opacity:1; transform:none}
}

/* ===== Headings ===== */
.form-title {
  color:#00296B;
  font-weight: 800;
}

.form-sub {
  color:#555;
  font-size:15px;
}

/* ===== Badge ===== */
.campaign-badge {
  background:#FFCE32;
  color:#00296B;
  font-weight:700;
  padding:8px 18px;
  border-radius:30px;
  display:inline-block;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
}

/* ===== Floating Labels tweak ===== */
.form-floating > .form-control:focus {
  border-color:#235789;
  box-shadow:0 0 0 .2rem rgba(35,87,137,.15);
}

/* ===== Select style ===== */
.form-select:focus {
  border-color:#235789;
  box-shadow:0 0 0 .2rem rgba(35,87,137,.15);
}

/* ===== Info Box ===== */
.info-box {
  background:#fff8e1;
  border-left:6px solid #FFCE32;
  padding:18px;
  border-radius:14px;
  font-size:14px;
  line-height:1.6;
}

/* ===== Button ===== */
.btn-main {
  background:#235789;
  color:#fff;
  border-radius:40px;
  padding:15px;
  font-weight:700;
  letter-spacing:.3px;
  transition:.3s;
}

.btn-main:hover {
  background:#00296B;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,41,107,.35);
}

/* ===== Progress ===== */
.progress {
  height:8px;
  border-radius:10px;
}

.progress-bar {
  background:#FFCE32;
}

/* ===== Trust Row ===== */
.trust-row {
  font-size:13px;
  color:#eee;
  text-align:center;
  margin-top:18px;
}



/* referral section dashboard START  */
/* ================= Referral Dashboard Modern Style ================= */

.ref-dashboard{
    background: linear-gradient(135deg,#ffffff 0%, #f4f8ff 100%);
    border-radius:25px;
    padding:40px;
    border:3px solid #FFCE32;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
    margin-top:40px;
}

.ref-header h3{
    font-weight:700;
    color:#00296B;
    margin:0;
}

.ref-header .badge{
    font-size:14px;
    padding:8px 15px;
    border-radius:50px;
}

.ref-box{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:0.3s ease;
    border-left:6px solid #FFCE32;
}

.ref-box:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.ref-box .label{
    font-size:13px;
    font-weight:600;
    color:#777;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ref-box h4{
    font-weight:700;
    color:#235789;
    margin-top:10px;
}

.link-box{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.link-box input{
    flex:1;
    padding:10px;
    border-radius:12px;
    border:2px solid #235789;
    font-size:14px;
}

.link-box button{
    background:#235789;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.link-box button:hover{
    background:#00296B;
    transform:scale(1.05);
}

.table{
    border-radius:15px;
    overflow:hidden;
}

.table thead{
    background:#00296B;
    color:#fff;
}

.table-hover tbody tr:hover{
    background:#f1f6ff;
}

.alert-warning{
    border-radius:15px;
    font-weight:500;
}

/* referral section dashboard END  */

/* Scroll To Top Button START */
#scrollTopBtn{
  position:fixed;
  bottom:30px;
  right:30px;
  background:#235789;
  color:#fff;
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:22px;
  cursor:pointer;
  display:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  transition:0.3s ease;
  z-index:999;
}

#scrollTopBtn:hover{
  background:#00296B;
  transform:translateY(-5px);
}

/* Scroll To Top Button END */



