/* ================== General Reset ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================== Body & Typography ================== */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================== Header & Navigation ================== */
header {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6f61;
}

/* ================== Section Styling ================== */
section {
    padding: 60px 20px;
    text-align: center;
}

section#home {
    background-color: #fff;
    color: #333;
}

section#services {
    background-color: #f4f4f4;
}

section#purchase {
    background-color: #e2e2e2;
}

section#contact {
    background-color: #fff;
}

section#about {
    background-color: #f4f4f4;
}

h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ================== Container ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== Services Section ================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
}

/* ================== Forms ================== */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #ff6f61;
}

/* ================== Footer ================== */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* ================== Mobile Responsive ================== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    section {
        padding: 40px 20px;
    }

    h1, h2 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1, h2 {
        font-size: 1.5rem;
    }

    nav ul li {
        margin: 10px 0;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}

/* ================== WhatsApp Button ================== */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-logo {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.whatsapp-button span {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .whatsapp-logo {
        width: 20px;
        height: 20px;
    }
}

/* ================== Featured Product ================== */
#featured-product {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#featured-product h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

#featured-product p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.featured-product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
}

.section-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for desktop */
.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.featured-product-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.product-info {
    max-width: 450px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    background-color: #FF7A00;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        position: relative;
    top: -10px;   /* Moves it up */
    float: right; /* Moves it to the right */
 }

.learn-more:hover {
    background-color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
    .featured-product-card {
        flex-direction: column;
        align-items: center;
    }

    .featured-product-image {
        width: 80%;          /* smaller than full width */
        max-width: 200px;    /* hard limit so it doesn't dominate */
        height: auto;        /* keep proportions */
        object-fit: contain; /* no cropping */
        border-radius: 10px;
    }

    .product-info {
        text-align: center;
    }
}

/* ================== Purchase Button & Modal ================== */
.purchase-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.purchase-btn:hover {
    background-color: #218838;
}

.payment-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.close-btn {
    color: #aaa;
    font-size: 36px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

.payment-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.payment-option {
    width: 45%;
    padding: 10px;
    text-align: center;
}

.payment-option h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.qr-image {
    width: 100%;
    max-width: 200px;
    cursor: pointer;
}

.paypal-btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #0070ba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paypal-btn:hover {
    background-color: #00609e;
}

/* ================== Tools Section ================== */
.toggle-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.toggle-btn:hover {
    background-color: #0056b3;
}

.toggle-btn.active {
    background-color: #28a745;
}

.tool-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fafafa;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tool-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    color: white;
    background-color: #28a745;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: #218838;
}

/* Responsive Tools */
@media screen and (max-width: 768px) {
    .tool-card {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .tool-card h3 {
        font-size: 1.2rem;
    }

    .tool-card p {
        font-size: 0.95rem;
    }
}
.tool-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* Tool card styling */
.tool-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background-color: #fafafa;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.tool-card p {
  font-size: 0.95rem;
  color: #555;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  color: white;
  background-color: #28a745;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background-color: #218838;
}

/* Toggle Button Styling */
.toggle-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.toggle-btn:hover {
  background-color: #0056b3;
}

.toggle-btn.active {
  background-color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .tool-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tool-list-grid {
    grid-template-columns: 1fr;
  }
}



        /* Feature list with icons */
.feature-list {
    list-style: none; /* remove default bullets */
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* center the items */
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    display: flex;
    align-items: flex-start; /* icon at top-left of text */
    gap: 12px; /* space between icon and text */
    text-align: left;
    width: 100%;
}

.feature-list li::before {
    content: attr(data-icon); /* use the data-icon attribute */
    font-size: 1.5rem; /* icon size */
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


        /* Overview text */
        .overview-text {
            max-width: 750px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.6;
        }

        /* Premium section card style */
        .premium-info {
            background-color: #fff3e0;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: inline-block;
        }

        /* Screenshots */
        .screenshots-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .screenshots-container img {
            width: 300px;
            border-radius: 10px;
        }

        /* Section spacing */
        section {
            padding: 60px 20px;
        }
        section h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        /* Buttons */
        .buy-now-button {
            display: inline-block;
            background-color: #FF7A00;
            color: white;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            border-radius: 50px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 10px;
        }
        .buy-now-button:hover {
            background-color: #FF5722;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
.contact-buttons {
    display: flex;
    gap: 12px;             /* space between buttons */
    justify-content: center; 
    align-items: center;    
    margin-top: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: #25D366; /* WhatsApp green by default, override in HTML if needed */
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}



/* Pricing Cards */
.pricing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 900px;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.pricing-card .plan-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: #666;
}

.pricing-card .save {
    font-size: 0.9rem;
    color: #FF7A00;
    font-weight: bold;
}

.pricing-card.highlight {
    border: 2px solid #FF7A00;
    background: #fffaf5;
}

/* Compact How It Works */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-grid .step {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  font-size: 0.95rem;
}