<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        :root {
            --primary-color: #2e86ab;
            --secondary-color: #f18f01;
            --accent-color: #c73e1d;
            --light-color: #f7f7f7;
            --dark-color: #333;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Raleway', sans-serif;
        }
        
        body {
            background-color: var(--light-color);
        }
        
        .header {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            height: 100px;
            margin-right: 1px;
            border-right: 2px solid var(--secondary-color);
        }
        
        .tagline {
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 500;
            max-width: 200px;
            line-height: 1.4;
            padding-left: 15px;
        }
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
            margin: 0 10px;
        }
        
        .nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative; /* Required for ::before positioning */
}

/* Hover text color remains as-is */
.nav-link:hover {
  color: var(--primary-color);
}

/* Icon styling remains unchanged */
.nav-link i {
  margin-left: 5px;
  font-size: 12px;
  transition: var(--transition);
}

/* Add the blue line on hover */
.nav-link::before {
  content: "";
  position: absolute;
  top: 0; /* Top border */
  left: 0;
  width: 0;
  height: 3px;
  background-color: #487ae8; /* Tailwind blue-600 */
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::before {
  width: 100%;
}

        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }
        
        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-link {
            text-decoration: none;
            color: var(--dark-color);
            font-size: 14px;
            display: block;
            transition: var(--transition);
        }
        
        .dropdown-link:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .donate-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            margin-left: 50px;
        }
        
        .donate-btn i {
            margin-right: 8px;
        }
        
        .donate-btn:hover {
            background-color: #a53419;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 62, 29, 0.3);
        }
        @media (max-width:1245px) {
          .logo-section{
            max-width: 400px;
          }
          .logo{
            max-width: 190px;
          }
          .tagline{
            max-width: 90px;
          }
          .nav-menu{
            max-width: 750px;
          }
          .nav-link{
            font-size: 15px;
          }
        }
        @media (max-width: 992px) {
            .logo-section{
                margin-left: 70px;
            }
            .nav-toggle {
                display: block;
                margin-right: 20px;
            }
            
            .nav-menu {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                flex-direction: column;
            }
            
            .nav-menu.active {
                max-height: 1000px;
                padding: 20px 0;
            }
            
            .nav-list {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-item {
                margin: 5px 0;
                width: 100%;
            }
            
            .nav-link {
                padding: 12px 0;
                justify-content: space-between;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                transform: none;
                background-color: #f9f9f9;
                border-radius: 5px;
                margin-top: 5px;
            }
            
            .dropdown-menu.active {
                max-height: 300px;
                padding: 10px 0;
            }
            
            .dropdown-item {
                padding: 10px 25px;
            }
            
            .action-buttons {
                display: flex;
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }
            
            .donate-btn {
                width: 50%;
                margin: auto;
                text-align: center;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .logo-section {
                flex-direction: row;
                align-items: flex-start;
                margin-left: 0;
            }
            .logo {
                height: 80px;
                margin-right: 10px;
            }
        }

          .latest-opinions {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 1600px;
  }
  .opinion-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .opinion-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    max-width: 400px;
    text-align: center;
  }
  .opinion-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

          .carousel-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 40px auto;
      overflow: hidden;
      background-color: #fff;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .carousel-slide {
      min-width: 250px;
      flex-shrink: 0;
      padding: 10px;
    }

    .carousel-slide img {
      width: 100%;
      height: 100px;
      object-fit: contain;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      z-index: 100;
    }

    .carousel-btn.prev {
      left: -10px;
    }

    .carousel-btn.next {
      right: -10px;
    }

    .carousel-dots {
      text-align: center;
      margin-top: 10px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #333;
    }
    @media (max-width: 992px) {
  .text-slider {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
  }
      .logo img {
        width: 50%;
        height: auto;
        margin: 0 auto;
      }
      .header-text {
        font-size: 24px;
        text-align: center;
        margin-top: 20px;
        width: 50%;
        margin: 0 auto;
      }
      .opinion-cards{
        flex-direction: column;
        align-items: center;
      }
    }
    @media (max-width: 480px) {
      .navbar ul li:nth-last-child(2) {
         margin-left: 100px;
     }
      .hero-image img {
        width: 100%;
        height: auto;
      }
      .text-slider {
        padding: 10px;
      }
     }

/* ===== TEXT SLIDER ===== */
.text-slider {
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  padding: 10px 0;
  font-weight: bold;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.slide-group {
  display: flex;
}

.slide {
  padding-right: 100px;
  white-space: nowrap;
}

.impact-right{
  display: block !important;
  width: 100%;
  height: 100%;
}
/* Continuous scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
 @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Apply animation to cards */
    .fade-in-up {
      opacity: 0;
      animation: fadeUp 0.8s ease-out forwards;
    }

    /* Staggering effect for each card */
    .fade-delay-1 { animation-delay: 0.2s; }
    .fade-delay-2 { animation-delay: 0.4s; }
    .fade-delay-3 { animation-delay: 0.6s; }
    .fade-delay-4 { animation-delay: 0.8s; }
    .fade-delay-5 { animation-delay: 1.0s; }
    .fade-delay-6 { animation-delay: 1.2s; }

    /*whatsapp*/
    .whatsapp-float {
  position: fixed;
  bottom: 50px;
  left: 50px;
  z-index: 999;
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 40px;
    left: 40px;
  }
  .whatsapp-icon {
    width: 70px;
    height: 70px;
  }
}
 /* FOOTER STYLES  */
.footer {
  background: linear-gradient(135deg, #465c89, #0b638b, #189ef1);
  color: #e0f7fa;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(197, 54, 54, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  bottom: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  font-size: 1.7rem;
  color: #ffffff;
  border-left: 6px solid #6fd0e9;
  padding-left: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a,
.footer-section li {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a {
  text-decoration: none;
  color: #e0e0e0;
  position: relative;
}

.footer-section a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #00f7ff;
  transition: width 0.3s ease;
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-section a:hover {
  color: #00f7ff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-section ul li::before {
  content: 'âž¤';
  position: absolute;
  left: 0;
  top: 5px;
  color: #00e6e6;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    max-width: 500px;
  }

  .footer-section h3 {
    border-left: none;
    border-bottom: 2px solid #00f7ff;
    padding-left: 0;
    padding-bottom: 5px;
  }
}
.footer-bottom {
  background: linear-gradient(135deg, #0f172a, #1e3a8a); 
  padding: 25px 15px;
  text-align: center;
  color: #dbeafe; 
  font-size: 1.3rem;
  position: relative;
  border-top: 2px solid #3b82f6; 
  box-shadow: 0 -3px 20px rgba(59, 130, 246, 0.25); 
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background: #3b82f6; 
  border-radius: 3px;
}

.footer-bottom a {
  color: #60a5fa; 
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #93c5fd; 
}

/*about page*/
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.opacity-0 { opacity: 0; }
.animate-fadeInUp { animation: fadeInUp 0.9s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.9s ease forwards; }
.animate-zoomIn { animation: zoomIn 0.9s ease forwards; }
</pre></body></html>