    :root {
      --bg-color: #008080;
      --hero-start-color: #004d4d;
      --hero-end-color: #011212;
      --accent-color: #38b2ac;
      --text-color: #ffffff;
      --font-body: 'Inter', sans-serif;
      --dark-text: #0a2c4a;
    }

    * { margin:0; padding:0; box-sizing:border-box; font-family: var(--font-body); }
    body { line-height:1.6; color:#333; background: var(--bg-color); }

    /* HEADER STYLING */
    header {
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:20px 50px;
      background: rgba(10, 44, 74, 0.95);
      color:#fff;
      flex-wrap:wrap;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .brand-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    header h2 {
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: -0.5px;
    }

    nav {
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap: 30px;
    }

    nav a {
      color:#fff;
      text-decoration:none;
      font-weight:500;
      opacity: 0.85;
      transition: all 0.3s ease;
      position: relative;
    }

    nav a:hover, nav a.active {
      opacity:1;
    }

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent-color);
      border-radius: 1px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .btn-sign-up {
      padding: 10px 24px;
      border: 2px solid #fff;
      border-radius: 6px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-sign-up:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
      transform: translateY(-2px);
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      background: rgba(10, 44, 74, 0.98);
      backdrop-filter: blur(10px);
      padding: 20px;
      flex-direction: column;
      gap: 15px;
      z-index: 99;
      animation: slideInDown 0.3s ease;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      padding: 12px 15px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
      background: rgba(255, 255, 255, 0.1);
      padding-left: 25px;
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* HERO SECTION */
    .hero {
      position: relative;
      width: 100%;
      height: 90vh;
      background: linear-gradient(to bottom, var(--hero-start-color), var(--hero-end-color));
      overflow: hidden;
      color: var(--text-color);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 10vw;
      padding-top: 110px;
      margin-bottom: 1rem;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(var(--bg-color) 0.5px, transparent 0.5px),
        radial-gradient(var(--bg-color) 0.5px, transparent 0.5px);
      background-size: 40px 40px;
      background-position: 0 0, 20px 20px;
      opacity: 0.1;
      pointer-events: none;
    }

    .hero-ink {
      position: absolute;
      top: 50%;
      left: 60%;
      transform: translate(-50%, -50%) scale(1);
      width: 60vh;
      height: 60vh;
      background-image: url('https://images.unsplash.com/photo-1543857778-c4a1a3e0b2eb?q=80&w=600');
      background-size: cover;
      background-position: center;
      border-radius: 50%;
      filter: drop-shadow(0 0 40px var(--accent-color));
      opacity: 0.8;
      z-index: 1;
      mask-image: radial-gradient(circle, #fff 40%, rgba(255,255,255,0) 80%);
      -webkit-mask-image: radial-gradient(circle, #fff 40%, rgba(255,255,255,0) 80%);
      animation: float 6s ease-in-out infinite;
    }
    /* ====================== MOBILE RESPONSIVE FIX ====================== */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;           /* Reduced padding on mobile */
    position: fixed;              /* Better for mobile - stays on top */
    top: 0;
    z-index: 1000;
  }

  .hero {
    padding-top: 85px !important; /* Reduced top padding - pulls hero up */
    min-height: 100vh;
  }

  .hero-text-container {
    padding-top: 20px;
  }

  /* Optional: Make hero content tighter on mobile */
  .hero-title {
    font-size: 2.2rem;
    margin: 15px 0;
  }

  .hero-pretitle {
    font-size: 1.1rem;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .hero {
    padding-top: 75px !important;
  }
}

    @keyframes float {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -55%) scale(1.05); }
    }

    .particles {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 2;
    }

    .particle {
      position: absolute;
      background-color: var(--accent-color);
      border-radius: 50%;
      opacity: 0.5;
      animation: float 8s ease-in-out infinite;
    }

    .p1 { width: 4px; height: 4px; top: 30%; left: 55%; animation-delay: 0s; }
    .p2 { width: 6px; height: 6px; top: 45%; left: 65%; animation-delay: 1s; }
    .p3 { width: 3px; height: 3px; top: 60%; left: 58%; animation-delay: 2s; }
    .p4 { width: 5px; height: 5px; top: 70%; left: 63%; animation-delay: 3s; }

    .hero-loan-info {
      position: absolute;
      top: 50%;
      right: 10vw;
      transform: translateY(-50%);
      width: 300px;
      padding: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      backdrop-filter: blur(5px);
      z-index: 5;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      animation: slideInRight 0.8s ease;
    }

    .hero-loan-info:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-50%) translateX(-5px);
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
      }
    }

    .loan-type { margin-bottom: 10px; font-weight: 500; color: rgba(255,255,255,0.7); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
    .loan-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; color: var(--accent-color); }
    .loan-desc { font-size: 0.9rem; margin-bottom: 20px; color: rgba(255,255,255,0.85); line-height: 1.5; }
    
    .btn-loan-more {
      padding: 10px 20px;
      background-color: var(--accent-color);
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-loan-more:hover {
      background-color: #fff;
      color: var(--hero-start-color);
      transform: translateY(-2px);
    }

    .hero-text-container {
      padding-right: 5vw;
      max-width: 600px;
      justify-self: start;
      align-self: center;
      text-align: left;
      z-index: 10;
      animation: slideInLeft 0.8s ease;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-pretitle {
      font-size: 0.9rem;
      font-weight: 300;
      margin-bottom: 10px;
      opacity: 0.8;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -1.5px;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      max-width: 500px;
      opacity: 0.85;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .btn-hero {
      display: inline-block;
      padding: 14px 32px;
      background-color: #fff;
      color: var(--hero-start-color);
      text-decoration: none;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid #fff;
    }

    .btn-hero:hover {
      background-color: var(--accent-color);
      color: #fff;
      border-color: var(--accent-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .side-dots {
      position: absolute;
      top: 50%;
      left: 30px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 10;
    }

    .side-dots .dot {
      width: 10px;
      height: 10px;
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .side-dots .dot:hover {
      background-color: rgba(255, 255, 255, 0.6);
    }

    .side-dots .dot.active {
      background-color: var(--accent-color);
      box-shadow: 0 0 15px var(--accent-color);
    }

    .side-dots .scroll-indicator {
      margin-top: 20px;
      color: rgba(255,255,255,0.4);
      transform: rotate(90deg);
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .side-icons {
      position: absolute;
      bottom: 60px;
      right: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      z-index: 10;
      color: rgba(255,255,255,0.5);
    }

    .side-icons span {
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .side-icons span:hover {
      color: var(--accent-color);
      transform: scale(1.2);
    }

    .side-icons .vertical-text {
      writing-mode: vertical-rl;
      text-transform: uppercase;
      font-size: 0.65rem;
      letter-spacing: 2px;
      margin-top: 10px;
      opacity: 0.5;
      font-weight: 600;
    }

    .footer-loan-stats {
      position: absolute;
      bottom: 30px;
      left: 10vw;
      display: flex;
      gap: 60px;
      z-index: 5;
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
    }

    .footer-loan-stats > div {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .footer-loan-stats .stat-label {
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .footer-loan-stats .stat-value {
      font-weight: 700;
      color: var(--accent-color);
      font-size: 1.3rem;
    }

    /* SECTIONS */
    section {
      padding:100px 20px;
      background: #fff;
    }

    .about, .why, .testimony {
      max-width:1100px;
      margin:auto;
      text-align:center;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--dark-text);
      font-weight: 700;
    }

    .about p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.8;
      max-width: 800px;
      margin: auto;
    }

    .why-grid {
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap:30px;
      margin-top:40px;
    }

    .card {
      padding:40px 30px;
      border-radius:12px;
      background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
      border: 1px solid #eee;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      position: relative;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--accent-color), var(--hero-start-color));
      border-radius: 12px 12px 0 0;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .card h3 {
      color: var(--dark-text);
      margin-bottom: 15px;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .card p {
      color: #666;
      line-height: 1.6;
    }

    .testimony blockquote {
      margin:25px 0;
      font-size: 1.05rem;
      font-style:italic;
      padding: 25px 30px;
      background: linear-gradient(135deg, rgba(56, 178, 172, 0.05) 0%, rgba(0, 128, 128, 0.05) 100%);
      border-left: 4px solid var(--accent-color);
      color: #333;
      border-radius: 6px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }

    footer {
      background: linear-gradient(135deg, #0a2c4a 0%, #051f2e 100%);
      color:#fff;
      text-align:center;
      padding:50px 20px;
    }

    footer p {
      margin: 10px 0;
      opacity: 0.9;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
      header { padding: 15px 40px; }
      .hero { grid-template-columns: 1fr; text-align: center; padding: 0 5vw; }
      .hero-text-container { margin: auto; padding-right: 0; }
      .hero-title { font-size: 2.8rem; }
      .hero-ink { width: 50vh; height: 50vh; }
      .hero-loan-info { display: none; }
      .footer-loan-stats { display: none; }
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
        position: static;
      }

      .hamburger {
        display: flex;
      }

      nav {
        display: none;
      }

      .header-right {
        display: none;
      }

      .mobile-menu .btn-sign-up {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
      }

      .hero {
        padding: 20px;
        padding-top: 80px;
        grid-template-columns: 1fr;
      }

      .hero-title { font-size: 2rem; }
      .hero-subtitle { font-size: 1rem; }
      .side-dots, .side-icons { display: none; }
      .hero-ink { width: 40vh; height: 40vh; }
      .hero-text-container { padding: 0; }

      h2 { font-size: 1.8rem; }
      section { padding: 60px 20px; }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 25px 20px;
      }
    }

    @media (max-width: 480px) {
      header h2 { font-size: 1.2rem; }
      .hero-title { font-size: 1.5rem; }
      .hero-pretitle { font-size: 0.8rem; }
      .hero-subtitle { font-size: 0.9rem; }
      .btn-hero { padding: 10px 20px; font-size: 0.9rem; }
      
      h2 { font-size: 1.5rem; margin-bottom: 30px; }
      .about p { font-size: 0.95rem; }
      .testimony blockquote { padding: 15px 20px; font-size: 0.95rem; }
    }
/* Install Button Styling */
.install-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700, #ffcc00);
  color: #000;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.install-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.install-btn:active {
  transform: scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {
  .install-btn {
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .install-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ====================== CONTRIBUTE SECTION ====================== */
.contribute-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e2937);
  color: white;
  text-align: center;
}

.contribute-container {
  max-width: 800px;
  margin: 0 auto;
}

.contribute-section h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #FFD700;
}

.contribute-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Start Contribution Button */
.btn-start-contribution {
  background: linear-gradient(135deg, #FFD700, #ffcc00);
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-start-contribution:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.5);
}

.btn-start-contribution i {
  margin-right: 10px;
}

/* Search Contribution */
.search-contribution {
  max-width: 600px;
  margin: 0 auto;
}

.search-contribution h3 {
  margin-bottom: 20px;
  color: #FFD700;
  font-size: 1.4rem;
}

.search-box {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

#search-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  background: white;
  color: #000;
}

#search-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.btn-search {
  padding: 0 32px;
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #ffed4e;
  transform: scale(1.05);
}

/* ====================== HOW IT WORKS SECTION ====================== */
.how-it-works {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e2937;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #FFD700;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  color: #1e2937;
}

/* Responsive */
@media (max-width: 768px) {
  .contribute-section {
    padding: 60px 15px;
  }
  
  .contribute-section h2 {
    font-size: 2.2rem;
  }

  .search-box {
    flex-direction: column;
  }

  .btn-search {
    padding: 16px;
  }

  .how-it-works {
    padding: 60px 15px;
  }
}

/* ====================== PROFESSIONAL FOOTER ====================== */
footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  color: #FFD700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-column p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: #FFD700;
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #FFD700;
  color: #000;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}