
html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1,
h2,
h3 {
    font-weight: 700;
    color: #1f0079;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.2em;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

h2.custom-heading {
    font-size: 2.5em;
    margin-bottom: 25px;
    justify-content: center;
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: darkblue;
}

h2.custom-heading::after {
    content: "";
    display: block;
    height: 3px;
    bottom: 0;
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    margin: 8px auto 0 auto;
    border-radius: 2px;
    width: 60%;
}



h3 {
    font-size: 1.6em;
    margin-top: 0;
    color: #1f0079;
    /* Medium Teal */
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Buttons */
.button {
    /* width: 15%; */
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.primary-button {
    margin-left: 20px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #656f6f;
}

.primary-button:hover {
    background-color: linear-gradient(90deg, #004d40 0%, #1f0079 100%);
    ;
    /* Dark Teal */
    border-color: #b0b3b3;
    transform: translateY(-2px);
}

/* button .fa-spinner {
  margin-right: 8px;
} */

/* Sections */
.section {
    padding: 60px 0;
    text-align: center;
}

.section:nth-of-type(even) {
    background-color: #eceff1;
    /* Lighter grey for alternating sections */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    /* Teal gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    /* Make it take up more of the viewport height */
    position: relative;
    overflow: hidden;
    /* For any potential background effects */
}

.hero-section .container {
    z-index: 1;
    /* Ensure content is above any background effects */
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .tagline {
    font-size: 1.5em;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-section .hero-image {
    /* max-width: 300px; Adjust size as needed */
    width: 100%;
    height: auto;
    display: block;
    /* Remove extra space below image */
    margin: 0 auto 30px auto;
    animation: fadeInScale 1s ease-out forwards;
    /* Simple animation */
}


.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #1f0079;
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.3);
}

.btn {
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    /* background-color: #0097a7; */
    transform: scale(1.05);
}


@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Problem/Solution Section */
.problem-solution-section h2 {
    color: #1f0079;
    /* Dark Teal */
}

.problem-solution-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.problem-solution-section strong {
    color: #1f0079;
    /* Medium Teal */
}

/* How It Works / Features Section */
.how-it-works-section {
    background-color: #f8f8f8;
    /* Light background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item img {
    max-width: 120px !important;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-section {
    background-color: #eceff1;
}

.benefits-list {
    padding-inline-start: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(535px, 1fr));
    gap: 30px;
    text-align: left;
}


.benefits-list li {
    position: relative;
    background-color: #fff;
    padding: 25px 25px 25px 35px;
    /* Add left space for the gradient border */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
}

.benefits-list li strong {
    color: #1f0079;
}



/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    color: #fff;
    padding: 60px 0;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ctasection1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    height: 3px;
    background: #b3b1b1;
    border-radius: 2px;
}

.secondary-button {
    /* width: 25%; */
    background-color: transparent;
    color: #fff;
    border: 2px solid #656f6f;
}

.secondary-button:hover {
    border-color: #b0b3b3;
    transform: translateY(-2px);
}


.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px;
    border-radius: 20px;
}


.pricing-card {
    background: #fff;
    border-radius: 5%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}


.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2px;
    padding: 25px;
    border-radius: 15px;
}

.pricing-card .price {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #222;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card .desc {
    margin: 0px 55px;
    color: #555;
    font-weight: 600;
}

.pricing-card ul {
    /* padding-left: 20px; */
    margin: 20px 0px;
    list-style-type: disc;
    color: #444;
}

.pricing-card button {
    border: none;
    padding: 50px 20px;
    border-radius: 10px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
    background-color: #007bff;
}


.cardheading {
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    color: white;
    text-align: center;
}


.demo-button {
    margin: 0 auto 10px auto;
    /* center horizontally */
    padding: 10px 20px;
    text-align: center;
    border: 2px solid #656f6f;
    color: #1f0079;
    font-weight: 600;
    background: transparent;
    border-radius: 10px;
    transition: all 0.5s ease;
}


.demo-button:hover {
    /* background:rgb(143, 141, 141); */
    /* color: black; */
    border-color: #004d40;
    transform: translateY(-2px);
}



.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    color: #e0e0e0;
    padding: 10px 0;
    font-size: 0.9em;
    text-align: center;
}

.footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00796b;
    /* Medium Teal on hover */
}

.footer p {
    margin: 10px 0 0;
    color: #bdbdbd;
}

.whatsapp {
    font-size: 22px;
}

.whatsapp i {
    font-size: 25px;
    color: #25D366;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #1f0079 0%, #004d40 100%);
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    border: none;
}

/* Scroll To Top Button */

#scrollToTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #1f0079;
    color: white;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
    overflow: hidden;
  }
  /* Visible state */
  #scrollToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
  }
  /* Pulse animation */
  #scrollToTopBtn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(9, 28, 56, 0.4);
    animation: pulse 1.5s infinite;
    z-index: -1;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    70% {
      transform: scale(1.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }

  /* Hover */
  #scrollToTopBtn:hover {
    background-color: #004d40  ;
    transform: scale(1.1);
  }
  
/* #myBtn:hover {
    border-color: 5px solid #8ae612 !important;
    /* color: black; */
/* }  */



/* Responsive Design */
@media (max-width: 768px) {
    #myBtn {
        bottom: 15px;
        right: 15px;
        font-size: 16px;
        padding: 5px 9px;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    h2.custom-heading {
        font-size: 2em;
    }

    .hero-section {
        padding: 80px 0;
        min-height: 60vh;
    }

    .hero-section .tagline {
        font-size: 1.2em;
    }

    .section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack features on smaller screens */
    }

    .benefits-list {
        grid-template-columns: 1fr;
        /* Stack benefits on smaller screens */
    }

    .benefits-list li {
        margin-bottom: 10px;
    }

    .button {
        padding: 12px 15px;
    }

    .mobimg {
        width: 30%;
    }

    .pricing-container {
        padding: 0px;
    }

    .pricing-card {
        width: 550px;
        gap: 10px;
    }

    .pricing-card .price {
        text-align: center;
        font-size: 25px;
    }

    .pricing-card .desc {
        margin: 0px 15px;
        color: #555;
        font-weight: 600;
    }

    .pricing-card ul {
        padding-left: 0px;
        margin: 5px -10px;
        list-style-type: disc;
        color: #444;
    }


}

@media (max-width: 480px) {
    h1 {
        font-size: 1rem;
    }

    h2.custom-heading {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 1.3em;
    }

    /* h2::after {
        width: 60px;
    } */

    .hero-section {
        padding: 60px 0;
    }

    .hero-section .tagline {
        font-size: 1em;
    }

    .secondary-button {
        width: 70%;
        font-size: 13px;
    }

    .primary-button {
        width: 22%;
        font-size: 12px;
    }

    .section {
        padding: 40px 0;
    }

    .feature-item {
        padding: 20px;
    }

    .footer-nav a {
        display: block;
        margin: 10px 0;
    }

    .whatsapp {
        font-size: 18px;
    }

    .whatsapp i {
        font-size: 19px;
    }

}