:root{
  --site-clr: linear-gradient(to right, rgba(103, 58, 183, 0.8), rgba(95, 3, 255, 0.8));
  --site-clr2: #ff8a00;
  --site-clr3: #1d1276;
  --site-clr1: #673ab7;
  
}
  body, h1, p {
  margin: 0;
  padding: 0;
}
/* Basic styling */
body {
    margin-top: 50px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera, Edge, and Safari */
}
*{
    margin: 0;
    box-sizing: border-box;
}

    /* Loader Styles */
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: rgba(103, 58, 183, 0.8);
backdrop-filter: blur(5px);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}

.loader img {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 20px 0;
position: relative;
}

.loader-spinner {
border: 4px solid #f3f3f3;
border-top: 6px solid #ff8a00;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
position: absolute;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}



    /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1rem;
      background: var(--site-clr3);
      color: #ffff !important;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background: var(--site-clr1);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo-link {
      display: flex;
      align-items: center;
    }

    .logo {
      height: 40px;
      width: auto;
    }

    /* Hamburger Menu */
    .hamburger {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--site-clr2);
      border-radius: 1rem;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: var(--site-clr2);
      margin: 3px 0;
      transition: all 0.3s ease;
    }

    .hamburger.x div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.x div:nth-child(2) {
      opacity: 0;
    }

    .hamburger.x div:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Navigation */
    nav ul {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: var(--site-clr1);
      color: #fff;
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
      z-index: 999;
    }

    nav ul.show-menu {
      right: 0;
    }

    nav ul li {
      margin: 1.5rem 0;
      list-style: none;
    }

    nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li a.active {
      color: var(--site-clr2);
    }

    .btn0 {
      background: var(--site-clr2);
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      border: none;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn0:hover {
      background: var(--site-clr1);
      transform: translateY(-2px);
    }

    /* Main Content */
    main {
      margin-top: 80px;
      min-height: calc(100vh - 80px);
    }

    /* Scroll to Top Button */
    #scroll-to-top {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      width: 3rem;
      height: 3rem;
      background: var(--site-clr2);
      border: none;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    #scroll-to-top:hover {
      background: var(--site-clr1);
      transform: translateY(-2px);
    }

    /* Cookie Consent */
    .cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      color: white;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 1000;
    }

    .cookie-consent p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .cookie-consent button {
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
    }

    #accept-cookies {
      background: var(--site-clr2);
      color: white;
    }

    #learn-more {
      background: transparent;
      color: white;
      border: 1px solid white;
    }

    /* Donate Container */
    .donate-container {
      padding: 2rem 1rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.05);
      margin: 2rem 0;
    }

    /* Footer */
    footer {
      background: var(--site-clr3);
      color: white;
      padding: 2rem 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-col h4 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 0.5rem;
    }

    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-col ul li a:hover {
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    .footer-bottom-icons {
      display: flex;
      gap: 1rem;
      list-style: none;
    }

    .footer-bottom-icons li a {
      color: white;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-icons li a:hover {
      color: var(--site-clr2);
    }

    /* Tablet Styles */
    @media (min-width: 768px) {
      .header {
        padding: 1rem 2rem;
      }

      .hamburger {
        display: none;
      }

      nav ul {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        display: flex;
        gap: 2rem;
      }

      nav ul li {
        margin: 0;
      }

      nav ul li a {
        font-size: 1rem;
      }

      .cookie-consent {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }

      .footer-top {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    /* Desktop Styles */
    @media (min-width: 1024px) {
      .header-content {
        padding: 0 2rem;
      }

      .footer-top {
        grid-template-columns: repeat(4, 1fr);
      }

      .donate-container {
        padding: 3rem 2rem;
      }
    }

    /* Large Desktop Styles */
    @media (min-width: 1200px) {
      .header-content {
        max-width: 1200px;
      }

      .footer-container {
        max-width: 1200px;
      }
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
        animation: none !important;
      }
    }

    /* High Contrast Support */
    @media (prefers-contrast: high) {
      .header {
        background: var(--site-clr1);
        border-bottom: 2px solid #000;
      }

      nav ul li a {
        color: #000;
      }

      .btn0 {
        border: 2px solid #000;
      }
    }

    /* Print Styles */
    @media print {
      .header,
      .donate-container,
      .cookie-consent,
      #scroll-to-top {
        display: none;
      }

      main {
        margin-top: 0;
      }
    }

    /* Touch Device Optimizations */
    @media (hover: none) and (pointer: coarse) {
      .btn0:hover,
      #scroll-to-top:hover,
      .footer-col ul li a:hover,
      .footer-bottom-icons li a:hover {
        transform: none;
      }

      .btn0:active,
      #scroll-to-top:active {
        transform: scale(0.95);
      }
    }

    /* Focus Styles for Accessibility */
    a:focus,
    button:focus {
      outline: 2px solid var(--site-clr2);
      outline-offset: 2px;
    }


.container {
max-width: 1080px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
color:#000
}

.section-header {
margin-bottom: 50px;
text-align: center;
}

.section-header h2 {
color:var(--site-clr3);
font-weight: bold;
font-size: 3em;
margin-bottom: 20px;
}

.section-header p {
color: #000;
}

.row  {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}

.contact-info {
width: 50%;
}

.contact-info-item {
display: flex;
margin-bottom: 30px;
}

.contact-info-icon {
height: 70px;
width: 70px;
background-color: #fff;
text-align: center;
border-radius: 50%;
}

.contact-info-icon i {
font-size: 30px;
line-height: 70px;
color:#000 !important
}

.contact-info-content {
margin-left: 20px;
}

.contact-info-content h4 {
color:#673ab7;
font-size: 1.4em;
margin-bottom: 5px;
}

.contact-info-content p {
color: #000;
font-size: 1em;
}

.contact-form {
background-color: #fff;
padding: 40px;
width: 45%;
padding-bottom: 20px;
padding-top: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
font-weight: bold;
font-size: 2em;
margin-bottom: 10px;
color: #333;
}

.contact-form .input-box {
position: relative;
width: 100%;
margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
width: 100%;
padding: 5px 0;
font-size: 16px;
margin: 10px 0;
border: none;
border-bottom: 2px solid #333;
outline: none;
resize: none;
}

.contact-form .input-box span {
position: absolute;
left: 0;
padding: 5px 0;
font-size: 16px;
margin: 10px 0;
pointer-events: none;
transition: 0.5s;
color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
color: #e91e63;
font-size: 12px;
transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
width: 100%;
background:#673ab7;
color:#ff8a00;
border: none;
cursor: pointer;
padding: 10px;
font-size: 18px;
border: 1px solid #673ab7;
transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
background:#673ab7;
color:#ff8a00;
}

