body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    /* background-color: #1a202c; */
    /* color: #e2e8f0; */
    margin: 0;
    padding: 0;
    display: block;
    line-height: 1.6;
}

body::-webkit-scrollbar {
    display: none;
  }

.container {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6366f1;
    /* color: #7719aa; */
    margin: 2px 0px;
    /* text-shadow: 0 0 10px rgba(99, 102, 241, 0.5); */
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px; /* Pill shape */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #10b981; /* Emerald Green */
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background-color: #6366f1; /* Indigo */
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444; /* Red */
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }
  

/* Selling Keywords (Pills) */
.keywords-section {
    padding: 25px 0;
    /* background-color: #2d3748; */
    width: 100%;
    margin: 4rem 0;
    /* margin-bottom: 50px; */
    /* box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.keyword-pill {
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.keyword-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Specific styles for each keyword pill */
.keyword-pill.offline {
    background-color: #4a5568; /* Gray-700 */
    color: #cbd5e0; /* Gray-300 */
    font-family: 'Roboto Mono', monospace;
}
.keyword-pill.portable {
    background-color: #2b6cb0; /* Blue-700 */
    color: #e0f2f7; /* Blue-100 */
    font-family: 'Montserrat', sans-serif;
}
.keyword-pill.clean {
    background-color: #38a169; /* Green-700 */
    color: #e6fffa; /* Green-100 */
    font-family: 'Inter', sans-serif;
}
.keyword-pill.tiny {
    background-color: #d69e2e; /* Yellow-700 */
    color: #fffaf0; /* Yellow-100 */
    font-family: 'Roboto Mono', monospace;
}
.keyword-pill.nodrm {
    background-color: #c53030; /* Red-700 */
    color: #fed7d7; /* Red-100 */
    font-family: 'Montserrat', sans-serif;
}
.keyword-pill.peace {
    background-color: #5a67d8; 
    color: #e0e7ff;
    font-family: 'Inter', sans-serif;
}
.keyword-pill.inline {
    background-color: #319795;
    color: #e6fffa; 
    font-family: 'Roboto Mono', monospace;
}
.keyword-pill.backup {
    background-color: #7b341e; 
    color: #fffaf0; 
    font-family: 'Montserrat', sans-serif;
}
.keyword-pill.noproprietary {
    background-color: #805ad5; 
    color: #e9d8fd; 
    font-family: 'Inter', sans-serif;
}

.keyword-pill strong {
    color: #ffffff;
    font-weight: 800;
}

footer {
    width: 100%;
    margin: 8rem auto;
    /* background-color: #0f172a; */
    /* color: #94a3b8; */
    text-align: center;
    font-size: 0.9rem;
}
.donate { color: orangered; font-weight: bold; text-decoration: none; }

/* Modal background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    }

    /* Modal content */
.modal {
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    }

.modal iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    }

    /* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: whitesmoke;
    cursor: pointer;
    z-index: 1000;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .keyword-pill {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

    .btncontact {
        background: none;
        border: none;
        /* color: #94a3b8; */
        /* text-decoration: underline; */
        cursor: pointer;
        font: inherit;
        padding: 0;
    }

    img {
        width: 100%;
        margin-bottom: 6rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        /* Crop 5px from each side */
        /* clip-path: inset(2px 2px 2px 2px);  */
    }

    /* .image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }
      
      .image-grid img {
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-radius: 8px;
      } */
      
      .image-grid {
        display: grid;
        gap: 2rem;
      }
      
      /* Default: stacked vertically */
      .image-grid img {
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-radius: 8px;
      }
      
      /* 2x2 layout on screens wider than 768px */
      @media (min-width: 768px) {
        .image-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      




    .faq-section {
        max-width: 800px;
        margin: 60px auto;
      }
      
      .faq-item {
        border-bottom: 1px solid #1a202c;
      }
      
      .faq-question {
        background: #0f172a;
        color: #94a3b8;
        padding: 15px 20px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s ease;
      }
      
      .faq-question:hover {
        /* background: #e5e7eb; */
      }
      
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
      
      .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 15px 20px;
      }


      .carousel {
        max-width: 800px;
        margin: 4rem auto;
        text-align: center;
      }
      
      .main-image {
        width: 100%;
        display: block;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        margin-bottom: 2rem;
      }
      
      .thumbnails {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      
      .thumbnails img {
        width: 150px; /* Scaled down */
        height: auto;
        cursor: pointer;
        border-radius: 6px;
        transition: transform 0.2s ease;
      }
      
      .thumbnails img:hover {
        transform: scale(1.05);
      }
      