/* Navbar styling */
.navbar-connect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    background-color: white;
    border-bottom: 1px solid #eee;
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

/* Add shadow when the page is scrolled */
.navbar-connect.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-connect {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Logo styling */
.navbar-logo img {
    height: 230px; /* Logo size for larger screens */
    display: block;
    margin: 0;
    padding: 0;
    max-width: 1500px;
}

/* Center Menu Styling */
.navbar-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center; /* Center the menu items */
    flex-grow: 1; /* Makes the menu grow to fill available space */
}

.navbar-menu li {
    margin: 0 15px; /* Space between menu items */
}

.navbar-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.navbar-menu li a:hover {
    color: #2c9ec6;
}

/* Login Button */
.navbar-login a {
    text-decoration: none;
    color: white;
    background-color: #62975f;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.navbar-login a:hover {
    background-color: #005b33;
    color: white;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu li {
        margin: 15px 0;
    }

    /* Logo size adjustment for mobile */
    .navbar-logo img {
        height: 130px; /* Logo size for mobile */
    }

    /* Place the login button above the menu */
    .navbar-login {
        display: flex;
        justify-content: center;
        /* margin-bottom: 20px; */
    }

    .navbar-menu.active .navbar-login {
        order: -1; /* Moves the login button above the menu items */
    }
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .navbar-connect {
        padding: 0 20px;
    }

    .navbar-login a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .navbar-logo img {
        height: 130px;
    }
}

/* navbar end
 */


/* banner */
/* Main banner container */
/* banner */
/* Main banner container */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #299dc6; /* Light green background */
    border-radius: 20px; /* For rounded corners */
    padding: 20px 40px; /* Adjust the padding for space */
    max-width: 85%; /* Set the banner to take full width of the page */
    height: 300px; /* Adjust the height to make it more compact */
    margin: 0 auto; /* Center the banner horizontally */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
    /* margin-top: 20px; */
}

/* Left-side content styling */
.banner-content {
    flex: 1;
    padding-right: 20px; /* Add some spacing between text and image */
}

.banner-content h1 {
    font-size: 2rem; /* Reduce font size */
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff; /* Text color */
}

.banner-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff; /* Text color */
}

.banner-btn {
    background-color: #005b33; /* Button color */
    color: #fff;
    padding: 8px 16px; /* Smaller padding */
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.banner-btn:hover {
    background-color: #333; /* Darken on hover */
    color: #fff;
}

/* Right-side image styling */
.banner-image {
    flex: 1;
    text-align: center; /* Align image to the right */
    max-width: 500px; /* Set a maximum width for the image */
}

.banner-image img {
    max-width: 100%; /* Ensure image scales correctly */
    border-radius: 20px; /* Optional: if you want a rounded image */
    height: 300px; /* Maintain image aspect ratio */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        height: auto; /* Let height adjust on smaller screens */
    }

    .banner-content {
        padding-right: 0;
    }

    .banner-image {
        margin-top: 20px;
    }
}


/* end banner */

 /* prizing */

 /* prizing */
/* Main section */
#prizing {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    padding: 30px;
    margin: 0;
}

/* Table container */
.pricing-table {
    width: 100%;
    max-width: 95%;
    margin: 50px auto;
    border-radius: 12px;
    overflow-x: auto;  /* Allow horizontal scrolling */
    -webkit-overflow-scrolling: touch;  /* Smooth scrolling on mobile */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Table styling */
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Table header and body styles */
th, td {
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #dfe3e6;
}

th {
    background-color: #e6f2e9;
    color: #265922;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

thead th {
    border-bottom: 2px solid #b3d4c4;
}

/* Table rows */
tbody tr:nth-child(even) {
    background-color: #f3faf5;
}

tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* Column-specific colors */
td:nth-child(2) { background-color: #d6edd9; }
td:nth-child(3) { background-color: #b7d9b8; }
td:nth-child(4) { background-color: #99c597; }
td:nth-child(5) { background-color: #7ab175; }

/* Buttons inside the table */
.table-button {
    background-color: #2d8f3b;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.table-button:hover {
    background-color: #45a849;
}



/* Scrollable tbody */
.pricing-table tbody {
    display: block;
    max-height: 400px;
    overflow-y: auto;
}

.pricing-table thead, .pricing-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/* Responsive table for small screens */
@media (max-width: 768px) {
    table {
        width: 100%;
        display: block;
    }

    th, td {
        font-size: 14px;
        padding: 10px;
    }

    .table-th{
        font-size: 20px;
    }
}

/* Remove scrollbar */
.pricing-table tbody::-webkit-scrollbar {
    display: none;
}

.slider-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
}

.slider-paragraph {
    font-size: 1rem;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    text-align: center; /* Center the paragraph */
}


@media (max-width: 768px) {
    .slider-heading {
        font-size: 2rem; /* Smaller heading on mobile */
    }

    .slider-paragraph {
        font-size: 1rem; /* Smaller paragraph text */
        padding: 0 15px; /* Add some horizontal padding */
    }
    .table-th{
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slider-heading {
        font-size: 2.5rem; /* Further reduce heading size */
    }

    .slider-paragraph {
        font-size: 1rem; /* Further reduce paragraph text size */
        color: #333;
    }

    .table-th{
        font-size: 20px;
    }

}

/* end prizing */
/* Scrollable tbody */
.pricing-table tbody {
    display: block;
    max-height: 400px;
    overflow-y: auto;
}

.pricing-table thead, .pricing-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/* Responsive table for small screens */
@media (max-width: 768px) {
    .pricing-table {
        overflow-x: scroll; /* Horizontal scroll on mobile */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
    }

    /* Ensure the table remains in its original structure */
    table {
        width: 100%;
        table-layout: fixed;
    }

    th, td {
        font-size: 14px;
        padding: 10px;
    }

    /* Ensure full-width scrollable table on mobile */
    .pricing-table table {
        min-width: 700px; /* Adjust this value based on how wide you want the table */
    }

    /* Remove vertical scrolling and keep only horizontal */
    tbody {
        overflow-y: hidden;
    }

    /* Hide horizontal scrollbar */
    .pricing-table::-webkit-scrollbar {
        height: 6px;
    }
    
    .pricing-table::-webkit-scrollbar-thumb {
        background-color: #cccccc;
        border-radius: 3px;
    }
}

 /* end prizing */


 /* popup */
/* Popup overlay and content */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow-y: auto; /* Enable scrolling if popup content is too tall */
}

.popup-content {
    background-color: white;
    width: 80%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
    font-family: 'Roboto', sans-serif;
}

/* Ensure the popup is not taller than the viewport */
.popup-content {
    max-height: 90vh;
    overflow-y: auto; /* Scroll within popup if content is too tall */
}

/* Left side styling */
.popup-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.popup-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.popup-left ul {
    list-style-type: disc;
    padding-left: 20px;
}

.popup-left li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

/* Right side form styling */
.popup-right {
    width: 40%;
}

.popup-right form {
    display: flex;
    flex-direction: column;
}

.popup-right input[type="text"],
.popup-right input[type="tel"],
.popup-right input[type="email"],
.popup-right select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.popup-right select {
    background-color: white;
    appearance: none;
    padding-right: 20px;
    background-position: right 10px center;
    background-repeat: no-repeat;
}

.popup-right button {
    padding: 12px;
    background-color: #62975f;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.popup-right button:hover {
    background-color: #005B33;
}

/* Close button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        width: 90%;
        top: 50%;
        padding: 20px;
    }

    .popup-left, .popup-right {
        width: 100%;
        text-align: center;
    }

    .popup-right input[type="text"],
    .popup-right input[type="tel"],
    .popup-right input[type="email"],
    .popup-right select {
        width: 100%;
    }

    .popup-right button {
        width: 100%;
    }

    .close-popup {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }

    .popup-left h2 {
        font-size: 20px;
    }

    .popup-left p, .popup-left li {
        font-size: 14px;
    }

    .popup-right input[type="text"],
    .popup-right input[type="tel"],
    .popup-right input[type="email"],
    .popup-right select {
        font-size: 12px;
    }

    .popup-right button {
        font-size: 14px;
    }
}
  
 /* end poppu */

 /* faq */
 .faq-container {
    width: 80%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    margin-bottom: 70px;
}

.faq-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.highlight {
    color: #27b042;
    font-size: 35px;
}

.faq-item {
    border: 1px solid #003316;
    border-radius: 10px;  /* 10px border-radius */
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background-color: white;
    color: black;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #9c27b0;
}

.faq-question::after {
    content: '\25BC';
    font-size: 16px;
    color: gray;
}

.faq-question.active::after {
    content: '\25B2';
}

 /* end testimonial */


 /* call to action  */
/* App Section */
.app-section {
    /* padding: 40px 0; */
    background-color: #e2eae5;
    margin-top: 130px;
    width: 100%;
    height: 400px;
}

/* Container */
.container-call {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

/* App Content - Heading, Paragraph, and Button on Left */
.app-content {
    flex: 1;
    max-width: 60%;
    text-align: left; /* Left align heading and paragraph */
}

.app-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
}

.app-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #6c757d;
}

/* App Buttons - Button on Left */
.app-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start; /* Left align button */
}

/* App Image - Image on Right */
.app-image {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: flex-end; /* Right align image */
}

.app-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

/* Buttons */
.google-play-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #62975f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.google-play-button:hover {
    background-color: #005b33;
    color: white;
}

/* Responsive Design for Tablets (Up to 1024px) */
@media screen and (max-width: 1024px) {
    .app-content h2 {
        font-size: 2.2rem;
    }

    .app-content p {
        font-size: 1.1rem;
    }

    .app-image img {
        max-width: 80%;
    }
}

/* Responsive Design for Mobile (Up to 768px) */
@media screen and (max-width: 768px) {
    .container-call {
        flex-direction: column;
        text-align: center;
    }

    .app-content {
        max-width: 100%;
        text-align: center; /* Center-align content on smaller screens */
        margin-bottom: 20px;
    }

    .app-buttons {
        justify-content: center; /* Center-align button */
    }

    .app-image {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .app-image img {
        max-width: 80%;
    }

    .app-section {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Responsive Design for Smaller Mobile Screens (Up to 480px) */
@media screen and (max-width: 480px) {
    .app-content h2 {
        font-size: 24px;
    }

    .app-content p {
        font-size: 0.9rem;
    }

    .google-play-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .app-image img {
        max-width: 100%;
    }

    .app-section {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

 /* End call to action */


 

 /* end fooyter */
/* why best */

.features-section {
    padding: 50px 20px;
    background-color: #f5f7fb;
    height: auto; /* Change to auto for flexibility */
}

.container1,
.container2 {
    max-width: 1215px;
    margin: 0 auto;
    text-align: center;
}

.main-heading {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    margin-left: 10%; /* Adjusted for better alignment */
}

.subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    margin-left: 10%; /* Adjusted for better alignment */
}

.highlightOne {
    color: #005b33;
}

.highlight {
    color: #72975F;
    font-size: 50px;
    font-weight: 600;
}

.highlight1 {
    color: #72975F;
    font-size: 20px;
}

/* Updated grid layout for the features-grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-gap: 20px;
    margin-top: 20px;
}

.features-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-gap: 20px;
    margin-top: 20px;
}

.feature-box {
    background: linear-gradient(180deg, #FFFFFF 0%, #E5F1FF 100%);
    border: 2px solid #83BFFF;
    padding: 32px 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    min-height: 180px;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #1e3a8a;
    transform: translateY(-5px);
}

.feature-title {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #64748b;
}

/* Responsive design for different screen sizes */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 28px; /* Slightly smaller font size */
        margin-left: 5%; /* Adjust margin for better alignment */
    }

    .subtitle {
        font-size: 16px; /* Slightly smaller font size */
        margin-left: 5%; /* Adjust margin for better alignment */
    }

    .features-grid,
    .features-grid1 {
        grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 24px; /* Further reduction for smaller screens */
        margin-left: 0; /* Centering text */
    }

    .subtitle {
        font-size: 14px; /* Further reduction for smaller screens */
        margin-left: 0; /* Centering text */
    }

    .features-grid,
    .features-grid1 {
        grid-template-columns: 1fr; /* Stack boxes vertically */
    }

    .feature-box {
        padding: 20px 10px; /* Adjust padding for smaller screens */
    }
}

 /* end why best  */

 
/* Sticky Button */
.sticky-demo-btn {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-color: #62975f;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    z-index: 999;
    transition: background-color 0.3s;
}

.sticky-demo-btn:hover {
    background-color: #005b33;
}

/* Popup Overlay */
/* Popup Overlay */

/* Popup Overlay */
.demo-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Popup Container */
.demo-popup-container {
    background-color: #fff;
    width: 50%;
    display: flex;
    padding: 27px;
    border-radius: 8px;
    position: relative;
    max-height: auto; /* Max height for popup */
    height: 480px;
    overflow-y: auto; /* Allow scrolling if content overflows */
}

.demo-popup-image {
    max-width: 40%;
}

.demo-popup-image img {
    max-width: 100%;
    height: 429px;
    border-radius: 8px;
}

/* Form Section */
.demo-popup-form {
    margin-left: 20px;
    width: 60%;
}

.demo-popup-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.demo-input-group {
    margin-bottom: 15px;
    text-align: left;
}

.demo-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.demo-input-group input,
.demo-input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.submit-demo-btn {
    background-color: #72975f;
    color: white;
    width: 100%;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-demo-btn:hover {
    background-color: #444;
}

#captcha-equation1 {
    font-weight: 400;
    margin-bottom: 5px;
}

.captcha-box1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100px;
    height: 48px;
    font-size: 1.2rem;
    font-weight: 100;
    color: #000;
    margin-right: 10px;
}

.captcha-input{
    border: 1px solid #ccc;;
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    
}

.captcha-container {
    display: flex;
    margin-bottom: 15px;
  }

/* Close Button */
.close-popup-btn {
    position: absolute;
    top: 0px;
    right: 7px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .demo-popup-container {
        width: 90%;
        flex-direction: column; /* Stack image and form vertically */
        padding: 15px;
        text-align: center;
    }

    .demo-popup-image {
        max-width: 100%;
        margin-bottom: 20px;

    }

    .demo-popup-image img {
        height: auto;
        max-height: 360px;
        width: 250px;
    }

    .demo-popup-form {
        width: 100%;
        margin: 0;
    }

    .demo-popup-form h2 {
        font-size: 1.5rem;
    }

    .demo-input-group input,
    .demo-input-group textarea {
        font-size: 14px;
    }

    .submit-demo-btn {
        font-size: 14px;
    }
}

 /* end sticky button */