    body {
      margin: 0;
      font-family: Arial, sans-serif;
      text-align: center;
      background:#fff !important;
    
    }
    .background-container{
  background-image: url('images/cancer=bg1.png'); /* your image path */
  background-repeat: repeat;       /* repeats both horizontally & vertically */
  background-position: top left;   /* starting position */
  background-size: auto;           /* keeps original image size */

    }
    
 .midelnav{position:fixed;top:0;height:200px;width:100%;background:#fff;z-index:999;}
  

/* Header container with flex */
.logo-header {
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: flex-start;
  padding:20px 50px 0px 50px;
  background: #fff;
  position:fixed;
  top:40px;
  z-index: 1000;
}

/* Logo */
.logo {
  margin-right: 20px; /* spacing between logo and text */
}
.logo img {
  width: 130px;
  max-width: 100%;
  display: block;
}

/* Title box */
.title-box {
  text-align: left;  /* keep text aligned properly */
}

.title-box span {
  font-family: 'Playfair Display', serif;
  font-size:42px;
  font-weight:600;
  
  background:#0f172a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-top: 0; /* removed the extra top margin */
}

.slogan {
  font-size: 20px; /* slightly larger */
  font-weight: 500; /* bolder for better visibility */
  /*color: #0f172a; /* dark text on white background */
  color:#7b2ff7;
  letter-spacing: 0.5px; /* better readability */
  margin-top: 8px;
  padding: 8px 14px;
  display: inline-block;
 /* background: linear-gradient(90deg, #7b2ff71a, #00c6ff1a); /* soft gradient background */
 /* border-left: 4px solid #7b2ff7; /* accent bar */
  border-radius: 6px;
  font-style: italic;
}

.donation-btn {
    display:block;
    position:fixed;
  text-align: right;       /* ✅ moves button to the right */
  top: 100px;
  right: 50px;      /* optional spacing from the right edge */
  z-index: 1000;
  background: #ffffff;
  
 
  
}

.donation-btn button {
  background: linear-gradient(90deg, #7b2ff7, #00c6ff);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(123, 47, 247, 0.5),
              0 0 15px rgba(0, 198, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* glowing light effect */
.donation-btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
 
}

/* Responsive */
@media (max-width: 768px) {
    .donation-btn{display:none;}
  .header {
    flex-direction: column;
    text-align: center;

  }
  
  .midelnav{top:-30;width:auto;height:0px;position:relative;background:none;}
  
  .logo-header {flex-direction: column;
    text-align: center; position:relative;top:-10px;}
  .logo {
    margin:0 auto;
    margin-bottom: 10px;
    position:relative;
  }
  .title-box {
    text-align: center;
  }
  .title-box span {font-size:30px;}
}



.logo img {
  width: 90px;
  display: block;
}



    /* Hero Section */
    .hero {
      width: 100%;
      overflow: hidden;
      margin-top:220px;
    }
    .hero img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    
    /*  Footer CSS */
    
.quicklinks-section {
  background: #f1f5f9; /* soft grey */
  padding: 50px 20px;
  text-align: center;
}

.quicklinks-container {
  max-width: 1000px;
  margin: 0 auto;
}

.quicklinks-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1e293b;
}

/* Quick Links Grid */
.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.quicklinks-grid a {
  text-decoration: none;
  font-weight: 500;
  color: #334155;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.quicklinks-grid a:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Social Media Row */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #0f172a;
  color: #fff;
}

.contact-section {
  background: #ffffff;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Form Styles */
.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

.contact-btn {
  background: #3b82f6;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #2563eb;
}

/* Contact Details */
.contact-details {
  text-align: left;
  background: #f8fafc;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.contact-details p {
  margin: 10px 0;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding-right: 5px;
  }
}


.footer-section {
  background: #0f172a; /* deep blue */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-note {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Social Media Row */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  transition: all 0.3s;
}

.social-links a {
  text-decoration: none;
}


.social-icon:hover {
  background: #0f172a;
  color: #fff;
}

    
